diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 9c0c223fb6..c7190665b9 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -15964,6 +15964,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", @@ -16016,6 +16240,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.", @@ -19581,7 +19814,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" ], @@ -46268,6 +46501,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.", @@ -46452,6 +46694,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -47296,6 +47544,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -95187,7 +95441,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" @@ -98518,6 +98772,66 @@ ], "nullable": true }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "nullable-integration": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -98944,6 +99258,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -104943,6 +105260,88 @@ "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -106129,6 +106528,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -119451,6 +119860,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -125332,6 +125744,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "$ref": "#/components/schemas/nullable-integration" }, @@ -131350,6 +131765,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -132741,6 +133159,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -156804,6 +157225,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -158386,6 +158810,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -159977,6 +160404,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -161602,6 +162032,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -163043,6 +163476,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -164305,6 +164741,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -165556,6 +165995,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -166804,6 +167246,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -168078,6 +168523,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -169320,6 +169768,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -172368,6 +172819,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -173774,6 +174228,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -174884,6 +175341,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -176854,6 +177314,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -274659,6 +275122,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, @@ -298470,6 +298963,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/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 4cf2929dde..dbed9913fa 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -11602,6 +11602,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 @@ -11655,6 +11809,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 @@ -14238,6 +14398,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. @@ -33894,6 +34058,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 @@ -34028,6 +34200,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -34624,6 +34801,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -68931,7 +69114,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 @@ -71723,6 +71906,54 @@ components: - created_at - updated_at nullable: true + issue-type: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description nullable-integration: title: GitHub app description: GitHub apps are a new way to extend GitHub. They can be installed @@ -72049,6 +72280,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -76822,6 +77055,74 @@ 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -77775,6 +78076,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type custom-property-value: @@ -88142,6 +88451,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -92481,6 +92792,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: "$ref": "#/components/schemas/nullable-integration" reactions: @@ -97121,6 +97434,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -98170,6 +98485,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -116076,6 +116393,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -117252,6 +117571,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -118435,6 +118756,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -119643,6 +119966,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -120711,6 +121036,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -121667,6 +121994,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -122603,6 +122932,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -123544,6 +123875,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -124508,6 +124841,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -125444,6 +125779,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -127743,6 +128080,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128805,6 +129144,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -129639,6 +129980,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131128,6 +131471,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -206281,6 +206626,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 @@ -226876,6 +227243,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/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 9c0c223fb6..c7190665b9 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -15964,6 +15964,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", @@ -16016,6 +16240,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.", @@ -19581,7 +19814,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" ], @@ -46268,6 +46501,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.", @@ -46452,6 +46694,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -47296,6 +47544,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -95187,7 +95441,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" @@ -98518,6 +98772,66 @@ ], "nullable": true }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "nullable-integration": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -98944,6 +99258,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -104943,6 +105260,88 @@ "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -106129,6 +106528,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -119451,6 +119860,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -125332,6 +125744,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "$ref": "#/components/schemas/nullable-integration" }, @@ -131350,6 +131765,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -132741,6 +133159,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -156804,6 +157225,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -158386,6 +158810,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -159977,6 +160404,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -161602,6 +162032,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -163043,6 +163476,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -164305,6 +164741,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -165556,6 +165995,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -166804,6 +167246,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -168078,6 +168523,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -169320,6 +169768,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -172368,6 +172819,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -173774,6 +174228,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -174884,6 +175341,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -176854,6 +177314,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -274659,6 +275122,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, @@ -298470,6 +298963,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/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 4cf2929dde..dbed9913fa 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -11602,6 +11602,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 @@ -11655,6 +11809,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 @@ -14238,6 +14398,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. @@ -33894,6 +34058,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 @@ -34028,6 +34200,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -34624,6 +34801,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -68931,7 +69114,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 @@ -71723,6 +71906,54 @@ components: - created_at - updated_at nullable: true + issue-type: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description nullable-integration: title: GitHub app description: GitHub apps are a new way to extend GitHub. They can be installed @@ -72049,6 +72280,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -76822,6 +77055,74 @@ 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -77775,6 +78076,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type custom-property-value: @@ -88142,6 +88451,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -92481,6 +92792,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: "$ref": "#/components/schemas/nullable-integration" reactions: @@ -97121,6 +97434,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -98170,6 +98485,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -116076,6 +116393,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -117252,6 +117571,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -118435,6 +118756,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -119643,6 +119966,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -120711,6 +121036,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -121667,6 +121994,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -122603,6 +122932,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -123544,6 +123875,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -124508,6 +124841,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -125444,6 +125779,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -127743,6 +128080,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128805,6 +129144,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -129639,6 +129980,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131128,6 +131471,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -206281,6 +206626,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 @@ -226876,6 +227243,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index f1f0421034..f43e39eb43 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -4746,7 +4746,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" @@ -5686,7 +5686,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" @@ -6484,7 +6484,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" @@ -6913,7 +6913,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" @@ -8885,7 +8885,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" @@ -9880,7 +9880,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" @@ -10792,7 +10792,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" @@ -11415,7 +11415,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" @@ -24271,6 +24271,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -39352,6 +39412,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -45068,6 +45188,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -82804,6 +82984,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -88860,7 +89100,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" @@ -89815,7 +90055,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" @@ -91640,25 +91880,932 @@ } }, "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", + "nullable": true + }, + "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", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "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", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": [ { @@ -91671,243 +92818,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", - "nullable": true - }, - "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", - "example": "https://github.com/orgs/rails/teams/core" - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "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", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", - "type": "string" - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ], - "nullable": true - } + "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": { @@ -91941,7 +92892,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -92009,6 +92960,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.", @@ -92992,6 +93952,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -116260,7 +117280,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" ], @@ -116888,6 +117908,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -270633,6 +271663,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -285988,7 +287078,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" @@ -289396,6 +290486,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.", @@ -290406,6 +291505,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -291966,6 +293125,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -292913,6 +294078,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -298899,6 +300124,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -302572,6 +303857,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -306121,6 +307466,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -307660,6 +309065,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -308605,6 +310016,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -311115,6 +312586,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -313428,6 +314959,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -329101,6 +330692,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -331503,6 +333154,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -333881,6 +335592,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -336358,6 +338129,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -347024,6 +348855,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -446251,6 +448142,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -484402,7 +486353,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" @@ -487659,6 +489610,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -516358,6 +518369,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -519292,6 +521363,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -522228,6 +524359,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -525939,7 +528130,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" @@ -531481,6 +533672,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -534417,6 +536668,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -676480,7 +678791,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" @@ -679027,7 +681338,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" @@ -681481,7 +683792,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" @@ -683935,7 +686246,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" @@ -686521,7 +688832,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" @@ -689114,7 +691425,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" @@ -693330,7 +695641,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" @@ -697139,6 +699450,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -700833,6 +703204,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -704551,6 +706982,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -707806,6 +710297,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -710636,6 +713187,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -713655,6 +716266,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -716495,6 +719166,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -719504,6 +722235,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -722368,6 +725159,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -725258,6 +728109,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -728078,6 +730989,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -732884,6 +735855,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -735702,6 +738733,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -738650,6 +741741,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -741255,6 +744406,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -743164,6 +746375,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -746086,6 +749357,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -748911,6 +752242,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -751799,6 +755190,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -754594,6 +758045,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -1101827,6 +1105338,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1104615,6 +1108186,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1108231,6 +1111862,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1111019,6 +1114710,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1114635,6 +1118386,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1117423,6 +1121234,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1121039,6 +1124910,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1123827,6 +1127758,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index d8a92b554a..eb3bd07046 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -847,7 +847,7 @@ paths: - subscriptions_url - type - url - type: &250 + type: &253 type: string description: The type of credit the user is receiving. enum: @@ -1013,7 +1013,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &576 + - &579 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -2226,7 +2226,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 @@ -2841,7 +2841,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &229 + properties: &232 id: description: Unique identifier of the repository example: 42 @@ -3270,7 +3270,7 @@ paths: type: boolean description: Whether anonymous git access is enabled for this repository - required: &230 + required: &233 - archive_url - assignees_url - blobs_url @@ -8578,7 +8578,7 @@ paths: - unknown - direct - transitive - security_advisory: &425 + security_advisory: &428 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8840,7 +8840,7 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &426 + auto_dismissed_at: &429 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9213,7 +9213,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &241 + - &244 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9224,7 +9224,7 @@ paths: enum: - open - resolved - - &242 + - &245 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9234,7 +9234,7 @@ paths: required: false schema: type: string - - &243 + - &246 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9243,7 +9243,7 @@ paths: required: false schema: type: string - - &244 + - &247 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. @@ -9259,7 +9259,7 @@ paths: - *17 - *39 - *40 - - &245 + - &248 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9268,7 +9268,7 @@ paths: required: false schema: type: string - - &246 + - &249 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9277,7 +9277,7 @@ paths: schema: type: boolean default: false - - &247 + - &250 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9293,7 +9293,7 @@ paths: application/json: schema: type: array - items: &248 + items: &251 type: object properties: number: *54 @@ -9312,14 +9312,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &568 + state: &571 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: &569 + resolution: &572 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -9421,7 +9421,7 @@ paths: is base64 encoded nullable: true examples: - default: &249 + default: &252 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -9757,7 +9757,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &474 + properties: &477 id: type: integer format: int64 @@ -9868,7 +9868,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &410 + properties: &413 url: type: string format: uri @@ -9938,7 +9938,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &411 + required: &414 - closed_issues - creator - description @@ -10017,6 +10017,55 @@ paths: timeline_url: type: string format: uri + type: &189 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *60 performed_via_github_app: title: GitHub app @@ -10093,7 +10142,7 @@ paths: - total - completed - percent_completed - required: &475 + required: &478 - assignee - closed_at - comments @@ -10115,7 +10164,7 @@ paths: - author_association - created_at - updated_at - comment: &472 + comment: &475 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -10682,7 +10731,7 @@ paths: url: type: string format: uri - user: &599 + user: &602 title: Public User description: Public User type: object @@ -12552,7 +12601,7 @@ paths: - closed - all default: open - - &189 + - &192 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -12603,7 +12652,7 @@ paths: type: array items: *77 examples: - default: &190 + default: &193 value: - id: 1 node_id: MDU6SXNzdWUx @@ -13987,14 +14036,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &275 + - &278 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &276 + - &279 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14065,7 +14114,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &287 + '301': &290 description: Moved permanently content: application/json: @@ -14087,7 +14136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &504 + - &507 name: all description: If `true`, show notifications marked as read. in: query @@ -14095,7 +14144,7 @@ paths: schema: type: boolean default: false - - &505 + - &508 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14105,7 +14154,7 @@ paths: type: boolean default: false - *67 - - &506 + - &509 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: @@ -14417,7 +14466,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &231 + security_and_analysis: &234 nullable: true type: object properties: @@ -14561,7 +14610,7 @@ paths: - url - subscription_url examples: - default: &507 + default: &510 value: - id: '1' repository: @@ -15103,7 +15152,7 @@ paths: application/json: schema: type: array - items: &196 + items: &199 title: Organization Simple description: A GitHub organization. type: object @@ -15162,7 +15211,7 @@ paths: - avatar_url - description examples: - default: &617 + default: &620 value: - login: github id: 1 @@ -16071,7 +16120,7 @@ paths: type: integer repository_cache_usages: type: array - items: &292 + items: &295 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -16939,7 +16988,7 @@ paths: - all - local_only - selected - selected_actions_url: &298 + selected_actions_url: &301 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` @@ -17029,7 +17078,7 @@ paths: type: array items: *60 examples: - default: &611 + default: &614 value: total_count: 1 repositories: @@ -17357,7 +17406,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &305 type: object properties: default_workflow_permissions: &112 @@ -17408,7 +17457,7 @@ paths: required: false content: application/json: - schema: &303 + schema: &306 type: object properties: default_workflow_permissions: *112 @@ -17897,7 +17946,7 @@ paths: type: array items: *119 examples: - default: &602 + default: &605 value: total_count: 1 repositories: @@ -18539,7 +18588,7 @@ paths: application/json: schema: type: array - items: &304 + items: &307 title: Runner Application description: Runner Application type: object @@ -18564,7 +18613,7 @@ paths: - download_url - filename examples: - default: &305 + default: &308 value: - os: osx architecture: x64 @@ -18650,7 +18699,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &306 + '201': &309 description: Response content: application/json: @@ -18761,7 +18810,7 @@ paths: - token - expires_at examples: - default: &307 + default: &310 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -18800,7 +18849,7 @@ paths: application/json: schema: *123 examples: - default: &308 + default: &311 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -18834,7 +18883,7 @@ paths: application/json: schema: *121 examples: - default: &309 + default: &312 value: id: 23 name: MBP @@ -19059,7 +19108,7 @@ paths: - *94 - *120 responses: - '200': &310 + '200': &313 description: Response content: application/json: @@ -19116,7 +19165,7 @@ paths: parameters: - *94 - *120 - - &311 + - &314 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19246,7 +19295,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &326 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19275,7 +19324,7 @@ paths: - key_id - key examples: - default: &324 + default: &327 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -19688,7 +19737,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *94 - - &297 + - &300 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)." @@ -20223,7 +20272,7 @@ paths: bundle_url: type: string examples: - default: &337 + default: &340 value: attestations: - bundle: @@ -20342,7 +20391,7 @@ paths: type: array items: *4 examples: - default: &191 + default: &194 value: - login: octocat id: 1 @@ -20460,7 +20509,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *94 - - &363 + - &366 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`, @@ -20470,7 +20519,7 @@ paths: schema: &136 type: string description: The name of the tool used to generate the code scanning analysis. - - &364 + - &367 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 @@ -20493,7 +20542,7 @@ paths: be returned. in: query required: false - schema: &366 + schema: &369 type: string description: State of a code scanning alert. enum: @@ -20516,7 +20565,7 @@ paths: be returned. in: query required: false - schema: &367 + schema: &370 type: string description: Severity of a code scanning alert. enum: @@ -20542,7 +20591,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: &368 + instances_url: &371 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -20565,7 +20614,7 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: &369 + dismissed_reason: &372 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -20574,13 +20623,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &370 + dismissed_comment: &373 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &371 + rule: &374 type: object properties: id: @@ -20633,7 +20682,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &372 + tool: &375 type: object properties: name: *136 @@ -20643,15 +20692,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *137 - most_recent_instance: &373 + most_recent_instance: &376 type: object properties: - ref: &365 + ref: &368 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &383 + analysis_key: &386 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -20662,7 +20711,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &384 + category: &387 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -21907,7 +21956,7 @@ paths: type: integer codespaces: type: array - items: &192 + items: &195 type: object title: Codespace description: A codespace. @@ -21937,7 +21986,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &396 + properties: &399 name: type: string description: The name of the machine. @@ -21979,7 +22028,7 @@ paths: - ready - in_progress nullable: true - required: &397 + required: &400 - name - display_name - operating_system @@ -22184,7 +22233,7 @@ paths: - pulls_url - recent_folders examples: - default: &193 + default: &196 value: total_count: 3 codespaces: @@ -22847,7 +22896,7 @@ paths: - updated_at - visibility examples: - default: &398 + default: &401 value: total_count: 2 secrets: @@ -22885,7 +22934,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &402 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -22914,7 +22963,7 @@ paths: - key_id - key examples: - default: &400 + default: &403 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -22946,7 +22995,7 @@ paths: application/json: schema: *146 examples: - default: &402 + default: &405 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -23413,7 +23462,7 @@ paths: currently being billed. seats: type: array - items: &195 + items: &198 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -23490,7 +23539,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &204 + properties: &207 id: description: Unique identifier of the team type: integer @@ -23546,7 +23595,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &205 + required: &208 - id - node_id - url @@ -24115,7 +24164,7 @@ paths: application/json: schema: type: array - items: &255 + items: &258 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -24422,7 +24471,7 @@ paths: - date additionalProperties: true examples: - default: &256 + default: &259 value: - date: '2024-06-24' total_active_users: 24 @@ -24524,7 +24573,7 @@ paths: '500': *145 '403': *29 '404': *6 - '422': &257 + '422': &260 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -24592,7 +24641,7 @@ paths: application/json: schema: type: array - items: &258 + items: &261 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -24679,7 +24728,7 @@ paths: - breakdown additionalProperties: false examples: - default: &259 + default: &262 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -24912,7 +24961,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &432 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -24929,7 +24978,7 @@ paths: - key_id - key examples: - default: &430 + default: &433 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -25256,7 +25305,7 @@ paths: application/json: schema: type: array - items: &207 + items: &210 title: Package description: A software package type: object @@ -25326,7 +25375,7 @@ paths: - created_at - updated_at examples: - default: &208 + default: &211 value: - id: 197 name: hello_docker @@ -26722,7 +26771,7 @@ paths: application/json: schema: *22 examples: - default: &468 + default: &471 value: id: 1 account: @@ -26947,7 +26996,7 @@ paths: required: true content: application/json: - schema: &469 + schema: &472 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -27232,7 +27281,7 @@ paths: type: array items: *188 examples: - default: &206 + default: &209 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -27255,6 +27304,237 @@ 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: + - *94 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *189 + 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: + - *94 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *189 + examples: + default: &190 + 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: + - *94 + - &191 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *189 + examples: + default: *190 + '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: + - *94 + - *191 + 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 @@ -27307,7 +27587,13 @@ paths: - closed - all default: open - - *189 + - *192 + - 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 @@ -27332,7 +27618,7 @@ paths: type: array items: *77 examples: - default: *190 + default: *193 headers: Link: *58 '404': *6 @@ -27390,7 +27676,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '422': *15 @@ -27486,9 +27772,9 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: - default: *193 + default: *196 '304': *37 '500': *145 '401': *25 @@ -27515,7 +27801,7 @@ paths: parameters: - *94 - *132 - - &194 + - &197 name: codespace_name in: path required: true @@ -27550,15 +27836,15 @@ paths: parameters: - *94 - *132 - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: &395 + default: &398 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -27738,7 +28024,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *195 + schema: *198 examples: default: value: @@ -27813,7 +28099,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &200 title: Org Membership description: Org Membership type: object @@ -27842,7 +28128,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *196 + organization: *199 user: title: Simple User description: A GitHub user. @@ -27865,7 +28151,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &198 + response-if-user-has-an-active-admin-membership-with-organization: &201 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -27962,9 +28248,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: - response-if-user-already-had-membership-with-organization: *198 + response-if-user-already-had-membership-with-organization: *201 '422': *15 '403': *29 x-github: @@ -28032,7 +28318,7 @@ paths: application/json: schema: type: array - items: &199 + items: &202 title: Migration description: A migration. type: object @@ -28361,7 +28647,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -28540,7 +28826,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *94 - - &200 + - &203 name: migration_id description: The unique identifier of the migration. in: path @@ -28567,7 +28853,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -28737,7 +29023,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *94 - - *200 + - *203 responses: '302': description: Response @@ -28759,7 +29045,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *94 - - *200 + - *203 responses: '204': description: Response @@ -28783,8 +29069,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *94 - - *200 - - &616 + - *203 + - &619 name: repo_name description: repo_name parameter in: path @@ -28812,7 +29098,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *94 - - *200 + - *203 - *17 - *19 responses: @@ -28824,7 +29110,7 @@ paths: type: array items: *119 examples: - default: &213 + default: &216 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -28977,7 +29263,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &203 + items: &206 title: Organization Role description: Organization roles type: object @@ -29125,7 +29411,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *94 - - &201 + - &204 name: team_slug description: The slug of the team name. in: path @@ -29157,8 +29443,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *94 - - *201 - - &202 + - *204 + - &205 name: role_id description: The unique identifier of the role. in: path @@ -29194,8 +29480,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *94 - - *201 - - *202 + - *204 + - *205 responses: '204': description: Response @@ -29248,7 +29534,7 @@ paths: parameters: - *94 - *132 - - *202 + - *205 responses: '204': description: Response @@ -29280,7 +29566,7 @@ paths: parameters: - *94 - *132 - - *202 + - *205 responses: '204': description: Response @@ -29309,13 +29595,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *94 - - *202 + - *205 responses: '200': description: Response content: application/json: - schema: *203 + schema: *206 examples: default: value: @@ -29366,7 +29652,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *94 - - *202 + - *205 - *17 - *19 responses: @@ -29444,8 +29730,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 nullable: true required: - id @@ -29460,7 +29746,7 @@ paths: - slug - parent examples: - default: *206 + default: *209 headers: Link: *58 '404': @@ -29490,7 +29776,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *94 - - *202 + - *205 - *17 - *19 responses: @@ -29518,13 +29804,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &251 + items: &254 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 name: nullable: true type: string @@ -29619,7 +29905,7 @@ paths: - type - url examples: - default: *191 + default: *194 headers: Link: *58 '404': @@ -29667,7 +29953,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -29809,7 +30095,7 @@ paths: - nuget - container - *94 - - &618 + - &621 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -29845,12 +30131,12 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *208 + default: *211 '403': *29 '401': *25 - '400': &620 + '400': &623 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -29872,7 +30158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &209 + - &212 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 @@ -29890,7 +30176,7 @@ paths: - docker - nuget - container - - &210 + - &213 name: package_name description: The name of the package. in: path @@ -29903,7 +30189,7 @@ paths: description: Response content: application/json: - schema: *207 + schema: *210 examples: default: value: @@ -29955,8 +30241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 responses: '204': @@ -29989,8 +30275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 - name: token description: package token @@ -30023,8 +30309,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: - - *209 - - *210 + - *212 + - *213 - *94 - *19 - *17 @@ -30045,7 +30331,7 @@ paths: application/json: schema: type: array - items: &211 + items: &214 title: Package Version description: A version of a software package type: object @@ -30170,10 +30456,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 - - &212 + - &215 name: package_version_id description: Unique identifier of the package version. in: path @@ -30185,7 +30471,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -30221,10 +30507,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *209 - - *210 - - *94 - *212 + - *213 + - *94 + - *215 responses: '204': description: Response @@ -30256,10 +30542,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *209 - - *210 - - *94 - *212 + - *213 + - *94 + - *215 responses: '204': description: Response @@ -30289,7 +30575,7 @@ paths: - *94 - *17 - *19 - - &214 + - &217 name: sort description: The property by which to sort the results. in: query @@ -30300,7 +30586,7 @@ paths: - created_at default: created_at - *48 - - &215 + - &218 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -30311,7 +30597,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &216 + - &219 name: repository description: The name of the repository to use to filter the results. in: query @@ -30319,7 +30605,7 @@ paths: schema: type: string example: Hello-World - - &217 + - &220 name: permission description: The permission to use to filter the results. in: query @@ -30327,7 +30613,7 @@ paths: schema: type: string example: issues_read - - &218 + - &221 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) @@ -30337,7 +30623,7 @@ paths: schema: type: string format: date-time - - &219 + - &222 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) @@ -30347,7 +30633,7 @@ paths: schema: type: string format: date-time - - &220 + - &223 name: token_id description: The ID of the token in: query @@ -30660,7 +30946,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -30686,14 +30972,14 @@ paths: - *94 - *17 - *19 - - *214 - - *48 - - *215 - - *216 - *217 + - *48 - *218 - *219 - *220 + - *221 + - *222 + - *223 responses: '500': *145 '422': *15 @@ -30975,7 +31261,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -31019,7 +31305,7 @@ paths: type: integer configurations: type: array - items: &221 + items: &224 title: Organization private registry description: Private registry configuration for an organization type: object @@ -31225,7 +31511,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &222 + org-private-registry-with-selected-visibility: &225 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -31325,9 +31611,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *221 + schema: *224 examples: - default: *222 + default: *225 '404': *6 x-github: githubCloudOnly: false @@ -31477,7 +31763,7 @@ paths: application/json: schema: type: array - items: &223 + items: &226 title: Project description: Projects are a way to organize columns and cards of work. @@ -31650,7 +31936,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -31688,7 +31974,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &284 + '410': &287 description: Gone content: application/json: @@ -31723,7 +32009,7 @@ paths: application/json: schema: type: array - items: &224 + items: &227 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -31789,7 +32075,7 @@ paths: - property_name - value_type examples: - default: &225 + default: &228 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -31823,6 +32109,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. @@ -31844,7 +32134,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *224 + items: *227 minItems: 1 maxItems: 100 required: @@ -31874,9 +32164,9 @@ paths: application/json: schema: type: array - items: *224 + items: *227 examples: - default: *225 + default: *228 '403': *29 '404': *6 x-github: @@ -31898,7 +32188,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *94 - - &226 + - &229 name: custom_property_name description: The custom property name in: path @@ -31910,9 +32200,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: &227 + default: &230 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -31947,7 +32237,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *94 - - *226 + - *229 requestBody: required: true content: @@ -31991,6 +32281,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type examples: @@ -32008,9 +32306,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *227 + default: *230 '403': *29 '404': *6 x-github: @@ -32034,7 +32332,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *94 - - *226 + - *229 responses: '204': *142 '403': *29 @@ -32095,7 +32393,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &228 + items: &231 title: Custom Property Value description: Custom property name and associated value type: object @@ -32182,7 +32480,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *228 + items: *231 required: - repository_names - properties @@ -32235,7 +32533,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -32374,7 +32672,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -32576,7 +32874,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &289 title: Full Repository description: Full Repository type: object @@ -32853,8 +33151,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *229 - required: *230 + properties: *232 + required: *233 nullable: true temp_clone_token: type: string @@ -32969,7 +33267,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &417 + properties: &420 url: type: string format: uri @@ -32985,12 +33283,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &418 + required: &421 - url - key - name - html_url - security_and_analysis: *231 + security_and_analysis: *234 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -33074,7 +33372,7 @@ paths: - network_count - subscribers_count examples: - default: &288 + default: &291 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33595,7 +33893,7 @@ paths: - *94 - *17 - *19 - - &553 + - &556 name: targets description: | A comma-separated list of rule targets to filter by. @@ -33613,7 +33911,7 @@ paths: application/json: schema: type: array - items: &238 + items: &241 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -33648,7 +33946,7 @@ paths: source: type: string description: The name of the source - enforcement: &234 + enforcement: &237 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -33661,7 +33959,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &235 + items: &238 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -33726,7 +34024,7 @@ paths: conditions: nullable: true anyOf: - - &232 + - &235 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -33750,7 +34048,7 @@ paths: match. items: type: string - - &236 + - &239 title: Organization ruleset conditions type: object description: |- @@ -33764,7 +34062,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -33798,7 +34096,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -33820,7 +34118,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -33833,7 +34131,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &233 + items: &236 title: Repository ruleset property targeting definition type: object @@ -33866,17 +34164,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *233 + items: *236 required: - repository_property rules: type: array - items: &237 + items: &240 title: Repository Rule type: object description: A repository rule. oneOf: - - &535 + - &538 title: creation description: Only allow users with bypass permission to create matching refs. @@ -33888,7 +34186,7 @@ paths: type: string enum: - creation - - &536 + - &539 title: update description: Only allow users with bypass permission to update matching refs. @@ -33909,7 +34207,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &538 + - &541 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -33921,7 +34219,7 @@ paths: type: string enum: - deletion - - &539 + - &542 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -33933,7 +34231,7 @@ paths: type: string enum: - required_linear_history - - &540 + - &543 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34011,7 +34309,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &541 + - &544 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -34035,7 +34333,7 @@ paths: type: string required: - required_deployment_environments - - &542 + - &545 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -34047,7 +34345,7 @@ paths: type: string enum: - required_signatures - - &543 + - &546 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -34100,7 +34398,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &544 + - &547 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34148,7 +34446,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &545 + - &548 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34160,7 +34458,7 @@ paths: type: string enum: - non_fast_forward - - &546 + - &549 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34196,7 +34494,7 @@ paths: required: - operator - pattern - - &547 + - &550 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -34232,7 +34530,7 @@ paths: required: - operator - pattern - - &548 + - &551 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -34268,7 +34566,7 @@ paths: required: - operator - pattern - - &549 + - &552 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -34304,7 +34602,7 @@ paths: required: - operator - pattern - - &550 + - &553 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -34430,7 +34728,7 @@ paths: maximum: 100 required: - max_file_size - - &551 + - &554 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -34480,7 +34778,7 @@ paths: - repository_id required: - workflows - - &552 + - &555 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -34614,16 +34912,16 @@ paths: - push - repository default: branch - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *236 + items: *238 + conditions: *239 rules: type: array description: An array of rules within the ruleset. - items: *237 + items: *240 required: - name - enforcement @@ -34661,9 +34959,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: &239 + default: &242 value: id: 21 name: super cool ruleset @@ -34718,7 +35016,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *94 - - &554 + - &557 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 @@ -34733,7 +35031,7 @@ paths: in: query schema: type: string - - &555 + - &558 name: time_period description: |- The time period to filter by. @@ -34749,14 +35047,14 @@ paths: - week - month default: day - - &556 + - &559 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 - - &557 + - &560 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -34776,7 +35074,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &561 title: Rule Suites description: Response type: array @@ -34831,7 +35129,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &559 + default: &562 value: - id: 21 actor_id: 12 @@ -34875,7 +35173,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *94 - - &560 + - &563 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -34891,7 +35189,7 @@ paths: description: Response content: application/json: - schema: &561 + schema: &564 title: Rule Suite description: Response type: object @@ -34990,7 +35288,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &562 + default: &565 value: id: 21 actor_id: 12 @@ -35063,9 +35361,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *239 + default: *242 '404': *6 '500': *145 put: @@ -35109,16 +35407,16 @@ paths: - tag - push - repository - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *236 + items: *238 + conditions: *239 rules: description: An array of rules within the ruleset. type: array - items: *237 + items: *240 examples: default: value: @@ -35153,9 +35451,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *239 + default: *242 '404': *6 '500': *145 delete: @@ -35212,7 +35510,7 @@ paths: application/json: schema: type: array - items: &240 + items: &243 title: Ruleset version type: object description: The historical version of a ruleset @@ -35236,7 +35534,7 @@ paths: type: string format: date-time examples: - default: &564 + default: &567 value: - version_id: 3 actor: @@ -35289,9 +35587,9 @@ paths: description: Response content: application/json: - schema: &565 + schema: &568 allOf: - - *240 + - *243 - type: object required: - state @@ -35361,14 +35659,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *94 - - *241 - - *242 - - *243 - *244 + - *245 + - *246 + - *247 - *48 - *19 - *17 - - &566 + - &569 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 @@ -35378,7 +35676,7 @@ paths: required: false schema: type: string - - &567 + - &570 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 @@ -35388,9 +35686,9 @@ paths: required: false schema: type: string - - *245 - - *246 - - *247 + - *248 + - *249 + - *250 responses: '200': description: Response @@ -35398,9 +35696,9 @@ paths: application/json: schema: type: array - items: *248 + items: *251 examples: - default: *249 + default: *252 headers: Link: *58 '404': *6 @@ -35470,7 +35768,7 @@ paths: application/json: schema: type: array - items: &574 + items: &577 description: A repository security advisory. type: object properties: @@ -35690,7 +35988,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 credits_detailed: type: array nullable: true @@ -35700,7 +35998,7 @@ paths: type: object properties: user: *4 - type: *250 + type: *253 state: type: string description: The state of the user's acceptance of the @@ -35761,7 +36059,7 @@ paths: - private_fork additionalProperties: false examples: - default: &575 + default: &578 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -36148,9 +36446,9 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *206 + default: *209 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36174,7 +36472,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -36200,7 +36498,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -36235,7 +36533,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &637 type: object properties: total_minutes_used: @@ -36305,7 +36603,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &635 + default: &638 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -36341,7 +36639,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &639 type: object properties: total_gigabytes_bandwidth_used: @@ -36359,7 +36657,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &637 + default: &640 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -36391,7 +36689,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &641 type: object properties: days_left_in_billing_cycle: @@ -36409,7 +36707,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &639 + default: &642 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -36451,7 +36749,7 @@ paths: type: integer network_configurations: type: array - items: &252 + items: &255 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -36571,9 +36869,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &253 + default: &256 value: id: 123456789ABCDEF name: My network configuration @@ -36602,7 +36900,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *94 - - &254 + - &257 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -36614,9 +36912,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 headers: Link: *58 x-github: @@ -36638,7 +36936,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *94 - - *254 + - *257 requestBody: required: true content: @@ -36677,9 +36975,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36699,7 +36997,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *94 - - *254 + - *257 responses: '204': description: Response @@ -36807,7 +37105,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *94 - - *201 + - *204 - 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`). @@ -36839,13 +37137,13 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *256 + default: *259 '500': *145 '403': *29 '404': *6 - '422': *257 + '422': *260 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36880,7 +37178,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *94 - - *201 + - *204 - 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`). @@ -36912,9 +37210,9 @@ paths: application/json: schema: type: array - items: *258 + items: *261 examples: - default: *259 + default: *262 '500': *145 '401': *25 '403': *29 @@ -36948,7 +37246,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 headers: Link: *58 '403': *29 @@ -37042,7 +37340,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &263 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -37105,8 +37403,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 nullable: true members_count: type: integer @@ -37352,7 +37650,7 @@ paths: - repos_count - organization examples: - default: &261 + default: &264 value: id: 1 node_id: MDQ6VGVhbTE= @@ -37423,15 +37721,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *94 - - *201 + - *204 responses: '200': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 x-github: githubCloudOnly: false @@ -37453,7 +37751,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *94 - - *201 + - *204 requestBody: required: false content: @@ -37515,16 +37813,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '201': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 '422': *15 '403': *29 @@ -37550,7 +37848,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -37577,7 +37875,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *94 - - *201 + - *204 - *48 - *17 - *19 @@ -37594,7 +37892,7 @@ paths: application/json: schema: type: array - items: &262 + items: &265 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -37693,7 +37991,7 @@ paths: - updated_at - url examples: - default: &589 + default: &592 value: - author: login: octocat @@ -37768,7 +38066,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *94 - - *201 + - *204 requestBody: required: true content: @@ -37802,9 +38100,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: &263 + default: &266 value: author: login: octocat @@ -37877,8 +38175,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *94 - - *201 - - &264 + - *204 + - &267 name: discussion_number description: The number that identifies the discussion. in: path @@ -37890,9 +38188,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37915,8 +38213,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: false content: @@ -37939,9 +38237,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: &590 + default: &593 value: author: login: octocat @@ -38012,8 +38310,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 responses: '204': description: Response @@ -38040,8 +38338,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *94 - - *201 - - *264 + - *204 + - *267 - *48 - *17 - *19 @@ -38052,7 +38350,7 @@ paths: application/json: schema: type: array - items: &265 + items: &268 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -38124,7 +38422,7 @@ paths: - updated_at - url examples: - default: &591 + default: &594 value: - author: login: octocat @@ -38193,8 +38491,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: true content: @@ -38216,9 +38514,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: &266 + default: &269 value: author: login: octocat @@ -38285,9 +38583,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *94 - - *201 - - *264 - - &267 + - *204 + - *267 + - &270 name: comment_number description: The number that identifies the comment. in: path @@ -38299,9 +38597,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38324,9 +38622,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 requestBody: required: true content: @@ -38348,9 +38646,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: &592 + default: &595 value: author: login: octocat @@ -38415,9 +38713,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 responses: '204': description: Response @@ -38444,9 +38742,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 - 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. @@ -38472,7 +38770,7 @@ paths: application/json: schema: type: array - items: &268 + items: &271 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -38515,7 +38813,7 @@ paths: - content - created_at examples: - default: &270 + default: &273 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38566,9 +38864,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 requestBody: required: true content: @@ -38601,9 +38899,9 @@ paths: team discussion comment content: application/json: - schema: *268 + schema: *271 examples: - default: &269 + default: &272 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38632,9 +38930,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38658,10 +38956,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *94 - - *201 - - *264 + - *204 - *267 - - &271 + - *270 + - &274 name: reaction_id description: The unique identifier of the reaction. in: path @@ -38694,8 +38992,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 - 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. @@ -38721,9 +39019,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -38750,8 +39048,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: true content: @@ -38783,16 +39081,16 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -38816,9 +39114,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *94 - - *201 - - *264 - - *271 + - *204 + - *267 + - *274 responses: '204': description: Response @@ -38843,7 +39141,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -38878,7 +39176,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *94 - - *201 + - *204 - name: role description: Filters members returned by their role in the team. in: query @@ -38901,7 +39199,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -38932,14 +39230,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 responses: '200': description: Response content: application/json: - schema: &272 + schema: &275 title: Team Membership description: Team Membership type: object @@ -38966,7 +39264,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &593 + response-if-user-is-a-team-maintainer: &596 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -39003,7 +39301,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 requestBody: required: false @@ -39029,9 +39327,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-users-membership-with-team-is-now-pending: &594 + response-if-users-membership-with-team-is-now-pending: &597 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -39067,7 +39365,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 responses: '204': @@ -39094,7 +39392,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -39104,7 +39402,7 @@ paths: application/json: schema: type: array - items: &273 + items: &276 title: Team Project description: A team's access to a project. type: object @@ -39172,7 +39470,7 @@ paths: - updated_at - permissions examples: - default: &595 + default: &598 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39236,8 +39534,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *94 - - *201 - - &274 + - *204 + - &277 name: project_id description: The unique identifier of the project. in: path @@ -39249,9 +39547,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: &596 + default: &599 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39314,8 +39612,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *94 - - *201 - - *274 + - *204 + - *277 requestBody: required: false content: @@ -39382,8 +39680,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *94 - - *201 - - *274 + - *204 + - *277 responses: '204': description: Response @@ -39411,7 +39709,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -39423,7 +39721,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -39453,15 +39751,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &597 + schema: &600 title: Team Repository description: A team's access to a repository. type: object @@ -40031,9 +40329,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 requestBody: required: false content: @@ -40079,9 +40377,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 responses: '204': description: Response @@ -40106,7 +40404,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -40118,7 +40416,7 @@ paths: type: array items: *188 examples: - response-if-child-teams-exist: &598 + response-if-child-teams-exist: &601 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -40245,7 +40543,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &277 + - &280 name: card_id description: The unique identifier of the card. in: path @@ -40257,7 +40555,7 @@ paths: description: Response content: application/json: - schema: &278 + schema: &281 title: Project Card description: Project cards represent a scope of work. type: object @@ -40324,7 +40622,7 @@ paths: - created_at - updated_at examples: - default: &279 + default: &282 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -40380,7 +40678,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *277 + - *280 requestBody: required: false content: @@ -40407,9 +40705,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *281 examples: - default: *279 + default: *282 '304': *37 '403': *29 '401': *25 @@ -40436,7 +40734,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *277 + - *280 responses: '204': description: Response @@ -40480,7 +40778,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *277 + - *280 requestBody: required: true content: @@ -40591,7 +40889,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &280 + - &283 name: column_id description: The unique identifier of the column. in: path @@ -40603,7 +40901,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &284 title: Project Column description: Project columns contain cards of work. type: object @@ -40649,7 +40947,7 @@ paths: - created_at - updated_at examples: - default: &282 + default: &285 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -40684,7 +40982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *280 + - *283 requestBody: required: true content: @@ -40708,9 +41006,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *282 + default: *285 '304': *37 '403': *29 '401': *25 @@ -40735,7 +41033,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *280 + - *283 responses: '204': description: Response @@ -40764,7 +41062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *280 + - *283 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -40785,7 +41083,7 @@ paths: application/json: schema: type: array - items: *278 + items: *281 examples: default: value: @@ -40844,7 +41142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *280 + - *283 requestBody: required: true content: @@ -40884,9 +41182,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *281 examples: - default: *279 + default: *282 '304': *37 '403': *29 '401': *25 @@ -40942,7 +41240,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *280 + - *283 requestBody: required: true content: @@ -41002,15 +41300,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *274 + - *277 responses: '200': description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: &283 + default: &286 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -41067,7 +41365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *274 + - *277 requestBody: required: false content: @@ -41113,9 +41411,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: *283 + default: *286 '404': description: Not Found if the authenticated user does not have access to the project @@ -41136,7 +41434,7 @@ paths: items: type: string '401': *25 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -41159,7 +41457,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *274 + - *277 responses: '204': description: Delete Success @@ -41180,7 +41478,7 @@ paths: items: type: string '401': *25 - '410': *284 + '410': *287 '404': *6 x-github: githubCloudOnly: false @@ -41204,7 +41502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *274 + - *277 - 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 @@ -41231,7 +41529,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -41261,7 +41559,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *274 + - *277 - *132 requestBody: required: false @@ -41314,7 +41612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *274 + - *277 - *132 responses: '204': @@ -41346,7 +41644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *274 + - *277 - *132 responses: '200': @@ -41420,7 +41718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *274 + - *277 - *17 - *19 responses: @@ -41430,7 +41728,7 @@ paths: application/json: schema: type: array - items: *281 + items: *284 examples: default: value: @@ -41468,7 +41766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *274 + - *277 requestBody: required: true content: @@ -41491,7 +41789,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: default: value: @@ -41555,7 +41853,7 @@ paths: resources: type: object properties: - core: &285 + core: &288 title: Rate Limit type: object properties: @@ -41572,20 +41870,20 @@ paths: - remaining - reset - used - graphql: *285 - search: *285 - code_search: *285 - source_import: *285 - integration_manifest: *285 - code_scanning_upload: *285 - actions_runner_registration: *285 - scim: *285 - dependency_snapshots: *285 - code_scanning_autofix: *285 + graphql: *288 + search: *288 + code_search: *288 + source_import: *288 + integration_manifest: *288 + code_scanning_upload: *288 + actions_runner_registration: *288 + scim: *288 + dependency_snapshots: *288 + code_scanning_autofix: *288 required: - core - search - rate: *285 + rate: *288 required: - rate - resources @@ -41689,14 +41987,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *286 + schema: *289 examples: default-response: summary: Default response @@ -42197,7 +42495,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *287 + '301': *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42215,8 +42513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -42452,10 +42750,10 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 - '307': &289 + default: *291 + '307': &292 description: Temporary Redirect content: application/json: @@ -42484,8 +42782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -42507,7 +42805,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *289 + '307': *292 '404': *6 x-github: githubCloudOnly: false @@ -42530,11 +42828,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - - &315 + - &318 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -42557,7 +42855,7 @@ paths: type: integer artifacts: type: array - items: &290 + items: &293 title: Artifact description: An artifact type: object @@ -42635,7 +42933,7 @@ paths: - expires_at - updated_at examples: - default: &316 + default: &319 value: total_count: 2 artifacts: @@ -42696,9 +42994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *275 - - *276 - - &291 + - *278 + - *279 + - &294 name: artifact_id description: The unique identifier of the artifact. in: path @@ -42710,7 +43008,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *293 examples: default: value: @@ -42748,9 +43046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *275 - - *276 - - *291 + - *278 + - *279 + - *294 responses: '204': description: Response @@ -42774,9 +43072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *275 - - *276 - - *291 + - *278 + - *279 + - *294 - name: archive_format in: path required: true @@ -42790,7 +43088,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': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42813,14 +43111,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: default: value: @@ -42846,11 +43144,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - - &293 + - &296 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 @@ -42884,7 +43182,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &297 title: Repository actions caches description: Repository actions caches type: object @@ -42926,7 +43224,7 @@ paths: - total_count - actions_caches examples: - default: &295 + default: &298 value: total_count: 1 actions_caches: @@ -42958,23 +43256,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: - - *275 - - *276 + - *278 + - *279 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *293 + - *296 responses: '200': description: Response content: application/json: - schema: *294 + schema: *297 examples: - default: *295 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42994,8 +43292,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: - - *275 - - *276 + - *278 + - *279 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -43026,9 +43324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *275 - - *276 - - &296 + - *278 + - *279 + - &299 name: job_id description: The unique identifier of the job. in: path @@ -43040,7 +43338,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &322 title: Job description: Information of a job execution in a workflow run type: object @@ -43347,9 +43645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *275 - - *276 - - *296 + - *278 + - *279 + - *299 responses: '302': description: Response @@ -43377,9 +43675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *275 - - *276 - - *296 + - *278 + - *279 + - *299 requestBody: required: false content: @@ -43424,8 +43722,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Status response @@ -43475,8 +43773,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -43539,8 +43837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -43558,7 +43856,7 @@ paths: type: integer secrets: type: array - items: &321 + items: &324 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -43578,7 +43876,7 @@ paths: - created_at - updated_at examples: - default: &322 + default: &325 value: total_count: 2 secrets: @@ -43611,9 +43909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *275 - - *276 - - *297 + - *278 + - *279 + - *300 - *19 responses: '200': @@ -43630,7 +43928,7 @@ paths: type: integer variables: type: array - items: &325 + items: &328 title: Actions Variable type: object properties: @@ -43660,7 +43958,7 @@ paths: - created_at - updated_at examples: - default: &326 + default: &329 value: total_count: 2 variables: @@ -43693,8 +43991,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -43703,11 +44001,11 @@ paths: schema: type: object properties: - enabled: &299 + enabled: &302 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *108 - selected_actions_url: *298 + selected_actions_url: *301 required: - enabled examples: @@ -43734,8 +44032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -43746,7 +44044,7 @@ paths: schema: type: object properties: - enabled: *299 + enabled: *302 allowed_actions: *108 required: - enabled @@ -43776,14 +44074,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &300 + schema: &303 type: object properties: access_level: @@ -43800,7 +44098,7 @@ paths: required: - access_level examples: - default: &301 + default: &304 value: access_level: organization x-github: @@ -43824,15 +44122,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: application/json: - schema: *300 + schema: *303 examples: - default: *301 + default: *304 responses: '204': description: Response @@ -43856,8 +44154,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -43884,8 +44182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -43917,14 +44215,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: default: *114 x-github: @@ -43947,8 +44245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Success response @@ -43959,7 +44257,7 @@ paths: required: true content: application/json: - schema: *303 + schema: *306 examples: default: *114 x-github: @@ -43988,8 +44286,8 @@ paths: in: query schema: type: string - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -44033,8 +44331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -44042,9 +44340,9 @@ paths: application/json: schema: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44066,8 +44364,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -44110,7 +44408,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *306 + '201': *309 '404': *6 '422': *7 '409': *46 @@ -44141,8 +44439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -44150,7 +44448,7 @@ paths: application/json: schema: *123 examples: - default: *307 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44178,8 +44476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -44187,7 +44485,7 @@ paths: application/json: schema: *123 examples: - default: *308 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44209,8 +44507,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '200': @@ -44219,7 +44517,7 @@ paths: application/json: schema: *121 examples: - default: *309 + default: *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44240,8 +44538,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '204': @@ -44267,8 +44565,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '200': *125 @@ -44293,8 +44591,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: - - *275 - - *276 + - *278 + - *279 - *120 requestBody: required: true @@ -44343,8 +44641,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: - - *275 - - *276 + - *278 + - *279 - *120 requestBody: required: true @@ -44394,11 +44692,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: - '200': *310 + '200': *313 '404': *6 x-github: githubCloudOnly: false @@ -44425,10 +44723,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: - - *275 - - *276 + - *278 + - *279 - *120 - - *311 + - *314 responses: '200': *125 '404': *6 @@ -44456,9 +44754,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *275 - - *276 - - &329 + - *278 + - *279 + - &332 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. @@ -44466,7 +44764,7 @@ paths: required: false schema: type: string - - &330 + - &333 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -44474,7 +44772,7 @@ paths: required: false schema: type: string - - &331 + - &334 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -44483,7 +44781,7 @@ paths: required: false schema: type: string - - &332 + - &335 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 @@ -44510,7 +44808,7 @@ paths: - pending - *17 - *19 - - &333 + - &336 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)." @@ -44519,7 +44817,7 @@ paths: schema: type: string format: date-time - - &312 + - &315 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -44528,13 +44826,13 @@ paths: schema: type: boolean default: false - - &334 + - &337 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &335 + - &338 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -44557,7 +44855,7 @@ paths: type: integer workflow_runs: type: array - items: &313 + items: &316 title: Workflow Run description: An invocation of a workflow type: object @@ -44652,7 +44950,7 @@ paths: that triggered the run. type: array nullable: true - items: &354 + items: &357 title: Pull Request Minimal type: object properties: @@ -44771,7 +45069,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &358 + properties: &361 id: type: string description: SHA for the commit @@ -44822,7 +45120,7 @@ paths: - name - email nullable: true - required: &359 + required: &362 - id - tree_id - message @@ -44869,7 +45167,7 @@ paths: - workflow_url - pull_requests examples: - default: &336 + default: &339 value: total_count: 1 workflow_runs: @@ -45105,24 +45403,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *275 - - *276 - - &314 + - *278 + - *279 + - &317 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *312 + - *315 responses: '200': description: Response content: application/json: - schema: *313 + schema: *316 examples: - default: &317 + default: &320 value: id: 30433642 name: Build @@ -45363,9 +45661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '204': description: Response @@ -45388,9 +45686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -45509,9 +45807,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: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '201': description: Response @@ -45544,12 +45842,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 - *17 - *19 - - *315 + - *318 responses: '200': description: Response @@ -45565,9 +45863,9 @@ paths: type: integer artifacts: type: array - items: *290 + items: *293 examples: - default: *316 + default: *319 headers: Link: *58 x-github: @@ -45591,25 +45889,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *275 - - *276 - - *314 - - &318 + - *278 + - *279 + - *317 + - &321 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *312 + - *315 responses: '200': description: Response content: application/json: - schema: *313 + schema: *316 examples: - default: *317 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45632,10 +45930,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *275 - - *276 - - *314 - - *318 + - *278 + - *279 + - *317 + - *321 - *17 - *19 responses: @@ -45653,9 +45951,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *322 examples: - default: &320 + default: &323 value: total_count: 1 jobs: @@ -45768,10 +46066,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *275 - - *276 - - *314 - - *318 + - *278 + - *279 + - *317 + - *321 responses: '302': description: Response @@ -45799,9 +46097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '202': description: Response @@ -45834,9 +46132,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: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: true content: @@ -45903,9 +46201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '202': description: Response @@ -45938,9 +46236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 - 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 @@ -45970,9 +46268,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *322 examples: - default: *320 + default: *323 headers: Link: *58 x-github: @@ -45997,9 +46295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '302': description: Response @@ -46026,9 +46324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '204': description: Response @@ -46055,9 +46353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -46117,7 +46415,7 @@ paths: items: type: object properties: - type: &438 + type: &441 type: string description: The type of reviewer. enum: @@ -46202,9 +46500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: true content: @@ -46251,7 +46549,7 @@ paths: application/json: schema: type: array - items: &433 + items: &436 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -46357,7 +46655,7 @@ paths: - created_at - updated_at examples: - default: &434 + default: &437 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -46413,9 +46711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: false content: @@ -46459,9 +46757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: false content: @@ -46514,9 +46812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -46653,8 +46951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -46672,9 +46970,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *324 examples: - default: *322 + default: *325 headers: Link: *58 x-github: @@ -46699,16 +46997,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *323 + schema: *326 examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46730,17 +47028,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: &451 + default: &454 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -46766,8 +47064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -46825,8 +47123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -46852,9 +47150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *275 - - *276 - - *297 + - *278 + - *279 + - *300 - *19 responses: '200': @@ -46871,9 +47169,9 @@ paths: type: integer variables: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *58 x-github: @@ -46896,8 +47194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -46949,17 +47247,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 responses: '200': description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: &452 + default: &455 value: name: USERNAME value: octocat @@ -46985,8 +47283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 requestBody: required: true @@ -47029,8 +47327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 responses: '204': @@ -47056,8 +47354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -47075,7 +47373,7 @@ paths: type: integer workflows: type: array - items: &327 + items: &330 title: Workflow description: A GitHub Actions workflow type: object @@ -47182,9 +47480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *275 - - *276 - - &328 + - *278 + - *279 + - &331 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -47199,7 +47497,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -47232,9 +47530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47259,9 +47557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47312,9 +47610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47341,19 +47639,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *275 - - *276 - - *328 - - *329 - - *330 + - *278 + - *279 - *331 - *332 - - *17 - - *19 - *333 - - *312 - *334 - *335 + - *17 + - *19 + - *336 + - *315 + - *337 + - *338 responses: '200': description: Response @@ -47369,9 +47667,9 @@ paths: type: integer workflow_runs: type: array - items: *313 + items: *316 examples: - default: *336 + default: *339 headers: Link: *58 x-github: @@ -47403,9 +47701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '200': description: Response @@ -47466,8 +47764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *275 - - *276 + - *278 + - *279 - *48 - *17 - *39 @@ -47631,8 +47929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -47644,7 +47942,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -47669,8 +47967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *275 - - *276 + - *278 + - *279 - name: assignee in: path required: true @@ -47706,8 +48004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -47819,8 +48117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *39 - *40 @@ -47874,7 +48172,7 @@ paths: bundle_url: type: string examples: - default: *337 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47894,8 +48192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -47903,7 +48201,7 @@ paths: application/json: schema: type: array - items: &338 + items: &341 title: Autolink reference description: An autolink reference. type: object @@ -47953,8 +48251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -47993,9 +48291,9 @@ paths: description: response content: application/json: - schema: *338 + schema: *341 examples: - default: &339 + default: &342 value: id: 1 key_prefix: TICKET- @@ -48026,9 +48324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *275 - - *276 - - &340 + - *278 + - *279 + - &343 name: autolink_id description: The unique identifier of the autolink. in: path @@ -48040,9 +48338,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 '404': *6 x-github: githubCloudOnly: false @@ -48062,9 +48360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *275 - - *276 - - *340 + - *278 + - *279 + - *343 responses: '204': description: Response @@ -48088,8 +48386,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response if Dependabot is enabled @@ -48137,8 +48435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -48159,8 +48457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -48180,8 +48478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *275 - - *276 + - *278 + - *279 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -48219,7 +48517,7 @@ paths: - url protected: type: boolean - protection: &342 + protection: &345 title: Branch Protection description: Branch Protection type: object @@ -48261,7 +48559,7 @@ paths: required: - contexts - checks - enforce_admins: &345 + enforce_admins: &348 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -48276,7 +48574,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &347 + required_pull_request_reviews: &350 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -48352,7 +48650,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &344 + restrictions: &347 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -48659,9 +48957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *275 - - *276 - - &343 + - *278 + - *279 + - &346 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). @@ -48675,14 +48973,14 @@ paths: description: Response content: application/json: - schema: &353 + schema: &356 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &406 + commit: &409 title: Commit description: Commit type: object @@ -48716,7 +49014,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &341 + properties: &344 name: type: string example: '"Chris Wanstrath"' @@ -48731,7 +49029,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true message: type: string @@ -48752,7 +49050,7 @@ paths: required: - sha - url - verification: &458 + verification: &461 title: Verification type: object properties: @@ -48822,7 +49120,7 @@ paths: type: integer files: type: array - items: &421 + items: &424 title: Diff Entry description: Diff Entry type: object @@ -48905,7 +49203,7 @@ paths: - self protected: type: boolean - protection: *342 + protection: *345 protection_url: type: string format: uri @@ -49012,7 +49310,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *287 + '301': *290 '404': *6 x-github: githubCloudOnly: false @@ -49034,15 +49332,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *342 + schema: *345 examples: default: value: @@ -49236,9 +49534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -49493,7 +49791,7 @@ paths: url: type: string format: uri - required_status_checks: &350 + required_status_checks: &353 title: Status Check Policy description: Status Check Policy type: object @@ -49645,7 +49943,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *344 + restrictions: *347 required_conversation_resolution: type: object properties: @@ -49757,9 +50055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -49784,17 +50082,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &346 + default: &349 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -49816,17 +50114,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49845,9 +50143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -49872,17 +50170,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: &348 + default: &351 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -49978,9 +50276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50078,9 +50376,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 '422': *15 x-github: githubCloudOnly: false @@ -50101,9 +50399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50130,17 +50428,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &349 + default: &352 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -50163,17 +50461,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *349 + default: *352 '404': *6 x-github: githubCloudOnly: false @@ -50193,9 +50491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50220,17 +50518,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: &351 + default: &354 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -50256,9 +50554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50310,9 +50608,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 '404': *6 '422': *15 x-github: @@ -50334,9 +50632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50360,9 +50658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50396,9 +50694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50465,9 +50763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50531,9 +50829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: content: application/json: @@ -50599,15 +50897,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: default: value: @@ -50698,9 +50996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50723,9 +51021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50735,7 +51033,7 @@ paths: type: array items: *5 examples: - default: &352 + default: &355 value: - id: 1 slug: octoapp @@ -50792,9 +51090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50828,7 +51126,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50849,9 +51147,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50885,7 +51183,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50906,9 +51204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50942,7 +51240,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50964,9 +51262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50976,7 +51274,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '404': *6 x-github: githubCloudOnly: false @@ -50996,9 +51294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -51036,7 +51334,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51057,9 +51355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -51097,7 +51395,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51118,9 +51416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: content: application/json: @@ -51157,7 +51455,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51179,9 +51477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -51191,7 +51489,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '404': *6 x-github: githubCloudOnly: false @@ -51215,9 +51513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51250,7 +51548,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51275,9 +51573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51310,7 +51608,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51335,9 +51633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51370,7 +51668,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51397,9 +51695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51421,7 +51719,7 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51537,8 +51835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -51817,7 +52115,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &358 title: CheckRun description: A check performed on the code of a given code change type: object @@ -51936,8 +52234,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *354 - deployment: &648 + items: *357 + deployment: &651 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -52217,9 +52515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *275 - - *276 - - &356 + - *278 + - *279 + - &359 name: check_run_id description: The unique identifier of the check run. in: path @@ -52231,9 +52529,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &357 + default: &360 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -52333,9 +52631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 requestBody: required: true content: @@ -52575,9 +52873,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52597,9 +52895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 - *17 - *19 responses: @@ -52696,9 +52994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 responses: '201': description: Response @@ -52742,8 +53040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -52765,7 +53063,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &360 + schema: &363 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -52829,7 +53127,7 @@ paths: nullable: true pull_requests: type: array - items: *354 + items: *357 nullable: true app: title: GitHub app @@ -52851,12 +53149,12 @@ paths: type: string format: date-time nullable: true - head_commit: &674 + head_commit: &677 title: Simple Commit description: A commit. type: object - properties: *358 - required: *359 + properties: *361 + required: *362 latest_check_runs_count: type: integer check_runs_url: @@ -52884,7 +53182,7 @@ paths: - check_runs_url - pull_requests examples: - default: &361 + default: &364 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -53175,9 +53473,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *360 + schema: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53196,8 +53494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -53506,9 +53804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *275 - - *276 - - &362 + - *278 + - *279 + - &365 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -53520,9 +53818,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53545,17 +53843,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *275 - - *276 - - *362 - - &414 + - *278 + - *279 + - *365 + - &417 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &415 + - &418 name: status description: Returns check runs with the specified `status`. in: query @@ -53594,9 +53892,9 @@ paths: type: integer check_runs: type: array - items: *355 + items: *358 examples: - default: &416 + default: &419 value: total_count: 1 check_runs: @@ -53698,9 +53996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *275 - - *276 - - *362 + - *278 + - *279 + - *365 responses: '201': description: Response @@ -53733,21 +54031,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *275 - - *276 - - *363 - - *364 + - *278 + - *279 + - *366 + - *367 - *19 - *17 - - &381 + - &384 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: *365 - - &382 + schema: *368 + - &385 name: pr description: The number of the pull request for the results you want to list. in: query @@ -53772,13 +54070,13 @@ paths: be returned. in: query required: false - schema: *366 + schema: *369 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *367 + schema: *370 responses: '200': description: Response @@ -53794,7 +54092,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: *368 + instances_url: *371 state: *138 fixed_at: *134 dismissed_by: @@ -53805,11 +54103,11 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: *369 - dismissed_comment: *370 - rule: *371 - tool: *372 - most_recent_instance: *373 + dismissed_reason: *372 + dismissed_comment: *373 + rule: *374 + tool: *375 + most_recent_instance: *376 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -53932,7 +54230,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &374 + '403': &377 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -53959,9 +54257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *275 - - *276 - - &375 + - *278 + - *279 + - &378 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -53975,7 +54273,7 @@ paths: description: Response content: application/json: - schema: &376 + schema: &379 type: object properties: number: *54 @@ -53983,7 +54281,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: *368 + instances_url: *371 state: *138 fixed_at: *134 dismissed_by: @@ -53994,8 +54292,8 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: *369 - dismissed_comment: *370 + dismissed_reason: *372 + dismissed_comment: *373 rule: type: object properties: @@ -54049,8 +54347,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *372 - most_recent_instance: *373 + tool: *375 + most_recent_instance: *376 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -54146,7 +54444,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54166,9 +54464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: true content: @@ -54183,8 +54481,8 @@ paths: enum: - open - dismissed - dismissed_reason: *369 - dismissed_comment: *370 + dismissed_reason: *372 + dismissed_comment: *373 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -54203,7 +54501,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *379 examples: default: value: @@ -54279,7 +54577,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &380 + '403': &383 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -54306,15 +54604,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: Response content: application/json: - schema: &377 + schema: &380 type: object properties: status: @@ -54340,13 +54638,13 @@ paths: - description - started_at examples: - default: &378 + default: &381 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &379 + '400': &382 description: Bad Request content: application/json: @@ -54357,7 +54655,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': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54382,29 +54680,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: OK content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '202': description: Accepted content: application/json: - schema: *377 + schema: *380 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *379 + '400': *382 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -54436,9 +54734,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: false content: @@ -54483,8 +54781,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *379 - '403': *380 + '400': *382 + '403': *383 '404': *6 '422': description: Unprocessable Entity @@ -54508,13 +54806,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 - *19 - *17 - - *381 - - *382 + - *384 + - *385 responses: '200': description: Response @@ -54522,7 +54820,7 @@ paths: application/json: schema: type: array - items: *373 + items: *376 examples: default: value: @@ -54561,7 +54859,7 @@ paths: end_column: 50 classifications: - source - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54595,25 +54893,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *275 - - *276 - - *363 - - *364 + - *278 + - *279 + - *366 + - *367 - *19 - *17 - - *382 + - *385 - 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: *365 + schema: *368 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &385 + schema: &388 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -54634,23 +54932,23 @@ paths: application/json: schema: type: array - items: &386 + items: &389 type: object properties: - ref: *365 - commit_sha: &394 + ref: *368 + commit_sha: &397 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: *383 + analysis_key: *386 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *384 + category: *387 error: type: string example: error reading field xyz @@ -54674,8 +54972,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *385 - tool: *372 + sarif_id: *388 + tool: *375 deletable: type: boolean warning: @@ -54736,7 +55034,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54772,8 +55070,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: - - *275 - - *276 + - *278 + - *279 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -54786,7 +55084,7 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: response: summary: application/json response @@ -54840,7 +55138,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54922,8 +55220,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: - - *275 - - *276 + - *278 + - *279 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -54976,7 +55274,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': *380 + '403': *383 '404': *6 '503': *65 x-github: @@ -54998,8 +55296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -55007,7 +55305,7 @@ paths: application/json: schema: type: array - items: &387 + items: &390 title: CodeQL Database description: A CodeQL database. type: object @@ -55118,7 +55416,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': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55147,8 +55445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: language in: path description: The language of the CodeQL database. @@ -55160,7 +55458,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *390 examples: default: value: @@ -55192,9 +55490,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': &423 + '302': &426 description: Found - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55216,8 +55514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *275 - - *276 + - *278 + - *279 - name: language in: path description: The language of the CodeQL database. @@ -55227,7 +55525,7 @@ paths: responses: '204': description: Response - '403': *380 + '403': *383 '404': *6 '503': *65 x-github: @@ -55255,8 +55553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -55265,7 +55563,7 @@ paths: type: object additionalProperties: false properties: - language: &388 + language: &391 type: string description: The language targeted by the CodeQL query enum: @@ -55343,7 +55641,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &392 + schema: &395 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -55353,7 +55651,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *388 + query_language: *391 query_pack_url: type: string description: The download url for the query pack. @@ -55400,7 +55698,7 @@ paths: items: type: object properties: - repository: &389 + repository: &392 title: Repository Identifier description: Repository Identifier type: object @@ -55436,7 +55734,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &393 + analysis_status: &396 type: string description: The new status of the CodeQL variant analysis repository task. @@ -55468,7 +55766,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &390 + access_mismatch_repos: &393 type: object properties: repository_count: @@ -55482,7 +55780,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: *389 + items: *392 required: - repository_count - repositories @@ -55504,8 +55802,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *390 - over_limit_repos: *390 + no_codeql_db_repos: *393 + over_limit_repos: *393 required: - access_mismatch_repos - not_found_repos @@ -55521,7 +55819,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &391 + value: &394 summary: Default response value: id: 1 @@ -55673,10 +55971,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *391 + value: *394 repository_lists: summary: Response for a successful variant analysis submission - value: *391 + value: *394 '404': *6 '422': description: Unable to process variant analysis submission @@ -55704,8 +56002,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: - - *275 - - *276 + - *278 + - *279 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -55717,9 +56015,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *395 examples: - default: *391 + default: *394 '404': *6 '503': *65 x-github: @@ -55742,7 +56040,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: - - *275 + - *278 - name: repo in: path description: The name of the controller repository. @@ -55777,7 +56075,7 @@ paths: type: object properties: repository: *53 - analysis_status: *393 + analysis_status: *396 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -55902,8 +56200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -55977,7 +56275,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55998,8 +56296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56081,7 +56379,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *380 + '403': *383 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -56146,8 +56444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56155,7 +56453,7 @@ paths: schema: type: object properties: - commit_sha: *394 + commit_sha: *397 ref: type: string description: |- @@ -56213,7 +56511,7 @@ paths: schema: type: object properties: - id: *385 + id: *388 url: type: string description: The REST API URL for checking the status of the upload. @@ -56227,7 +56525,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': *380 + '403': *383 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -56250,8 +56548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *275 - - *276 + - *278 + - *279 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -56297,7 +56595,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': *374 + '403': *377 '404': description: Not Found if the sarif id does not match any upload '503': *65 @@ -56322,8 +56620,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -56404,8 +56702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *275 - - *276 + - *278 + - *279 - 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 @@ -56525,8 +56823,8 @@ paths: parameters: - *17 - *19 - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -56542,7 +56840,7 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: default: value: @@ -56840,8 +57138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56904,17 +57202,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '400': *14 '401': *25 '403': *29 @@ -56943,8 +57241,8 @@ paths: parameters: - *17 - *19 - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -57008,8 +57306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -57044,14 +57342,14 @@ paths: type: integer machines: type: array - items: &605 + items: &608 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *396 - required: *397 + properties: *399 + required: *400 examples: - default: &606 + default: &609 value: total_count: 2 machines: @@ -57091,8 +57389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *275 - - *276 + - *278 + - *279 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -57176,8 +57474,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: - - *275 - - *276 + - *278 + - *279 - 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 @@ -57243,8 +57541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -57262,7 +57560,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &404 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -57282,7 +57580,7 @@ paths: - created_at - updated_at examples: - default: *398 + default: *401 headers: Link: *58 x-github: @@ -57305,16 +57603,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57334,17 +57632,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57364,8 +57662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -57418,8 +57716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -57448,8 +57746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *275 - - *276 + - *278 + - *279 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -57491,7 +57789,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &403 + properties: &406 login: type: string example: octocat @@ -57584,7 +57882,7 @@ paths: user_view_type: type: string example: public - required: &404 + required: &407 - avatar_url - events_url - followers_url @@ -57658,8 +57956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '204': @@ -57702,8 +58000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 requestBody: required: false @@ -57730,7 +58028,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &471 + schema: &474 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -57952,8 +58250,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '204': @@ -57983,8 +58281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '200': @@ -58005,8 +58303,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *403 - required: *404 + properties: *406 + required: *407 nullable: true required: - permission @@ -58061,8 +58359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -58072,7 +58370,7 @@ paths: application/json: schema: type: array - items: &405 + items: &408 title: Commit Comment description: Commit Comment type: object @@ -58130,7 +58428,7 @@ paths: - created_at - updated_at examples: - default: &408 + default: &411 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58189,17 +58487,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: &409 + default: &412 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58256,8 +58554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -58280,7 +58578,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: default: value: @@ -58331,8 +58629,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -58354,8 +58652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -58382,9 +58680,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -58405,8 +58703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -58439,16 +58737,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -58470,10 +58768,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -58522,8 +58820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *275 - - *276 + - *278 + - *279 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -58579,9 +58877,9 @@ paths: application/json: schema: type: array - items: *406 + items: *409 examples: - default: &522 + default: &525 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -58675,9 +58973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *275 - - *276 - - &407 + - *278 + - *279 + - &410 name: commit_sha description: The SHA of the commit. in: path @@ -58749,9 +59047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 - *17 - *19 responses: @@ -58761,9 +59059,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *408 + default: *411 headers: Link: *58 x-github: @@ -58791,9 +59089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 requestBody: required: true content: @@ -58828,9 +59126,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *409 + default: *412 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58858,9 +59156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 - *17 - *19 responses: @@ -58870,7 +59168,7 @@ paths: application/json: schema: type: array - items: &513 + items: &516 title: Pull Request Simple description: Pull Request Simple type: object @@ -58976,8 +59274,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true active_lock_reason: type: string @@ -59073,7 +59371,7 @@ paths: _links: type: object properties: - comments: &412 + comments: &415 title: Link description: Hypermedia Link type: object @@ -59082,13 +59380,13 @@ paths: type: string required: - href - commits: *412 - statuses: *412 - html: *412 - issue: *412 - review_comments: *412 - review_comment: *412 - self: *412 + commits: *415 + statuses: *415 + html: *415 + issue: *415 + review_comments: *415 + review_comment: *415 + self: *415 required: - comments - commits @@ -59099,7 +59397,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: &515 + auto_merge: &518 title: Auto merge description: The status of auto merging a pull request. type: object @@ -59162,7 +59460,7 @@ paths: - author_association - auto_merge examples: - default: &514 + default: &517 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -59699,11 +59997,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 - - &413 + - &416 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)" @@ -59718,9 +60016,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &500 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -59833,11 +60131,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *275 - - *276 - - *413 - - *414 - - *415 + - *278 + - *279 + - *416 + - *417 + - *418 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -59871,9 +60169,9 @@ paths: type: integer check_runs: type: array - items: *355 + items: *358 examples: - default: *416 + default: *419 headers: Link: *58 x-github: @@ -59898,9 +60196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -59908,7 +60206,7 @@ paths: schema: type: integer example: 1 - - *414 + - *417 - *17 - *19 responses: @@ -59926,7 +60224,7 @@ paths: type: integer check_suites: type: array - items: *360 + items: *363 examples: default: value: @@ -60126,9 +60424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - *17 - *19 responses: @@ -60326,9 +60624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - *17 - *19 responses: @@ -60338,7 +60636,7 @@ paths: application/json: schema: type: array - items: &579 + items: &582 title: Status description: The status of a commit. type: object @@ -60419,7 +60717,7 @@ paths: site_admin: false headers: Link: *58 - '301': *287 + '301': *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60447,8 +60745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -60477,20 +60775,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *417 - required: *418 + properties: *420 + required: *421 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &419 + properties: &422 url: type: string format: uri html_url: type: string format: uri - required: &420 + required: &423 - url - html_url nullable: true @@ -60504,26 +60802,26 @@ paths: contributing: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true readme: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true issue_template: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true pull_request_template: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true required: - code_of_conduct @@ -60650,8 +60948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 - name: basehead @@ -60694,8 +60992,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *406 - merge_base_commit: *406 + base_commit: *409 + merge_base_commit: *409 status: type: string enum: @@ -60715,10 +61013,10 @@ paths: example: 6 commits: type: array - items: *406 + items: *409 files: type: array - items: *421 + items: *424 required: - url - html_url @@ -61004,8 +61302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61146,7 +61444,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &422 + response-if-content-is-a-file: &425 summary: Response if content is a file value: type: file @@ -61278,7 +61576,7 @@ paths: - size - type - url - - &527 + - &530 title: Content File description: Content File type: object @@ -61479,7 +61777,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *422 + response-if-content-is-a-file: *425 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -61548,7 +61846,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *423 + '302': *426 '304': *37 x-github: githubCloudOnly: false @@ -61571,8 +61869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61665,7 +61963,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &427 title: File Commit description: File Commit type: object @@ -61817,7 +62115,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: example-for-creating-a-file: value: @@ -61871,7 +62169,7 @@ paths: schema: oneOf: - *3 - - &453 + - &456 description: Repository rule violation was detected type: object properties: @@ -61892,7 +62190,7 @@ paths: items: type: object properties: - placeholder_id: &571 + placeholder_id: &574 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -61924,8 +62222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61986,7 +62284,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: default: value: @@ -62041,8 +62339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *275 - - *276 + - *278 + - *279 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -62165,8 +62463,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *149 - *150 - *151 @@ -62208,7 +62506,7 @@ paths: application/json: schema: type: array - items: &427 + items: &430 type: object description: A Dependabot alert. properties: @@ -62254,7 +62552,7 @@ paths: - unknown - direct - transitive - security_advisory: *425 + security_advisory: *428 security_vulnerability: *52 url: *56 html_url: *57 @@ -62285,7 +62583,7 @@ paths: nullable: true maxLength: 280 fixed_at: *134 - auto_dismissed_at: *426 + auto_dismissed_at: *429 required: - number - state @@ -62515,9 +62813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *275 - - *276 - - &428 + - *278 + - *279 + - &431 name: alert_number in: path description: |- @@ -62532,7 +62830,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -62645,9 +62943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *275 - - *276 - - *428 + - *278 + - *279 + - *431 requestBody: required: true content: @@ -62692,7 +62990,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -62821,8 +63119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -62840,7 +63138,7 @@ paths: type: integer secrets: type: array - items: &431 + items: &434 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -62893,16 +63191,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *430 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62922,15 +63220,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -62956,8 +63254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -63010,8 +63308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -63034,8 +63332,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: - - *275 - - *276 + - *278 + - *279 - 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 @@ -63195,8 +63493,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -63435,8 +63733,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -63511,7 +63809,7 @@ paths: - version - url additionalProperties: false - metadata: &432 + metadata: &435 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -63544,7 +63842,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *432 + metadata: *435 resolved: type: object description: A collection of resolved package dependencies. @@ -63557,7 +63855,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *432 + metadata: *435 relationship: type: string description: A notation of whether a dependency is requested @@ -63686,8 +63984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *275 - - *276 + - *278 + - *279 - name: sha description: The SHA recorded at creation time. in: query @@ -63727,9 +64025,9 @@ paths: application/json: schema: type: array - items: *433 + items: *436 examples: - default: *434 + default: *437 headers: Link: *58 x-github: @@ -63795,8 +64093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -63877,7 +64175,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: simple-example: summary: Simple example @@ -63950,9 +64248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *275 - - *276 - - &435 + - *278 + - *279 + - &438 name: deployment_id description: deployment_id parameter in: path @@ -63964,7 +64262,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: default: value: @@ -64029,9 +64327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 responses: '204': description: Response @@ -64053,9 +64351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 - *17 - *19 responses: @@ -64065,7 +64363,7 @@ paths: application/json: schema: type: array - items: &436 + items: &439 title: Deployment Status description: The status of a deployment. type: object @@ -64226,9 +64524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 requestBody: required: true content: @@ -64303,9 +64601,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: &437 + default: &440 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -64361,9 +64659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 - name: status_id in: path required: true @@ -64374,9 +64672,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 '404': *6 x-github: githubCloudOnly: false @@ -64401,8 +64699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -64459,8 +64757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -64477,7 +64775,7 @@ paths: type: integer environments: type: array - items: &439 + items: &442 title: Environment description: Details of a deployment environment type: object @@ -64529,7 +64827,7 @@ paths: type: type: string example: wait_timer - wait_timer: &441 + wait_timer: &444 type: integer example: 30 description: The amount of time to delay a job after @@ -64566,7 +64864,7 @@ paths: items: type: object properties: - type: *438 + type: *441 reviewer: anyOf: - *4 @@ -64590,7 +64888,7 @@ paths: - id - node_id - type - deployment_branch_policy: &442 + deployment_branch_policy: &445 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -64706,9 +65004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *275 - - *276 - - &440 + - *278 + - *279 + - &443 name: environment_name in: path required: true @@ -64721,9 +65019,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: &443 + default: &446 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -64807,9 +65105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: false content: @@ -64818,7 +65116,7 @@ paths: type: object nullable: true properties: - wait_timer: *441 + wait_timer: *444 prevent_self_review: type: boolean example: false @@ -64835,13 +65133,13 @@ paths: items: type: object properties: - type: *438 + type: *441 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *442 + deployment_branch_policy: *445 additionalProperties: false examples: default: @@ -64861,9 +65159,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: *443 + default: *446 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -64887,9 +65185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 responses: '204': description: Default response @@ -64914,9 +65212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *17 - *19 responses: @@ -64934,7 +65232,7 @@ paths: example: 2 branch_policies: type: array - items: &444 + items: &447 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -64991,9 +65289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: true content: @@ -65039,9 +65337,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - example-wildcard: &445 + example-wildcard: &448 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -65083,10 +65381,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - &446 + - *278 + - *279 + - *443 + - &449 name: branch_policy_id in: path required: true @@ -65098,9 +65396,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65119,10 +65417,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - *446 + - *278 + - *279 + - *443 + - *449 requestBody: required: true content: @@ -65150,9 +65448,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65171,10 +65469,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - *446 + - *278 + - *279 + - *443 + - *449 responses: '204': description: Response @@ -65199,9 +65497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 responses: '200': description: List of deployment protection rules @@ -65217,7 +65515,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &447 + items: &450 title: Deployment protection rule description: Deployment protection rule type: object @@ -65236,7 +65534,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &448 + app: &451 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -65335,9 +65633,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: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 requestBody: content: application/json: @@ -65358,9 +65656,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *447 + schema: *450 examples: - default: &449 + default: &452 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -65395,9 +65693,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: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 - *19 - *17 responses: @@ -65416,7 +65714,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *448 + items: *451 examples: default: value: @@ -65451,10 +65749,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *275 - - *276 - - *440 - - &450 + - *278 + - *279 + - *443 + - &453 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -65466,9 +65764,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *450 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65489,10 +65787,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *440 - - *276 - - *275 - - *450 + - *443 + - *279 + - *278 + - *453 responses: '204': description: Response @@ -65518,9 +65816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *17 - *19 responses: @@ -65538,9 +65836,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *324 examples: - default: *322 + default: *325 headers: Link: *58 x-github: @@ -65565,17 +65863,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 responses: '200': description: Response content: application/json: - schema: *323 + schema: *326 examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65597,18 +65895,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65630,9 +65928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 requestBody: required: true @@ -65690,9 +65988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 responses: '204': @@ -65718,10 +66016,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *275 - - *276 - - *440 - - *297 + - *278 + - *279 + - *443 + - *300 - *19 responses: '200': @@ -65738,9 +66036,9 @@ paths: type: integer variables: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *58 x-github: @@ -65763,9 +66061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: true content: @@ -65817,18 +66115,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *130 responses: '200': description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: *452 + default: *455 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65849,10 +66147,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 - - *440 + - *443 requestBody: required: true content: @@ -65894,10 +66192,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 - - *440 + - *443 responses: '204': description: Response @@ -65919,8 +66217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -65997,8 +66295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *275 - - *276 + - *278 + - *279 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -66157,8 +66455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -66190,9 +66488,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 '400': *14 '422': *15 '403': *29 @@ -66213,8 +66511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66274,7 +66572,7 @@ paths: schema: oneOf: - *97 - - *453 + - *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66299,8 +66597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *275 - - *276 + - *278 + - *279 - name: file_sha in: path required: true @@ -66399,8 +66697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66509,7 +66807,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &457 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -66723,15 +67021,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 responses: '200': description: Response content: application/json: - schema: *454 + schema: *457 examples: default: value: @@ -66787,9 +67085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *275 - - *276 - - &455 + - *278 + - *279 + - &458 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. @@ -66806,7 +67104,7 @@ paths: application/json: schema: type: array - items: &456 + items: &459 title: Git Reference description: Git references within a repository type: object @@ -66881,17 +67179,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 responses: '200': description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: &457 + default: &460 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -66920,8 +67218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66950,9 +67248,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: *457 + default: *460 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -66978,9 +67276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 requestBody: required: true content: @@ -67009,9 +67307,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: *457 + default: *460 '422': *15 '409': *46 x-github: @@ -67029,9 +67327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 responses: '204': description: Response @@ -67084,8 +67382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -67152,7 +67450,7 @@ paths: description: Response content: application/json: - schema: &459 + schema: &462 title: Git Tag description: Metadata for a Git tag type: object @@ -67203,7 +67501,7 @@ paths: - sha - type - url - verification: *458 + verification: *461 required: - sha - url @@ -67213,7 +67511,7 @@ paths: - tag - message examples: - default: &460 + default: &463 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -67286,8 +67584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *275 - - *276 + - *278 + - *279 - name: tag_sha in: path required: true @@ -67298,9 +67596,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 '404': *6 '409': *46 x-github: @@ -67324,8 +67622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -67398,7 +67696,7 @@ paths: description: Response content: application/json: - schema: &461 + schema: &464 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -67510,8 +67808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *275 - - *276 + - *278 + - *279 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -67534,7 +67832,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *464 examples: default-response: summary: Default response @@ -67593,8 +67891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -67604,7 +67902,7 @@ paths: application/json: schema: type: array - items: &462 + items: &465 title: Webhook description: Webhooks for repositories. type: object @@ -67658,7 +67956,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &682 + last_response: &685 title: Hook Response type: object properties: @@ -67732,8 +68030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -67785,9 +68083,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: &463 + default: &466 value: type: Repository id: 12345678 @@ -67835,17 +68133,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -67865,8 +68163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 requestBody: required: true @@ -67912,9 +68210,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 + default: *466 '422': *15 '404': *6 x-github: @@ -67935,8 +68233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -67961,8 +68259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '200': @@ -67990,8 +68288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *165 requestBody: required: false @@ -68036,8 +68334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *17 - *166 @@ -68069,8 +68367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *16 responses: @@ -68099,8 +68397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *16 responses: @@ -68124,8 +68422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -68151,8 +68449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -68211,14 +68509,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 title: Import description: A repository import from an external source. type: object @@ -68317,7 +68615,7 @@ paths: - html_url - authors_url examples: - default: &467 + default: &470 value: vcs: subversion use_lfs: true @@ -68333,7 +68631,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': &465 + '503': &468 description: Unavailable due to service under maintenance. content: application/json: @@ -68362,8 +68660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -68411,7 +68709,7 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: default: value: @@ -68436,7 +68734,7 @@ paths: type: string '422': *15 '404': *6 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68464,8 +68762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -68514,7 +68812,7 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: example-1: summary: Example 1 @@ -68562,7 +68860,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': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68585,12 +68883,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68616,9 +68914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *275 - - *276 - - &629 + - *278 + - *279 + - &632 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -68632,7 +68930,7 @@ paths: application/json: schema: type: array - items: &466 + items: &469 title: Porter Author description: Porter Author type: object @@ -68686,7 +68984,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': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68711,8 +69009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *275 - - *276 + - *278 + - *279 - name: author_id in: path required: true @@ -68742,7 +69040,7 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: default: value: @@ -68755,7 +69053,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68779,8 +69077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68821,7 +69119,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68849,8 +69147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -68877,11 +69175,11 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *467 + default: *470 '422': *15 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68904,8 +69202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68913,8 +69211,8 @@ paths: application/json: schema: *22 examples: - default: *468 - '301': *287 + default: *471 + '301': *290 '404': *6 x-github: githubCloudOnly: false @@ -68934,8 +69232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68948,7 +69246,7 @@ paths: properties: {} additionalProperties: false examples: - default: &470 + default: &473 value: limit: collaborators_only origin: repository @@ -68973,13 +69271,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: application/json: - schema: *469 + schema: *472 examples: default: summary: Example request body @@ -68993,7 +69291,7 @@ paths: application/json: schema: *183 examples: - default: *470 + default: *473 '409': description: Response x-github: @@ -69015,8 +69313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -69039,8 +69337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -69050,9 +69348,9 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: &622 + default: &625 value: - id: 1 repository: @@ -69183,8 +69481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *275 - - *276 + - *278 + - *279 - *187 requestBody: required: false @@ -69214,7 +69512,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: default: value: @@ -69345,8 +69643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *275 - - *276 + - *278 + - *279 - *187 responses: '204': @@ -69378,8 +69676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *275 - - *276 + - *278 + - *279 - 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 @@ -69407,6 +69705,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 @@ -69419,7 +69725,7 @@ paths: required: false schema: type: string - - *189 + - *192 - name: sort description: What to sort results by. in: query @@ -69444,7 +69750,7 @@ paths: type: array items: *77 examples: - default: &482 + default: &485 value: - id: 1 node_id: MDU6SXNzdWUx @@ -69592,7 +69898,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *287 + '301': *290 '422': *15 '404': *6 x-github: @@ -69621,8 +69927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -69680,6 +69986,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -69699,7 +70010,7 @@ paths: application/json: schema: *77 examples: - default: &477 + default: &480 value: id: 1 node_id: MDU6SXNzdWUx @@ -69855,7 +70166,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *284 + '410': *287 x-github: triggersNotification: true githubCloudOnly: false @@ -69883,8 +70194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -69905,9 +70216,9 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: &479 + default: &482 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -69965,17 +70276,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: &473 + default: &476 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70029,8 +70340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -70053,9 +70364,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *473 + default: *476 '422': *15 x-github: githubCloudOnly: false @@ -70073,8 +70384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -70095,8 +70406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -70123,9 +70434,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -70146,8 +70457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -70180,16 +70491,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -70211,10 +70522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -70234,8 +70545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -70245,7 +70556,7 @@ paths: application/json: schema: type: array - items: &476 + items: &479 title: Issue Event description: Issue Event type: object @@ -70288,8 +70599,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *474 - required: *475 + properties: *477 + required: *478 nullable: true label: title: Issue Event Label @@ -70596,8 +70907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *275 - - *276 + - *278 + - *279 - name: event_id in: path required: true @@ -70608,7 +70919,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -70801,7 +71112,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *284 + '410': *287 '403': *29 x-github: githubCloudOnly: false @@ -70835,9 +71146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *275 - - *276 - - &478 + - *278 + - *279 + - &481 name: issue_number description: The number that identifies the issue. in: path @@ -70851,10 +71162,10 @@ paths: application/json: schema: *77 examples: - default: *477 - '301': *287 + default: *480 + '301': *290 '404': *6 - '410': *284 + '410': *287 '304': *37 x-github: githubCloudOnly: false @@ -70879,9 +71190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -70960,6 +71271,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -70978,13 +71295,13 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 '422': *15 '503': *65 '403': *29 - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71002,9 +71319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -71032,7 +71349,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71048,9 +71365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: content: application/json: @@ -71077,7 +71394,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71099,9 +71416,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: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - name: assignee in: path required: true @@ -71141,9 +71458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *67 - *17 - *19 @@ -71154,13 +71471,13 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: *479 + default: *482 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71189,9 +71506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -71213,16 +71530,16 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *473 + default: *476 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *284 + '410': *287 '422': *15 '404': *6 x-github: @@ -71242,9 +71559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -71258,7 +71575,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &483 + - &486 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -71312,7 +71629,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &484 + - &487 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -71448,7 +71765,7 @@ paths: - performed_via_github_app - assignee - assigner - - &485 + - &488 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -71499,7 +71816,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &486 + - &489 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -71550,7 +71867,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &487 + - &490 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -71604,7 +71921,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &488 + - &491 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -71651,7 +71968,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &489 + - &492 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -71698,7 +72015,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &490 + - &493 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -71758,7 +72075,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &491 + - &494 title: Locked Issue Event description: Locked Issue Event type: object @@ -71806,7 +72123,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &495 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -71872,7 +72189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &493 + - &496 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -71938,7 +72255,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &497 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -72004,7 +72321,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &498 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -72095,7 +72412,7 @@ paths: color: red headers: Link: *58 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72112,9 +72429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72124,7 +72441,7 @@ paths: application/json: schema: type: array - items: &480 + items: &483 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -72171,7 +72488,7 @@ paths: - color - default examples: - default: &481 + default: &484 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -72189,9 +72506,9 @@ paths: default: false headers: Link: *58 - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72208,9 +72525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72269,12 +72586,12 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 - '301': *287 + default: *484 + '301': *290 '404': *6 - '410': *284 + '410': *287 '422': *15 x-github: githubCloudOnly: false @@ -72291,9 +72608,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72353,12 +72670,12 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 - '301': *287 + default: *484 + '301': *290 '404': *6 - '410': *284 + '410': *287 '422': *15 x-github: githubCloudOnly: false @@ -72375,15 +72692,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 responses: '204': description: Response - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72402,9 +72719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - name: name in: path required: true @@ -72417,7 +72734,7 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: default: value: @@ -72428,9 +72745,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72450,9 +72767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72480,7 +72797,7 @@ paths: '204': description: Response '403': *29 - '410': *284 + '410': *287 '404': *6 '422': *15 x-github: @@ -72498,9 +72815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 responses: '204': description: Response @@ -72522,9 +72839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - 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. @@ -72550,13 +72867,13 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72574,9 +72891,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72608,16 +72925,16 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -72639,10 +72956,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *275 - - *276 - - *478 - - *271 + - *278 + - *279 + - *481 + - *274 responses: '204': description: Response @@ -72671,9 +72988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72697,7 +73014,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -72730,9 +73047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72744,11 +73061,11 @@ paths: type: array items: *77 examples: - default: *482 + default: *485 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72776,9 +73093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72807,14 +73124,14 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *284 + '410': *287 '422': *15 '404': *6 x-github: @@ -72834,9 +73151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72869,7 +73186,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 '403': *29 '404': *6 '422': *7 @@ -72891,9 +73208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72908,9 +73225,6 @@ paths: description: Timeline Event type: object anyOf: - - *483 - - *484 - - *485 - *486 - *487 - *488 @@ -72921,6 +73235,9 @@ paths: - *493 - *494 - *495 + - *496 + - *497 + - *498 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -73225,7 +73542,7 @@ paths: type: string comments: type: array - items: &516 + items: &519 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -73434,7 +73751,7 @@ paths: type: string comments: type: array - items: *405 + items: *408 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -73723,7 +74040,7 @@ paths: headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73740,8 +74057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -73751,7 +74068,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -73816,8 +74133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -73853,9 +74170,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: id: 1 key: ssh-rsa AAA... @@ -73889,9 +74206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *275 - - *276 - - &498 + - *278 + - *279 + - &501 name: key_id description: The unique identifier of the key. in: path @@ -73903,9 +74220,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -73923,9 +74240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *275 - - *276 - - *498 + - *278 + - *279 + - *501 responses: '204': description: Response @@ -73945,8 +74262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -73956,9 +74273,9 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *58 '404': *6 @@ -73979,8 +74296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74016,9 +74333,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: &499 + default: &502 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74050,8 +74367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74062,9 +74379,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: *499 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -74081,8 +74398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74121,7 +74438,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: default: value: @@ -74147,8 +74464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74174,8 +74491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -74214,9 +74531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *275 - - *276 - - *381 + - *278 + - *279 + - *384 responses: '200': description: Response @@ -74361,8 +74678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74427,8 +74744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74462,9 +74779,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *406 + schema: *409 examples: - default: *500 + default: *503 '204': description: Response when already merged '404': @@ -74489,8 +74806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -74531,12 +74848,12 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 examples: default: value: @@ -74592,8 +74909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74633,9 +74950,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &502 + default: &505 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -74694,9 +75011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *275 - - *276 - - &503 + - *278 + - *279 + - &506 name: milestone_number description: The number that identifies the milestone. in: path @@ -74708,9 +75025,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -74727,9 +75044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 requestBody: required: false content: @@ -74767,9 +75084,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74785,9 +75102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 responses: '204': description: Response @@ -74808,9 +75125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 - *17 - *19 responses: @@ -74820,9 +75137,9 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *58 x-github: @@ -74841,12 +75158,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *275 - - *276 - - *504 - - *505 + - *278 + - *279 + - *507 + - *508 - *67 - - *506 + - *509 - *17 - *19 responses: @@ -74858,7 +75175,7 @@ paths: type: array items: *90 examples: - default: *507 + default: *510 headers: Link: *58 x-github: @@ -74882,8 +75199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -74941,14 +75258,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &508 + schema: &511 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -75073,7 +75390,7 @@ paths: - custom_404 - public examples: - default: &509 + default: &512 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -75114,8 +75431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75169,9 +75486,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: *509 + default: *512 '422': *15 '409': *46 x-github: @@ -75194,8 +75511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75294,8 +75611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -75321,8 +75638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -75332,7 +75649,7 @@ paths: application/json: schema: type: array - items: &510 + items: &513 title: Page Build description: Page Build type: object @@ -75426,8 +75743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -75472,16 +75789,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *510 + schema: *513 examples: - default: &511 + default: &514 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -75529,8 +75846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *275 - - *276 + - *278 + - *279 - name: build_id in: path required: true @@ -75541,9 +75858,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *513 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75563,8 +75880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75669,9 +75986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *275 - - *276 - - &512 + - *278 + - *279 + - &515 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -75729,9 +76046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *275 - - *276 - - *512 + - *278 + - *279 + - *515 responses: '204': *142 '404': *6 @@ -75758,8 +76075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -76017,8 +76334,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Private vulnerability reporting status @@ -76055,8 +76372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': *142 '422': *14 @@ -76077,8 +76394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': *142 '422': *14 @@ -76101,8 +76418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: Indicates the state of the projects to return. in: query @@ -76123,7 +76440,7 @@ paths: application/json: schema: type: array - items: *223 + items: *226 examples: default: value: @@ -76163,7 +76480,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -76186,8 +76503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76213,13 +76530,13 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: *283 + default: *286 '401': *25 '403': *29 '404': *6 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -76242,8 +76559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -76251,7 +76568,7 @@ paths: application/json: schema: type: array - items: *228 + items: *231 examples: default: value: @@ -76282,8 +76599,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76295,7 +76612,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *228 + items: *231 required: - properties examples: @@ -76345,8 +76662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -76406,9 +76723,9 @@ paths: application/json: schema: type: array - items: *513 + items: *516 examples: - default: *514 + default: *517 headers: Link: *58 '304': *37 @@ -76440,8 +76757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76506,7 +76823,7 @@ paths: description: Response content: application/json: - schema: &518 + schema: &521 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -76617,8 +76934,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true active_lock_reason: type: string @@ -76663,7 +76980,7 @@ paths: nullable: true requested_teams: type: array - items: *251 + items: *254 nullable: true head: type: object @@ -76702,14 +77019,14 @@ paths: _links: type: object properties: - comments: *412 - commits: *412 - statuses: *412 - html: *412 - issue: *412 - review_comments: *412 - review_comment: *412 - self: *412 + comments: *415 + commits: *415 + statuses: *415 + html: *415 + issue: *415 + review_comments: *415 + review_comment: *415 + self: *415 required: - comments - commits @@ -76720,7 +77037,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: *515 + auto_merge: *518 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -76812,7 +77129,7 @@ paths: - merged_by - review_comments examples: - default: &519 + default: &522 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -77339,8 +77656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: sort in: query required: false @@ -77369,9 +77686,9 @@ paths: application/json: schema: type: array - items: *516 + items: *519 examples: - default: &521 + default: &524 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -77448,17 +77765,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -77533,8 +77850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -77557,9 +77874,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77575,8 +77892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -77598,8 +77915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -77626,9 +77943,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -77649,8 +77966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -77683,16 +78000,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -77714,10 +78031,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -77760,9 +78077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *275 - - *276 - - &520 + - *278 + - *279 + - &523 name: pull_number description: The number that identifies the pull request. in: path @@ -77775,9 +78092,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 '304': *37 '404': *6 '406': @@ -77812,9 +78129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -77856,9 +78173,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 '422': *15 '403': *29 x-github: @@ -77880,9 +78197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -77942,17 +78259,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -77982,9 +78299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -78005,9 +78322,9 @@ paths: application/json: schema: type: array - items: *516 + items: *519 examples: - default: *521 + default: *524 headers: Link: *58 x-github: @@ -78040,9 +78357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -78147,7 +78464,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: example-for-a-multi-line-comment: value: @@ -78235,9 +78552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *76 requestBody: required: true @@ -78260,7 +78577,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: default: value: @@ -78346,9 +78663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -78358,9 +78675,9 @@ paths: application/json: schema: type: array - items: *406 + items: *409 examples: - default: *522 + default: *525 headers: Link: *58 x-github: @@ -78390,9 +78707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -78402,7 +78719,7 @@ paths: application/json: schema: type: array - items: *421 + items: *424 examples: default: value: @@ -78440,9 +78757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 responses: '204': description: Response if pull request has been merged @@ -78465,9 +78782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -78578,9 +78895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 responses: '200': description: Response @@ -78655,9 +78972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -78694,7 +79011,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: default: value: @@ -79230,9 +79547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -79266,7 +79583,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: default: value: @@ -79771,9 +80088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -79783,7 +80100,7 @@ paths: application/json: schema: type: array - items: &523 + items: &526 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -79934,9 +80251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -80022,9 +80339,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &525 + default: &528 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -80087,10 +80404,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - &524 + - *278 + - *279 + - *523 + - &527 name: review_id description: The unique identifier of the review. in: path @@ -80102,9 +80419,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &526 + default: &529 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -80163,10 +80480,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80189,7 +80506,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: default: value: @@ -80251,18 +80568,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *525 + default: *528 '422': *7 '404': *6 x-github: @@ -80289,10 +80606,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 - *17 - *19 responses: @@ -80375,9 +80692,9 @@ paths: _links: type: object properties: - self: *412 - html: *412 - pull_request: *412 + self: *415 + html: *415 + pull_request: *415 required: - self - html @@ -80520,10 +80837,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80551,7 +80868,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: default: value: @@ -80614,10 +80931,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80652,9 +80969,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *526 + default: *529 '404': *6 '422': *7 '403': *29 @@ -80676,9 +80993,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -80741,8 +81058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *275 - - *276 + - *278 + - *279 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -80755,9 +81072,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: &528 + default: &531 value: type: file encoding: base64 @@ -80799,8 +81116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *275 - - *276 + - *278 + - *279 - name: dir description: The alternate path to look for a README file in: path @@ -80820,9 +81137,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: *528 + default: *531 '404': *6 '422': *15 x-github: @@ -80844,8 +81161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -80855,7 +81172,7 @@ paths: application/json: schema: type: array - items: &529 + items: &532 title: Release description: A release. type: object @@ -80918,7 +81235,7 @@ paths: author: *4 assets: type: array - items: &530 + items: &533 title: Release Asset description: Data related to a release. type: object @@ -81099,8 +81416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -81176,9 +81493,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: &533 + default: &536 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -81281,9 +81598,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *275 - - *276 - - &531 + - *278 + - *279 + - &534 name: asset_id description: The unique identifier of the asset. in: path @@ -81295,9 +81612,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: &532 + default: &535 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 @@ -81331,7 +81648,7 @@ paths: type: User site_admin: false '404': *6 - '302': *423 + '302': *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81347,9 +81664,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *275 - - *276 - - *531 + - *278 + - *279 + - *534 requestBody: required: false content: @@ -81377,9 +81694,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81395,9 +81712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *275 - - *276 - - *531 + - *278 + - *279 + - *534 responses: '204': description: Response @@ -81421,8 +81738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -81507,16 +81824,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81533,8 +81850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *275 - - *276 + - *278 + - *279 - name: tag description: tag parameter in: path @@ -81547,9 +81864,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 '404': *6 x-github: githubCloudOnly: false @@ -81571,9 +81888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *275 - - *276 - - &534 + - *278 + - *279 + - &537 name: release_id description: The unique identifier of the release. in: path @@ -81587,9 +81904,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: *529 + schema: *532 examples: - default: *533 + default: *536 '401': description: Unauthorized x-github: @@ -81607,9 +81924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 requestBody: required: false content: @@ -81673,9 +81990,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 '404': description: Not Found if the discussion category name is invalid content: @@ -81696,9 +82013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 responses: '204': description: Response @@ -81718,9 +82035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - *17 - *19 responses: @@ -81730,7 +82047,7 @@ paths: application/json: schema: type: array - items: *530 + items: *533 examples: default: value: @@ -81810,9 +82127,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: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - name: name in: query required: true @@ -81838,7 +82155,7 @@ paths: description: Response for successful upload content: application/json: - schema: *530 + schema: *533 examples: response-for-successful-upload: value: @@ -81892,9 +82209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - 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. @@ -81918,9 +82235,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -81941,9 +82258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 requestBody: required: true content: @@ -81973,16 +82290,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -82004,10 +82321,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *275 - - *276 - - *534 - - *271 + - *278 + - *279 + - *537 + - *274 responses: '204': description: Response @@ -82031,9 +82348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 - *17 - *19 responses: @@ -82049,8 +82366,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *535 - - &537 + - *538 + - &540 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -82069,54 +82386,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *536 - - *537 - - allOf: - - *538 - - *537 - allOf: - *539 - - *537 - - allOf: - *540 - - *537 - allOf: - *541 - - *537 + - *540 - allOf: - *542 - - *537 + - *540 - allOf: - *543 - - *537 + - *540 - allOf: - *544 - - *537 + - *540 - allOf: - *545 - - *537 + - *540 - allOf: - *546 - - *537 + - *540 - allOf: - *547 - - *537 + - *540 - allOf: - *548 - - *537 + - *540 - allOf: - *549 - - *537 + - *540 - allOf: - *550 - - *537 + - *540 - allOf: - *551 - - *537 + - *540 - allOf: - *552 - - *537 + - *540 + - allOf: + - *553 + - *540 + - allOf: + - *554 + - *540 + - allOf: + - *555 + - *540 examples: default: value: @@ -82155,8 +82472,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - name: includes_parents @@ -82167,7 +82484,7 @@ paths: schema: type: boolean default: true - - *553 + - *556 responses: '200': description: Response @@ -82175,7 +82492,7 @@ paths: application/json: schema: type: array - items: *238 + items: *241 examples: default: value: @@ -82222,8 +82539,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 requestBody: description: Request body required: true @@ -82243,16 +82560,16 @@ paths: - tag - push default: branch - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *232 + items: *238 + conditions: *235 rules: type: array description: An array of rules within the ruleset. - items: *237 + items: *240 required: - name - enforcement @@ -82283,9 +82600,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: &563 + default: &566 value: id: 42 name: super cool ruleset @@ -82332,12 +82649,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *275 - - *276 - - *554 - - *555 - - *556 + - *278 + - *279 - *557 + - *558 + - *559 + - *560 - *17 - *19 responses: @@ -82345,9 +82662,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: - default: *559 + default: *562 '404': *6 '500': *145 x-github: @@ -82368,17 +82685,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *275 - - *276 - - *560 + - *278 + - *279 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 '500': *145 x-github: @@ -82406,8 +82723,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82427,9 +82744,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *563 + default: *566 '404': *6 '500': *145 put: @@ -82447,8 +82764,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82473,16 +82790,16 @@ paths: - branch - tag - push - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *232 + items: *238 + conditions: *235 rules: description: An array of rules within the ruleset. type: array - items: *237 + items: *240 examples: default: value: @@ -82510,9 +82827,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *563 + default: *566 '404': *6 '500': *145 delete: @@ -82530,8 +82847,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82554,8 +82871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - name: ruleset_id @@ -82571,9 +82888,9 @@ paths: application/json: schema: type: array - items: *240 + items: *243 examples: - default: *564 + default: *567 '404': *6 '500': *145 x-github: @@ -82592,8 +82909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82611,7 +82928,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *568 examples: default: value: @@ -82666,20 +82983,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *275 - - *276 - - *241 - - *242 - - *243 + - *278 + - *279 - *244 - - *48 - - *19 - - *17 - - *566 - - *567 - *245 - *246 - *247 + - *48 + - *19 + - *17 + - *569 + - *570 + - *248 + - *249 + - *250 responses: '200': description: Response @@ -82687,7 +83004,7 @@ paths: application/json: schema: type: array - items: &570 + items: &573 type: object properties: number: *54 @@ -82706,8 +83023,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *568 - resolution: *569 + state: *571 + resolution: *572 resolved_at: type: string format: date-time @@ -82925,15 +83242,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: Response content: application/json: - schema: *570 + schema: *573 examples: default: value: @@ -82985,9 +83302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: true content: @@ -82995,8 +83312,8 @@ paths: schema: type: object properties: - state: *568 - resolution: *569 + state: *571 + resolution: *572 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -83014,7 +83331,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *573 examples: default: value: @@ -83089,9 +83406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 - *19 - *17 responses: @@ -83102,7 +83419,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &703 + items: &706 type: object properties: type: @@ -83461,8 +83778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -83470,14 +83787,14 @@ paths: schema: type: object properties: - reason: &572 + reason: &575 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *571 + placeholder_id: *574 required: - reason - placeholder_id @@ -83494,7 +83811,7 @@ paths: schema: type: object properties: - reason: *572 + reason: *575 expire_at: type: string format: date-time @@ -83537,8 +83854,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: - - *275 - - *276 + - *278 + - *279 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -83553,7 +83870,7 @@ paths: properties: incremental_scans: type: array - items: &573 + items: &576 description: Information on a single scan performed by secret scanning on the repository type: object @@ -83579,15 +83896,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *573 + items: *576 backfill_scans: type: array - items: *573 + items: *576 custom_pattern_backfill_scans: type: array items: allOf: - - *573 + - *576 - type: object properties: pattern_name: @@ -83657,8 +83974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *275 - - *276 + - *278 + - *279 - *48 - name: sort description: The property to sort the results by. @@ -83702,9 +84019,9 @@ paths: application/json: schema: type: array - items: *574 + items: *577 examples: - default: *575 + default: *578 '400': *14 '404': *6 x-github: @@ -83727,8 +84044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -83801,7 +84118,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 required: - login - type @@ -83888,9 +84205,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: &577 + default: &580 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -84123,8 +84440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -84228,7 +84545,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: default: value: @@ -84375,17 +84692,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '200': description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: *577 + default: *580 '403': *29 '404': *6 x-github: @@ -84409,9 +84726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 requestBody: required: true content: @@ -84484,7 +84801,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 required: - login - type @@ -84570,10 +84887,10 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: *577 - add_credit: *577 + default: *580 + add_credit: *580 '403': *29 '404': *6 '422': @@ -84611,9 +84928,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: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '202': *47 '400': *14 @@ -84640,17 +84957,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '202': description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 '400': *14 '422': *15 '403': *29 @@ -84676,8 +84993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -84776,8 +85093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -84786,7 +85103,7 @@ paths: application/json: schema: type: array - items: &578 + items: &581 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -84819,8 +85136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -84896,8 +85213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -84993,8 +85310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -85148,8 +85465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -85159,7 +85476,7 @@ paths: application/json: schema: type: array - items: *578 + items: *581 examples: default: value: @@ -85192,8 +85509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *275 - - *276 + - *278 + - *279 - name: sha in: path required: true @@ -85247,7 +85564,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *582 examples: default: value: @@ -85301,8 +85618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85314,7 +85631,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -85334,14 +85651,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &580 + schema: &583 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -85409,8 +85726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -85436,7 +85753,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -85463,8 +85780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -85484,8 +85801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85564,8 +85881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -85573,7 +85890,7 @@ paths: application/json: schema: type: array - items: &581 + items: &584 title: Tag protection description: Tag protection type: object @@ -85625,8 +85942,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -85649,7 +85966,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: default: value: @@ -85680,8 +85997,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: - - *275 - - *276 + - *278 + - *279 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -85718,8 +86035,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *275 - - *276 + - *278 + - *279 - name: ref in: path required: true @@ -85755,8 +86072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85768,7 +86085,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 headers: Link: *58 '404': *6 @@ -85788,8 +86105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 responses: @@ -85797,7 +86114,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -85809,7 +86126,7 @@ paths: required: - names examples: - default: &583 + default: &586 value: names: - octocat @@ -85832,8 +86149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -85864,9 +86181,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '404': *6 '422': *7 x-github: @@ -85887,9 +86204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *275 - - *276 - - &584 + - *278 + - *279 + - &587 name: per description: The time frame to display results for. in: query @@ -85918,7 +86235,7 @@ paths: example: 128 clones: type: array - items: &585 + items: &588 title: Traffic type: object properties: @@ -86005,8 +86322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -86096,8 +86413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -86157,9 +86474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *275 - - *276 - - *584 + - *278 + - *279 + - *587 responses: '200': description: Response @@ -86178,7 +86495,7 @@ paths: example: 3782 views: type: array - items: *585 + items: *588 required: - uniques - count @@ -86255,8 +86572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -86530,8 +86847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -86554,8 +86871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -86577,8 +86894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -86604,8 +86921,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *275 - - *276 + - *278 + - *279 - name: ref in: path required: true @@ -86697,9 +87014,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -86947,7 +87264,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &586 + text_matches: &589 title: Search Result Text Matches type: array items: @@ -87109,7 +87426,7 @@ paths: enum: - author-date - committer-date - - &587 + - &590 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 @@ -87180,7 +87497,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true comment_count: type: integer @@ -87200,7 +87517,7 @@ paths: url: type: string format: uri - verification: *458 + verification: *461 required: - author - committer @@ -87219,7 +87536,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true parents: type: array @@ -87237,7 +87554,7 @@ paths: type: number node_id: type: string - text_matches: *586 + text_matches: *589 required: - sha - node_id @@ -87419,7 +87736,7 @@ paths: - interactions - created - updated - - *587 + - *590 - *17 - *19 - name: advanced_search @@ -87546,8 +87863,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true comments: type: integer @@ -87561,7 +87878,7 @@ paths: type: string format: date-time nullable: true - text_matches: *586 + text_matches: *589 pull_request: type: object properties: @@ -87605,6 +87922,7 @@ paths: timeline_url: type: string format: uri + type: *189 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -87788,7 +88106,7 @@ paths: enum: - created - updated - - *587 + - *590 - *17 - *19 responses: @@ -87832,7 +88150,7 @@ paths: nullable: true score: type: number - text_matches: *586 + text_matches: *589 required: - id - node_id @@ -87917,7 +88235,7 @@ paths: - forks - help-wanted-issues - updated - - *587 + - *590 - *17 - *19 responses: @@ -88156,7 +88474,7 @@ paths: - admin - pull - push - text_matches: *586 + text_matches: *589 temp_clone_token: type: string allow_merge_commit: @@ -88456,7 +88774,7 @@ paths: type: string format: uri nullable: true - text_matches: *586 + text_matches: *589 related: type: array nullable: true @@ -88647,7 +88965,7 @@ paths: - followers - repositories - joined - - *587 + - *590 - *17 - *19 responses: @@ -88751,7 +89069,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *586 + text_matches: *589 blog: type: string nullable: true @@ -88830,7 +89148,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &588 + - &591 name: team_id description: The unique identifier of the team. in: path @@ -88842,9 +89160,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 x-github: githubCloudOnly: false @@ -88871,7 +89189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *588 + - *591 requestBody: required: true content: @@ -88934,16 +89252,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '201': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 '422': *15 '403': *29 @@ -88971,7 +89289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *588 + - *591 responses: '204': description: Response @@ -89002,7 +89320,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *588 + - *591 - *48 - *17 - *19 @@ -89013,9 +89331,9 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *589 + default: *592 headers: Link: *58 x-github: @@ -89044,7 +89362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *588 + - *591 requestBody: required: true content: @@ -89078,9 +89396,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: triggersNotification: true githubCloudOnly: false @@ -89107,16 +89425,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 responses: '200': description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89141,8 +89459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: false content: @@ -89165,9 +89483,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *590 + default: *593 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89192,8 +89510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 responses: '204': description: Response @@ -89222,8 +89540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *588 - - *264 + - *591 + - *267 - *48 - *17 - *19 @@ -89234,9 +89552,9 @@ paths: application/json: schema: type: array - items: *265 + items: *268 examples: - default: *591 + default: *594 headers: Link: *58 x-github: @@ -89265,8 +89583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: true content: @@ -89288,9 +89606,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: triggersNotification: true githubCloudOnly: false @@ -89317,17 +89635,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89352,9 +89670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 requestBody: required: true content: @@ -89376,9 +89694,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *592 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89403,9 +89721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 responses: '204': description: Response @@ -89434,9 +89752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 - 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. @@ -89462,9 +89780,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -89493,9 +89811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 requestBody: required: true content: @@ -89527,9 +89845,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89555,8 +89873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 - 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. @@ -89582,9 +89900,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -89613,8 +89931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: true content: @@ -89646,9 +89964,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89672,7 +89990,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -89710,7 +90028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *588 + - *591 - name: role description: Filters members returned by their role in the team. in: query @@ -89733,7 +90051,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -89761,7 +90079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89798,7 +90116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89838,7 +90156,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89875,16 +90193,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-user-is-a-team-maintainer: *593 + response-if-user-is-a-team-maintainer: *596 '404': *6 x-github: githubCloudOnly: false @@ -89917,7 +90235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 requestBody: required: false @@ -89943,9 +90261,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-users-membership-with-team-is-now-pending: *594 + response-if-users-membership-with-team-is-now-pending: *597 '403': description: Forbidden if team synchronization is set up '422': @@ -89979,7 +90297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -90008,7 +90326,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90018,9 +90336,9 @@ paths: application/json: schema: type: array - items: *273 + items: *276 examples: - default: *595 + default: *598 headers: Link: *58 '404': *6 @@ -90046,16 +90364,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *588 - - *274 + - *591 + - *277 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *596 + default: *599 '404': description: Not Found if project is not managed by this team x-github: @@ -90079,8 +90397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *588 - - *274 + - *591 + - *277 requestBody: required: false content: @@ -90147,8 +90465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *588 - - *274 + - *591 + - *277 responses: '204': description: Response @@ -90175,7 +90493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90187,7 +90505,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '404': *6 @@ -90217,15 +90535,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *597 + schema: *600 examples: alternative-response-with-extra-repository-information: value: @@ -90376,9 +90694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 requestBody: required: false content: @@ -90428,9 +90746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 responses: '204': description: Response @@ -90455,7 +90773,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90467,7 +90785,7 @@ paths: type: array items: *188 examples: - response-if-child-teams-exist: *598 + response-if-child-teams-exist: *601 headers: Link: *58 '404': *6 @@ -90500,7 +90818,7 @@ paths: application/json: schema: oneOf: - - &600 + - &603 title: Private User description: Private User type: object @@ -90703,7 +91021,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *599 + - *602 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -90856,7 +91174,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -90935,7 +91253,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '304': *37 '404': *6 '403': *29 @@ -91059,9 +91377,9 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: - default: *193 + default: *196 '304': *37 '500': *145 '401': *25 @@ -91200,17 +91518,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -91254,7 +91572,7 @@ paths: type: integer secrets: type: array - items: &601 + items: &604 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -91294,7 +91612,7 @@ paths: - visibility - selected_repositories_url examples: - default: *398 + default: *401 headers: Link: *58 x-github: @@ -91370,7 +91688,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -91516,7 +91834,7 @@ paths: type: array items: *119 examples: - default: *602 + default: *605 '401': *25 '403': *29 '404': *6 @@ -91660,15 +91978,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '304': *37 '500': *145 '401': *25 @@ -91694,7 +92012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 requestBody: required: false content: @@ -91724,9 +92042,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -91748,7 +92066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '202': *47 '304': *37 @@ -91777,13 +92095,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '202': description: Response content: application/json: - schema: &603 + schema: &606 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -91824,7 +92142,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &604 + default: &607 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -91856,7 +92174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *194 + - *197 - name: export_id in: path required: true @@ -91869,9 +92187,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: *604 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -91892,7 +92210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *194 + - *197 responses: '200': description: Response @@ -91908,9 +92226,9 @@ paths: type: integer machines: type: array - items: *605 + items: *608 examples: - default: *606 + default: *609 '304': *37 '500': *145 '401': *25 @@ -91939,7 +92257,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *194 + - *197 requestBody: required: true content: @@ -91989,13 +92307,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *286 + repository: *289 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *396 - required: *397 + properties: *399 + required: *400 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -92769,15 +93087,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '304': *37 '500': *145 '400': *14 @@ -92809,15 +93127,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '500': *145 '401': *25 '403': *29 @@ -92847,9 +93165,9 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: &619 + default: &622 value: - id: 197 name: hello_docker @@ -92950,7 +93268,7 @@ paths: application/json: schema: type: array - items: &607 + items: &610 title: Email description: Email type: object @@ -93015,9 +93333,9 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: - default: &621 + default: &624 value: - email: octocat@github.com verified: true @@ -93092,7 +93410,7 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: default: value: @@ -93202,7 +93520,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '304': *37 @@ -93235,7 +93553,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '304': *37 @@ -93348,7 +93666,7 @@ paths: application/json: schema: type: array - items: &608 + items: &611 title: GPG Key description: A unique encryption key type: object @@ -93479,7 +93797,7 @@ paths: - subkeys - revoked examples: - default: &632 + default: &635 value: - id: 3 name: Octocat's GPG Key @@ -93564,9 +93882,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: &609 + default: &612 value: id: 3 name: Octocat's GPG Key @@ -93623,7 +93941,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &610 + - &613 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -93635,9 +93953,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: *609 + default: *612 '404': *6 '304': *37 '403': *29 @@ -93660,7 +93978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *610 + - *613 responses: '204': description: Response @@ -93851,7 +94169,7 @@ paths: type: array items: *60 examples: - default: *611 + default: *614 headers: Link: *58 '404': *6 @@ -93965,7 +94283,7 @@ paths: required: true content: application/json: - schema: *469 + schema: *472 examples: default: value: @@ -94057,7 +94375,7 @@ paths: - closed - all default: open - - *189 + - *192 - name: sort description: What to sort results by. in: query @@ -94082,7 +94400,7 @@ paths: type: array items: *77 examples: - default: *190 + default: *193 headers: Link: *58 '404': *6 @@ -94115,7 +94433,7 @@ paths: application/json: schema: type: array - items: &612 + items: &615 title: Key description: Key type: object @@ -94212,9 +94530,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: &613 + default: &616 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -94247,15 +94565,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *498 + - *501 responses: '200': description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: *613 + default: *616 '404': *6 '304': *37 '403': *29 @@ -94278,7 +94596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *498 + - *501 responses: '204': description: Response @@ -94311,7 +94629,7 @@ paths: application/json: schema: type: array - items: &614 + items: &617 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -94379,7 +94697,7 @@ paths: - account - plan examples: - default: &615 + default: &618 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -94441,9 +94759,9 @@ paths: application/json: schema: type: array - items: *614 + items: *617 examples: - default: *615 + default: *618 headers: Link: *58 '304': *37 @@ -94483,7 +94801,7 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: default: value: @@ -94591,7 +94909,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -94674,7 +94992,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -94742,7 +95060,7 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: default: value: @@ -94995,7 +95313,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -95175,7 +95493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *200 + - *203 - name: exclude in: query required: false @@ -95188,7 +95506,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -95382,7 +95700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *200 + - *203 responses: '302': description: Response @@ -95408,7 +95726,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *200 + - *203 responses: '204': description: Response @@ -95437,8 +95755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *200 - - *616 + - *203 + - *619 responses: '204': description: Response @@ -95462,7 +95780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *200 + - *203 - *17 - *19 responses: @@ -95474,7 +95792,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '404': *6 @@ -95509,9 +95827,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *617 + default: *620 headers: Link: *58 '304': *37 @@ -95553,7 +95871,7 @@ paths: - docker - nuget - container - - *618 + - *621 - *19 - *17 responses: @@ -95563,10 +95881,10 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 - '400': *620 + default: *622 + '400': *623 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95586,16 +95904,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 responses: '200': description: Response content: application/json: - schema: *207 + schema: *210 examples: - default: &633 + default: &636 value: id: 40201 name: octo-name @@ -95708,8 +96026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 responses: '204': description: Response @@ -95739,8 +96057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 - name: token description: package token schema: @@ -95772,8 +96090,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: - - *209 - - *210 + - *212 + - *213 - *19 - *17 - name: state @@ -95793,7 +96111,7 @@ paths: application/json: schema: type: array - items: *211 + items: *214 examples: default: value: @@ -95842,15 +96160,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -95886,9 +96204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '204': description: Response @@ -95918,9 +96236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '204': description: Response @@ -95976,7 +96294,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -96048,9 +96366,9 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: - default: *621 + default: *624 headers: Link: *58 '304': *37 @@ -96163,7 +96481,7 @@ paths: type: array items: *60 examples: - default: &628 + default: &631 summary: Default response value: - id: 1296269 @@ -96465,9 +96783,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96505,9 +96823,9 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: *622 + default: *625 headers: Link: *58 '304': *37 @@ -96586,7 +96904,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Social account description: Social media account type: object @@ -96601,7 +96919,7 @@ paths: - provider - url examples: - default: &624 + default: &627 value: - provider: twitter url: https://twitter.com/github @@ -96663,9 +96981,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 '422': *15 '304': *37 '404': *6 @@ -96752,7 +97070,7 @@ paths: application/json: schema: type: array - items: &625 + items: &628 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -96772,7 +97090,7 @@ paths: - title - created_at examples: - default: &640 + default: &643 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96838,9 +97156,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: &626 + default: &629 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96871,7 +97189,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: - - &627 + - &630 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -96883,9 +97201,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: *626 + default: *629 '404': *6 '304': *37 '403': *29 @@ -96908,7 +97226,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: - - *627 + - *630 responses: '204': description: Response @@ -96937,7 +97255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &641 + - &644 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 @@ -96962,11 +97280,11 @@ paths: type: array items: *60 examples: - default-response: *628 + default-response: *631 application/vnd.github.v3.star+json: schema: type: array - items: &642 + items: &645 title: Starred Repository description: Starred Repository type: object @@ -97122,8 +97440,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: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response if this repository is starred by you @@ -97151,8 +97469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -97176,8 +97494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -97212,7 +97530,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '304': *37 @@ -97249,7 +97567,7 @@ paths: application/json: schema: type: array - items: *260 + items: *263 examples: default: value: @@ -97335,10 +97653,10 @@ paths: application/json: schema: oneOf: - - *600 - - *599 + - *603 + - *602 examples: - default-response: &630 + default-response: &633 summary: Default response value: login: octocat @@ -97373,7 +97691,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &631 + response-with-git-hub-plan-information: &634 summary: Response with GitHub plan information value: login: octocat @@ -97433,7 +97751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *629 + - *632 - *17 responses: '200': @@ -97444,7 +97762,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: example: ; rel="next" @@ -97482,11 +97800,11 @@ paths: application/json: schema: oneOf: - - *600 - - *599 + - *603 + - *602 examples: - default-response: *630 - response-with-git-hub-plan-information: *631 + default-response: *633 + response-with-git-hub-plan-information: *634 '404': *6 x-github: githubCloudOnly: false @@ -97562,7 +97880,7 @@ paths: bundle_url: type: string examples: - default: *337 + default: *340 '201': description: Response content: @@ -97601,9 +97919,9 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 + default: *622 '403': *29 '401': *25 x-github: @@ -97886,7 +98204,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -97917,7 +98235,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -98007,9 +98325,9 @@ paths: application/json: schema: type: array - items: *608 + items: *611 examples: - default: *632 + default: *635 headers: Link: *58 x-github: @@ -98113,7 +98431,7 @@ paths: application/json: schema: *22 examples: - default: *468 + default: *471 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98189,9 +98507,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *617 + default: *620 headers: Link: *58 x-github: @@ -98230,7 +98548,7 @@ paths: - docker - nuget - container - - *618 + - *621 - *132 - *19 - *17 @@ -98241,12 +98559,12 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 + default: *622 '403': *29 '401': *25 - '400': *620 + '400': *623 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98266,17 +98584,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 responses: '200': description: Response content: application/json: - schema: *207 + schema: *210 examples: - default: *633 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98297,8 +98615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 responses: '204': @@ -98331,8 +98649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 - name: token description: package token @@ -98365,8 +98683,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: - - *209 - - *210 + - *212 + - *213 - *132 responses: '200': @@ -98375,7 +98693,7 @@ paths: application/json: schema: type: array - items: *211 + items: *214 examples: default: value: @@ -98433,16 +98751,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 - *132 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -98477,10 +98795,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *209 - - *210 - - *132 - *212 + - *213 + - *132 + - *215 responses: '204': description: Response @@ -98512,10 +98830,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *209 - - *210 - - *132 - *212 + - *213 + - *132 + - *215 responses: '204': description: Response @@ -98562,7 +98880,7 @@ paths: application/json: schema: type: array - items: *223 + items: *226 examples: default: value: @@ -98845,7 +99163,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -98875,9 +99193,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *637 examples: - default: *635 + default: *638 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98905,9 +99223,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *637 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98935,9 +99253,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *641 examples: - default: *639 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98965,9 +99283,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 headers: Link: *58 x-github: @@ -98997,9 +99315,9 @@ paths: application/json: schema: type: array - items: *625 + items: *628 examples: - default: *640 + default: *643 headers: Link: *58 x-github: @@ -99024,7 +99342,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *132 - - *641 + - *644 - *48 - *17 - *19 @@ -99036,11 +99354,11 @@ paths: schema: anyOf: - type: array - items: *642 + items: *645 - type: array items: *60 examples: - default-response: *628 + default-response: *631 headers: Link: *58 x-github: @@ -99071,7 +99389,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -99199,7 +99517,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &643 + enterprise: &646 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -99257,7 +99575,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &644 + installation: &647 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -99276,7 +99594,7 @@ x-webhooks: required: - id - node_id - organization: &645 + organization: &648 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -99336,13 +99654,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &646 + repository: &649 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &676 + properties: &679 id: description: Unique identifier of the repository example: 42 @@ -100025,7 +100343,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &677 + required: &680 - archive_url - assignees_url - blobs_url @@ -100176,10 +100494,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -100255,11 +100573,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: &647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: &650 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) @@ -100482,11 +100800,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: *647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: *650 sender: *4 required: - action @@ -100669,11 +100987,11 @@ x-webhooks: - everyone required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: *647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: *650 sender: *4 required: - action @@ -100757,7 +101075,7 @@ x-webhooks: type: string enum: - completed - check_run: &649 + check_run: &652 title: CheckRun description: A check performed on the code of a given code change type: object @@ -100820,7 +101138,7 @@ x-webhooks: type: string pull_requests: type: array - items: *354 + items: *357 repository: *119 status: example: completed @@ -100858,7 +101176,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *648 + deployment: *651 details_url: example: https://example.com type: string @@ -100908,7 +101226,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *354 + items: *357 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -100943,9 +101261,9 @@ x-webhooks: - output - app - pull_requests - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -101338,10 +101656,10 @@ x-webhooks: type: string enum: - created - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -101737,10 +102055,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 requested_action: description: The action requested by the user. type: object @@ -102145,10 +102463,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -103125,10 +103443,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -103798,10 +104116,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -104465,10 +104783,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -104631,7 +104949,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -104776,20 +105094,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &650 + commit_oid: &653 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: *643 - installation: *644 - organization: *645 - ref: &651 + enterprise: *646 + installation: *647 + organization: *648 + ref: &654 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: *646 + repository: *649 sender: *4 required: - action @@ -104951,7 +105269,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -105181,12 +105499,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105281,7 +105599,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -105449,12 +105767,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105617,7 +105935,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -105783,12 +106101,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105885,7 +106203,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106053,16 +106371,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *646 + repository: *649 sender: *4 required: - action @@ -106156,7 +106474,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106296,12 +106614,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -106558,10 +106876,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -106641,18 +106959,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *645 - pusher_type: &652 + organization: *648 + pusher_type: &655 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &653 + ref: &656 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -106662,7 +106980,7 @@ x-webhooks: enum: - tag - branch - repository: *646 + repository: *649 sender: *4 required: - ref @@ -106744,10 +107062,10 @@ x-webhooks: type: string enum: - created - definition: *224 - enterprise: *643 - installation: *644 - organization: *645 + definition: *227 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106832,9 +107150,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106911,10 +107229,10 @@ x-webhooks: type: string enum: - updated - definition: *224 - enterprise: *643 - installation: *644 - organization: *645 + definition: *227 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106991,19 +107309,19 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - repository: *646 - organization: *645 + enterprise: *646 + installation: *647 + repository: *649 + organization: *648 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *228 + items: *231 old_property_values: type: array description: The old custom property values for the repository. - items: *228 + items: *231 required: - action - repository @@ -107079,18 +107397,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - pusher_type: *652 - ref: *653 + enterprise: *646 + installation: *647 + organization: *648 + pusher_type: *655 + ref: *656 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *646 + repository: *649 sender: *4 required: - ref @@ -107174,11 +107492,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107262,11 +107580,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107350,11 +107668,11 @@ x-webhooks: type: string enum: - created - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107436,11 +107754,11 @@ x-webhooks: type: string enum: - dismissed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107522,11 +107840,11 @@ x-webhooks: type: string enum: - fixed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107609,11 +107927,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107695,11 +108013,11 @@ x-webhooks: type: string enum: - reopened - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107776,9 +108094,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - key: &654 + enterprise: *646 + installation: *647 + key: &657 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -107814,8 +108132,8 @@ x-webhooks: - verified - created_at - read_only - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -107892,11 +108210,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - key: *654 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + key: *657 + organization: *648 + repository: *649 sender: *4 required: - action @@ -108457,12 +108775,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: &658 + workflow: &661 title: Workflow type: object nullable: true @@ -109188,13 +109506,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *433 + deployment: *436 pull_requests: type: array - items: *518 - repository: *646 - organization: *645 - installation: *644 + items: *521 + repository: *649 + organization: *648 + installation: *647 sender: *4 responses: '200': @@ -109265,7 +109583,7 @@ x-webhooks: type: string enum: - approved - approver: &655 + approver: &658 type: object properties: avatar_url: @@ -109308,11 +109626,11 @@ x-webhooks: type: string comment: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - reviewers: &656 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + reviewers: &659 type: array items: type: object @@ -109391,7 +109709,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &657 + workflow_job_run: &660 type: object properties: conclusion: @@ -110122,18 +110440,18 @@ x-webhooks: type: string enum: - rejected - approver: *655 + approver: *658 comment: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - reviewers: *656 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + reviewers: *659 sender: *4 since: type: string - workflow_job_run: *657 + workflow_job_run: *660 workflow_job_runs: type: array items: @@ -110837,13 +111155,13 @@ x-webhooks: type: string enum: - requested - enterprise: *643 + enterprise: *646 environment: type: string - installation: *644 - organization: *645 - repository: *646 - requestor: &663 + installation: *647 + organization: *648 + repository: *649 + requestor: &666 title: User type: object nullable: true @@ -112742,12 +113060,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Deployment Workflow Run type: object @@ -113427,7 +113745,7 @@ x-webhooks: type: string enum: - answered - answer: &661 + answer: &664 type: object properties: author_association: @@ -113584,7 +113902,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &659 + discussion: &662 title: Discussion description: A Discussion in a repository. type: object @@ -113870,7 +114188,7 @@ x-webhooks: - id labels: type: array - items: *480 + items: *483 required: - repository_url - category @@ -113892,10 +114210,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114022,11 +114340,11 @@ x-webhooks: - from required: - category - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114109,11 +114427,11 @@ x-webhooks: type: string enum: - closed - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114195,7 +114513,7 @@ x-webhooks: type: string enum: - created - comment: &660 + comment: &663 type: object properties: author_association: @@ -114352,11 +114670,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114439,12 +114757,12 @@ x-webhooks: type: string enum: - deleted - comment: *660 - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + comment: *663 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114539,12 +114857,12 @@ x-webhooks: - from required: - body - comment: *660 - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + comment: *663 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114628,11 +114946,11 @@ x-webhooks: type: string enum: - created - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114714,11 +115032,11 @@ x-webhooks: type: string enum: - deleted - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114818,11 +115136,11 @@ x-webhooks: type: string required: - from - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114904,10 +115222,10 @@ x-webhooks: type: string enum: - labeled - discussion: *659 - enterprise: *643 - installation: *644 - label: &662 + discussion: *662 + enterprise: *646 + installation: *647 + label: &665 title: Label type: object properties: @@ -114939,8 +115257,8 @@ x-webhooks: - color - default - description - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115023,11 +115341,11 @@ x-webhooks: type: string enum: - locked - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115109,11 +115427,11 @@ x-webhooks: type: string enum: - pinned - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115195,11 +115513,11 @@ x-webhooks: type: string enum: - reopened - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115284,16 +115602,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *659 - new_repository: *646 + new_discussion: *662 + new_repository: *649 required: - new_discussion - new_repository - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115376,10 +115694,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *659 - old_answer: *661 - organization: *645 - repository: *646 + discussion: *662 + old_answer: *664 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115461,12 +115779,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *659 - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115549,11 +115867,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115635,11 +115953,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115712,7 +116030,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *643 + enterprise: *646 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -116372,9 +116690,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - forkee @@ -116520,9 +116838,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pages: description: The pages that were updated. type: array @@ -116559,7 +116877,7 @@ x-webhooks: - action - sha - html_url - repository: *646 + repository: *649 sender: *4 required: - pages @@ -116635,10 +116953,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: &664 + organization: *648 + repositories: &667 description: An array of repository objects that the installation can access. type: array @@ -116664,8 +116982,8 @@ x-webhooks: - name - full_name - private - repository: *646 - requester: *663 + repository: *649 + requester: *666 sender: *4 required: - action @@ -116740,11 +117058,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -116820,11 +117138,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -116900,10 +117218,10 @@ x-webhooks: type: string enum: - added - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories_added: &665 + organization: *648 + repositories_added: &668 description: An array of repository objects, which were added to the installation. type: array @@ -116949,15 +117267,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *646 - repository_selection: &666 + repository: *649 + repository_selection: &669 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *663 + requester: *666 sender: *4 required: - action @@ -117036,10 +117354,10 @@ x-webhooks: type: string enum: - removed - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories_added: *665 + organization: *648 + repositories_added: *668 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -117066,9 +117384,9 @@ x-webhooks: - name - full_name - private - repository: *646 - repository_selection: *666 - requester: *663 + repository: *649 + repository_selection: *669 + requester: *666 sender: *4 required: - action @@ -117147,11 +117465,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -117329,10 +117647,10 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 target_type: type: string @@ -117411,11 +117729,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -117667,8 +117985,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -118491,6 +118809,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -118823,8 +119142,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -118904,7 +119223,7 @@ x-webhooks: type: string enum: - deleted - comment: &667 + comment: &670 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -119069,8 +119388,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -119889,6 +120208,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -120223,8 +120543,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -120304,7 +120624,7 @@ x-webhooks: type: string enum: - edited - changes: &695 + changes: &698 description: The changes to the comment. type: object properties: @@ -120316,9 +120636,9 @@ x-webhooks: type: string required: - from - comment: *667 - enterprise: *643 - installation: *644 + comment: *670 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121140,6 +121460,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -121472,8 +121793,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -121555,10 +121876,10 @@ x-webhooks: type: string enum: - assigned - assignee: *663 - enterprise: *643 - installation: *644 - issue: &670 + assignee: *666 + enterprise: *646 + installation: *647 + issue: &673 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -122376,6 +122697,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -122476,8 +122798,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -122557,8 +122879,8 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -123381,6 +123703,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -123616,8 +123939,8 @@ x-webhooks: required: - state - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -123696,8 +124019,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124509,6 +124832,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -124608,8 +124932,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -124688,8 +125012,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125525,6 +125849,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -125603,7 +125928,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &668 + milestone: &671 title: Milestone description: A collection of related issues and pull requests. type: object @@ -125741,8 +126066,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -125841,8 +126166,8 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126657,6 +126982,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -126760,9 +127086,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *662 - organization: *645 - repository: *646 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -126842,8 +127168,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127657,6 +127983,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -127760,9 +128087,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *662 - organization: *645 - repository: *646 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -127842,8 +128169,8 @@ x-webhooks: type: string enum: - locked - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128681,6 +129008,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -128761,8 +129089,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -128841,8 +129169,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129677,6 +130005,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -129754,9 +130083,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *668 - organization: *645 - repository: *646 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -131217,8 +131546,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132036,6 +132365,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -132135,8 +132465,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -132216,9 +132546,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *643 - installation: *644 - issue: &669 + enterprise: *646 + installation: *647 + issue: &672 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133030,6 +133360,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -133129,8 +133460,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -133209,8 +133540,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134127,8 +134458,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + type: *189 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135023,6 +135355,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -135590,11 +135923,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *643 - installation: *644 - issue: *669 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *672 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135675,7 +136008,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &698 + assignee: &701 title: User type: object nullable: true @@ -135745,11 +136078,11 @@ x-webhooks: required: - login - id - enterprise: *643 - installation: *644 - issue: *670 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *673 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135828,12 +136161,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *643 - installation: *644 - issue: *670 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *673 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135913,8 +136246,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136753,6 +137086,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -136830,8 +137164,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -136911,11 +137245,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *643 - installation: *644 - issue: *669 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *672 + organization: *648 + repository: *649 sender: *4 required: - action @@ -136994,11 +137328,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137076,11 +137410,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137190,11 +137524,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137276,9 +137610,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: &671 + enterprise: *646 + installation: *647 + marketplace_purchase: &674 title: Marketplace Purchase type: object required: @@ -137361,8 +137695,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *645 - previous_marketplace_purchase: &672 + organization: *648 + previous_marketplace_purchase: &675 title: Marketplace Purchase type: object properties: @@ -137442,7 +137776,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137522,10 +137856,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137608,7 +137942,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137690,10 +138024,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137775,7 +138109,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137856,8 +138190,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 marketplace_purchase: title: Marketplace Purchase type: object @@ -137939,9 +138273,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *645 - previous_marketplace_purchase: *672 - repository: *646 + organization: *648 + previous_marketplace_purchase: *675 + repository: *649 sender: *4 required: - action @@ -138021,12 +138355,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 - previous_marketplace_purchase: *672 - repository: *646 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 + previous_marketplace_purchase: *675 + repository: *649 sender: *4 required: - action @@ -138128,11 +138462,11 @@ x-webhooks: type: string required: - to - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138232,11 +138566,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138315,11 +138649,11 @@ x-webhooks: type: string enum: - removed - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138397,11 +138731,11 @@ x-webhooks: type: string enum: - added - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138477,7 +138811,7 @@ x-webhooks: required: - login - id - team: &673 + team: &676 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138667,11 +139001,11 @@ x-webhooks: type: string enum: - removed - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138748,7 +139082,7 @@ x-webhooks: required: - login - id - team: *673 + team: *676 required: - action - scope @@ -138830,8 +139164,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *644 - merge_group: &675 + installation: *647 + merge_group: &678 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -138850,15 +139184,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *674 + head_commit: *677 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138944,10 +139278,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *644 - merge_group: *675 - organization: *645 - repository: *646 + installation: *647 + merge_group: *678 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139020,7 +139354,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 + enterprise: *646 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -139128,16 +139462,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *644 - organization: *645 + installation: *647 + organization: *648 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -139218,11 +139552,11 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139301,9 +139635,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - milestone: &678 + enterprise: *646 + installation: *647 + milestone: &681 title: Milestone description: A collection of related issues and pull requests. type: object @@ -139440,8 +139774,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139520,11 +139854,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139634,11 +139968,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139718,11 +140052,11 @@ x-webhooks: type: string enum: - opened - enterprise: *643 - installation: *644 - milestone: *678 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *681 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139801,11 +140135,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *663 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + blocked_user: *666 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139884,11 +140218,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *663 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + blocked_user: *666 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139967,9 +140301,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - membership: &679 + enterprise: *646 + installation: *647 + membership: &682 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -140061,8 +140395,8 @@ x-webhooks: - role - organization_url - user - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140140,11 +140474,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140223,8 +140557,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -140340,10 +140674,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 - user: *663 + user: *666 required: - action - invitation @@ -140421,11 +140755,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140512,11 +140846,11 @@ x-webhooks: properties: from: type: string - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140592,9 +140926,9 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 package: description: Information about the package. type: object @@ -141093,7 +141427,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &680 + items: &683 title: Ruby Gems metadata type: object properties: @@ -141188,7 +141522,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -141264,9 +141598,9 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 package: description: Information about the package. type: object @@ -141619,7 +141953,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *680 + items: *683 source_url: type: string format: uri @@ -141689,7 +142023,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -141866,12 +142200,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *643 + enterprise: *646 id: type: integer - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - id @@ -141951,7 +142285,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &681 + personal_access_token_request: &684 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -142097,10 +142431,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *643 - organization: *645 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142179,11 +142513,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *681 - enterprise: *643 - organization: *645 + personal_access_token_request: *684 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142261,11 +142595,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *681 - enterprise: *643 - organization: *645 + personal_access_token_request: *684 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142342,11 +142676,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *681 - organization: *645 - enterprise: *643 + personal_access_token_request: *684 + organization: *648 + enterprise: *646 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142450,7 +142784,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *682 + last_response: *685 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -142482,8 +142816,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 zen: description: Random string of GitHub zen. @@ -142728,10 +143062,10 @@ x-webhooks: - from required: - note - enterprise: *643 - installation: *644 - organization: *645 - project_card: &683 + enterprise: *646 + installation: *647 + organization: *648 + project_card: &686 title: Project Card type: object properties: @@ -142850,7 +143184,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -142931,11 +143265,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project_card: *683 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_card: *686 + repository: *649 sender: *4 required: - action @@ -143015,9 +143349,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 project_card: title: Project Card type: object @@ -143145,8 +143479,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -143240,11 +143574,11 @@ x-webhooks: - from required: - note - enterprise: *643 - installation: *644 - organization: *645 - project_card: *683 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_card: *686 + repository: *649 sender: *4 required: - action @@ -143338,9 +143672,9 @@ x-webhooks: - from required: - column_id - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 project_card: allOf: - title: Project Card @@ -143530,7 +143864,7 @@ x-webhooks: type: string required: - after_id - repository: *646 + repository: *649 sender: *4 required: - action @@ -143610,10 +143944,10 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - organization: *645 - project: &685 + enterprise: *646 + installation: *647 + organization: *648 + project: &688 title: Project type: object properties: @@ -143737,7 +144071,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -143817,10 +144151,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project_column: &684 + enterprise: *646 + installation: *647 + organization: *648 + project_column: &687 title: Project Column type: object properties: @@ -143859,7 +144193,7 @@ x-webhooks: - name - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -143938,18 +144272,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -144039,11 +144373,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 + repository: *649 sender: *4 required: - action @@ -144123,11 +144457,11 @@ x-webhooks: type: string enum: - moved - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 + repository: *649 sender: *4 required: - action @@ -144207,11 +144541,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144291,18 +144625,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - project: *685 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -144404,11 +144738,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144487,11 +144821,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144572,9 +144906,9 @@ x-webhooks: type: string enum: - closed - installation: *644 - organization: *645 - projects_v2: &686 + installation: *647 + organization: *648 + projects_v2: &689 title: Projects v2 Project description: A projects v2 project type: object @@ -144717,9 +145051,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -144800,9 +145134,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -144919,9 +145253,9 @@ x-webhooks: type: string to: type: string - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -145004,7 +145338,7 @@ x-webhooks: type: string enum: - archived - changes: &690 + changes: &693 type: object properties: archived_at: @@ -145018,9 +145352,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *644 - organization: *645 - projects_v2_item: &687 + installation: *647 + organization: *648 + projects_v2_item: &690 title: Projects v2 Item description: An item belonging to a project type: object @@ -145154,9 +145488,9 @@ x-webhooks: nullable: true to: type: string - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145238,9 +145572,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145321,9 +145655,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145429,7 +145763,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &688 + - &691 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -145447,7 +145781,7 @@ x-webhooks: required: - id - name - - &689 + - &692 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -145470,8 +145804,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *688 - - *689 + - *691 + - *692 required: - field_value - type: object @@ -145487,9 +145821,9 @@ x-webhooks: nullable: true required: - body - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145584,9 +145918,9 @@ x-webhooks: to: type: string nullable: true - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145669,10 +146003,10 @@ x-webhooks: type: string enum: - restored - changes: *690 - installation: *644 - organization: *645 - projects_v2_item: *687 + changes: *693 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145754,9 +146088,9 @@ x-webhooks: type: string enum: - reopened - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -145837,9 +146171,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2_status_update: &691 + installation: *647 + organization: *648 + projects_v2_status_update: &694 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -145966,9 +146300,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2_status_update: *691 + installation: *647 + organization: *648 + projects_v2_status_update: *694 sender: *4 required: - action @@ -146104,9 +146438,9 @@ x-webhooks: type: string format: date nullable: true - installation: *644 - organization: *645 - projects_v2_status_update: *691 + installation: *647 + organization: *648 + projects_v2_status_update: *694 sender: *4 required: - action @@ -146177,10 +146511,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - repository @@ -146257,13 +146591,13 @@ x-webhooks: type: string enum: - assigned - assignee: *663 - enterprise: *643 - installation: *644 - number: &692 + assignee: *666 + enterprise: *646 + installation: *647 + number: &695 description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -148546,7 +148880,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -148628,11 +148962,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -150910,7 +151244,7 @@ x-webhooks: - draft reason: type: string - repository: *646 + repository: *649 sender: *4 required: - action @@ -150992,11 +151326,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -153274,7 +153608,7 @@ x-webhooks: - draft reason: type: string - repository: *646 + repository: *649 sender: *4 required: - action @@ -153356,13 +153690,13 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: &693 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: &696 allOf: - - *518 + - *521 - type: object properties: allow_auto_merge: @@ -153424,7 +153758,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *646 + repository: *649 sender: *4 required: - action @@ -153505,12 +153839,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -153590,11 +153924,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *643 - milestone: *501 - number: *692 - organization: *645 - pull_request: &694 + enterprise: *646 + milestone: *504 + number: *695 + organization: *648 + pull_request: &697 title: Pull Request type: object properties: @@ -155857,7 +156191,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -155936,11 +156270,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -158222,7 +158556,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *646 + repository: *649 sender: *4 required: - action @@ -158346,12 +158680,12 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -158431,11 +158765,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -160702,7 +161036,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -160782,11 +161116,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *643 - installation: *644 - label: *662 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + label: *665 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -163068,7 +163402,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -163149,10 +163483,10 @@ x-webhooks: type: string enum: - locked - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -165432,7 +165766,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -165512,12 +165846,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *643 - milestone: *501 - number: *692 - organization: *645 - pull_request: *694 - repository: *646 + enterprise: *646 + milestone: *504 + number: *695 + organization: *648 + pull_request: *697 + repository: *649 sender: *4 required: - action @@ -165596,12 +165930,12 @@ x-webhooks: type: string enum: - opened - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -165682,12 +166016,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -165767,12 +166101,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -166138,9 +166472,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -168310,7 +168644,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -168390,7 +168724,7 @@ x-webhooks: type: string enum: - deleted - comment: &696 + comment: &699 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -168675,9 +169009,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -170835,7 +171169,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -170915,11 +171249,11 @@ x-webhooks: type: string enum: - edited - changes: *695 - comment: *696 - enterprise: *643 - installation: *644 - organization: *645 + changes: *698 + comment: *699 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -173080,7 +173414,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -173161,9 +173495,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -175336,7 +175670,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 review: description: The review that was affected. type: object @@ -175579,9 +175913,9 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -177635,8 +177969,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 - review: &697 + repository: *649 + review: &700 description: The review that was affected. type: object properties: @@ -177865,12 +178199,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -180153,7 +180487,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_reviewer: title: User type: object @@ -180237,12 +180571,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -182532,7 +182866,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_team: title: Team description: Groups of organization members that gives permissions @@ -182724,12 +183058,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -185014,7 +185348,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_reviewer: title: User type: object @@ -185099,12 +185433,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -187380,7 +187714,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_team: title: Team description: Groups of organization members that gives permissions @@ -187561,9 +187895,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -189738,8 +190072,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 - review: *697 + repository: *649 + review: *700 sender: *4 required: - action @@ -189819,9 +190153,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -191891,7 +192225,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 sender: *4 thread: type: object @@ -192274,9 +192608,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -194332,7 +194666,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 sender: *4 thread: type: object @@ -194718,10 +195052,10 @@ x-webhooks: type: string before: type: string - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -196992,7 +197326,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -197074,11 +197408,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *698 - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + assignee: *701 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -199361,7 +199695,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -199440,11 +199774,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *643 - installation: *644 - label: *662 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + label: *665 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -201717,7 +202051,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -201798,10 +202132,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -204066,7 +204400,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -204266,7 +204600,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *643 + enterprise: *646 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -204358,8 +204692,8 @@ x-webhooks: - url - author - committer - installation: *644 - organization: *645 + installation: *647 + organization: *648 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -204934,9 +205268,9 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 registry_package: type: object properties: @@ -205382,7 +205716,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *680 + items: *683 summary: type: string tag_name: @@ -205436,7 +205770,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -205514,9 +205848,9 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 registry_package: type: object properties: @@ -205824,7 +206158,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *680 + items: *683 summary: type: string tag_name: @@ -205873,7 +206207,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -205950,10 +206284,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - release: &699 + enterprise: *646 + installation: *647 + organization: *648 + release: &702 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -206258,7 +206592,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *646 + repository: *649 sender: *4 required: - action @@ -206335,11 +206669,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -206456,11 +206790,11 @@ x-webhooks: type: boolean required: - to - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -206538,9 +206872,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -206849,7 +207183,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *646 + repository: *649 sender: *4 required: - action @@ -206925,10 +207259,10 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - release: &700 + enterprise: *646 + installation: *647 + organization: *648 + release: &703 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -207234,7 +207568,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *646 + repository: *649 sender: *4 required: - action @@ -207310,11 +207644,11 @@ x-webhooks: type: string enum: - released - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -207390,11 +207724,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *643 - installation: *644 - organization: *645 - release: *700 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *703 + repository: *649 sender: *4 required: - action @@ -207470,11 +207804,11 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_advisory: *574 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_advisory: *577 sender: *4 required: - action @@ -207550,11 +207884,11 @@ x-webhooks: type: string enum: - reported - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_advisory: *574 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_advisory: *577 sender: *4 required: - action @@ -207630,10 +207964,10 @@ x-webhooks: type: string enum: - archived - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207710,10 +208044,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207791,10 +208125,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207878,10 +208212,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207993,10 +208327,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208068,10 +208402,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 status: type: string @@ -208152,10 +208486,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208232,10 +208566,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208329,10 +208663,10 @@ x-webhooks: - name required: - repository - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208412,11 +208746,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 sender: *4 required: - action @@ -208494,11 +208828,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 sender: *4 required: - action @@ -208576,11 +208910,11 @@ x-webhooks: type: string enum: - edited - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 changes: type: object properties: @@ -208599,16 +208933,16 @@ x-webhooks: properties: added: type: array - items: *232 + items: *235 deleted: type: array - items: *232 + items: *235 updated: type: array items: type: object properties: - condition: *232 + condition: *235 changes: type: object properties: @@ -208641,16 +208975,16 @@ x-webhooks: properties: added: type: array - items: *237 + items: *240 deleted: type: array - items: *237 + items: *240 updated: type: array items: type: object properties: - rule: *237 + rule: *240 changes: type: object properties: @@ -208884,10 +209218,10 @@ x-webhooks: - from required: - owner - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208965,10 +209299,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209046,7 +209380,7 @@ x-webhooks: type: string enum: - create - alert: &701 + alert: &704 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -209167,10 +209501,10 @@ x-webhooks: type: string enum: - open - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209376,10 +209710,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209457,11 +209791,11 @@ x-webhooks: type: string enum: - reopen - alert: *701 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209660,10 +209994,10 @@ x-webhooks: enum: - fixed - open - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209741,7 +210075,7 @@ x-webhooks: type: string enum: - created - alert: &702 + alert: &705 type: object properties: number: *54 @@ -209852,10 +210186,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209936,11 +210270,11 @@ x-webhooks: type: string enum: - created - alert: *702 - installation: *644 - location: *703 - organization: *645 - repository: *646 + alert: *705 + installation: *647 + location: *706 + organization: *648 + repository: *649 sender: *4 required: - location @@ -210178,11 +210512,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210260,11 +210594,11 @@ x-webhooks: type: string enum: - reopened - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210342,11 +210676,11 @@ x-webhooks: type: string enum: - resolved - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210424,11 +210758,11 @@ x-webhooks: type: string enum: - validated - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210554,10 +210888,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *646 - enterprise: *643 - installation: *644 - organization: *645 + repository: *649 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -210635,11 +210969,11 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - security_advisory: &704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + security_advisory: &707 description: The details of the security advisory, including summary, description, and severity. type: object @@ -210822,11 +211156,11 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - security_advisory: *704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + security_advisory: *707 sender: *4 required: - action @@ -210899,10 +211233,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -211086,11 +211420,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *231 - enterprise: *643 - installation: *644 - organization: *645 - repository: *286 + security_and_analysis: *234 + enterprise: *646 + installation: *647 + organization: *648 + repository: *289 sender: *4 required: - changes @@ -211168,12 +211502,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: &705 + sponsorship: &708 type: object properties: created_at: @@ -211474,12 +211808,12 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - sponsorship @@ -211567,12 +211901,12 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211649,17 +211983,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &706 + effective_date: &709 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: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - sponsorship @@ -211733,7 +212067,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &707 + changes: &710 type: object properties: tier: @@ -211777,13 +212111,13 @@ x-webhooks: - from required: - tier - effective_date: *706 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + effective_date: *709 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211860,13 +212194,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *707 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + changes: *710 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211940,10 +212274,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -212026,10 +212360,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -212449,15 +212783,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *643 + enterprise: *646 id: description: The unique identifier of the status. type: integer - installation: *644 + installation: *647 name: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 sha: description: The Commit SHA. @@ -212572,9 +212906,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212664,9 +212998,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212756,9 +213090,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212848,9 +213182,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212927,12 +213261,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - team: &708 + team: &711 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -213122,9 +213456,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -213582,7 +213916,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -213658,9 +213992,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -214118,7 +214452,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -214195,9 +214529,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -214655,7 +214989,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -214799,9 +215133,9 @@ x-webhooks: - from required: - permissions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -215259,7 +215593,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - changes @@ -215337,9 +215671,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -215797,7 +216131,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -215873,10 +216207,10 @@ x-webhooks: type: string enum: - started - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -215949,16 +216283,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *643 + enterprise: *646 inputs: type: object nullable: true additionalProperties: true - installation: *644 - organization: *645 + installation: *647 + organization: *648 ref: type: string - repository: *646 + repository: *649 sender: *4 workflow: type: string @@ -216040,10 +216374,10 @@ x-webhooks: type: string enum: - completed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: allOf: @@ -216280,7 +216614,7 @@ x-webhooks: type: string required: - conclusion - deployment: *433 + deployment: *436 required: - action - repository @@ -216359,10 +216693,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: allOf: @@ -216622,7 +216956,7 @@ x-webhooks: required: - status - steps - deployment: *433 + deployment: *436 required: - action - repository @@ -216701,10 +217035,10 @@ x-webhooks: type: string enum: - queued - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: type: object @@ -216839,7 +217173,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *433 + deployment: *436 required: - action - repository @@ -216918,10 +217252,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: type: object @@ -217057,7 +217391,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *433 + deployment: *436 required: - action - repository @@ -217137,12 +217471,12 @@ x-webhooks: type: string enum: - completed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object @@ -218141,12 +218475,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object @@ -219130,12 +219464,12 @@ x-webhooks: type: string enum: - requested - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index f1f0421034..f43e39eb43 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -4746,7 +4746,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" @@ -5686,7 +5686,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" @@ -6484,7 +6484,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" @@ -6913,7 +6913,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" @@ -8885,7 +8885,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" @@ -9880,7 +9880,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" @@ -10792,7 +10792,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" @@ -11415,7 +11415,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" @@ -24271,6 +24271,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -39352,6 +39412,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -45068,6 +45188,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -82804,6 +82984,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -88860,7 +89100,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" @@ -89815,7 +90055,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" @@ -91640,25 +91880,932 @@ } }, "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", + "nullable": true + }, + "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", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "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", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": [ { @@ -91671,243 +92818,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", - "nullable": true - }, - "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", - "example": "https://github.com/orgs/rails/teams/core" - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "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", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", - "type": "string" - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ], - "nullable": true - } + "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": { @@ -91941,7 +92892,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -92009,6 +92960,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.", @@ -92992,6 +93952,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -116260,7 +117280,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" ], @@ -116888,6 +117908,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -270633,6 +271663,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -285988,7 +287078,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" @@ -289396,6 +290486,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.", @@ -290406,6 +291505,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -291966,6 +293125,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -292913,6 +294078,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -298899,6 +300124,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -302572,6 +303857,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -306121,6 +307466,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -307660,6 +309065,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -308605,6 +310016,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -311115,6 +312586,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -313428,6 +314959,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -329101,6 +330692,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -331503,6 +333154,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -333881,6 +335592,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -336358,6 +338129,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -347024,6 +348855,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -446251,6 +448142,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -484402,7 +486353,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" @@ -487659,6 +489610,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -516358,6 +518369,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -519292,6 +521363,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -522228,6 +524359,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -525939,7 +528130,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" @@ -531481,6 +533672,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -534417,6 +536668,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -676480,7 +678791,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" @@ -679027,7 +681338,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" @@ -681481,7 +683792,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" @@ -683935,7 +686246,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" @@ -686521,7 +688832,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" @@ -689114,7 +691425,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" @@ -693330,7 +695641,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" @@ -697139,6 +699450,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -700833,6 +703204,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -704551,6 +706982,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -707806,6 +710297,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -710636,6 +713187,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -713655,6 +716266,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -716495,6 +719166,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -719504,6 +722235,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -722368,6 +725159,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -725258,6 +728109,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -728078,6 +730989,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -732884,6 +735855,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -735702,6 +738733,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -738650,6 +741741,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -741255,6 +744406,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -743164,6 +746375,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -746086,6 +749357,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -748911,6 +752242,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -751799,6 +755190,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -754594,6 +758045,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -1101827,6 +1105338,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1104615,6 +1108186,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1108231,6 +1111862,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1111019,6 +1114710,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1114635,6 +1118386,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1117423,6 +1121234,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1121039,6 +1124910,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1123827,6 +1127758,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index d8a92b554a..eb3bd07046 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -847,7 +847,7 @@ paths: - subscriptions_url - type - url - type: &250 + type: &253 type: string description: The type of credit the user is receiving. enum: @@ -1013,7 +1013,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &576 + - &579 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -2226,7 +2226,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 @@ -2841,7 +2841,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &229 + properties: &232 id: description: Unique identifier of the repository example: 42 @@ -3270,7 +3270,7 @@ paths: type: boolean description: Whether anonymous git access is enabled for this repository - required: &230 + required: &233 - archive_url - assignees_url - blobs_url @@ -8578,7 +8578,7 @@ paths: - unknown - direct - transitive - security_advisory: &425 + security_advisory: &428 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8840,7 +8840,7 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &426 + auto_dismissed_at: &429 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9213,7 +9213,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &241 + - &244 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9224,7 +9224,7 @@ paths: enum: - open - resolved - - &242 + - &245 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9234,7 +9234,7 @@ paths: required: false schema: type: string - - &243 + - &246 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9243,7 +9243,7 @@ paths: required: false schema: type: string - - &244 + - &247 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. @@ -9259,7 +9259,7 @@ paths: - *17 - *39 - *40 - - &245 + - &248 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9268,7 +9268,7 @@ paths: required: false schema: type: string - - &246 + - &249 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9277,7 +9277,7 @@ paths: schema: type: boolean default: false - - &247 + - &250 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9293,7 +9293,7 @@ paths: application/json: schema: type: array - items: &248 + items: &251 type: object properties: number: *54 @@ -9312,14 +9312,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &568 + state: &571 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: &569 + resolution: &572 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -9421,7 +9421,7 @@ paths: is base64 encoded nullable: true examples: - default: &249 + default: &252 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -9757,7 +9757,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &474 + properties: &477 id: type: integer format: int64 @@ -9868,7 +9868,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &410 + properties: &413 url: type: string format: uri @@ -9938,7 +9938,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &411 + required: &414 - closed_issues - creator - description @@ -10017,6 +10017,55 @@ paths: timeline_url: type: string format: uri + type: &189 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *60 performed_via_github_app: title: GitHub app @@ -10093,7 +10142,7 @@ paths: - total - completed - percent_completed - required: &475 + required: &478 - assignee - closed_at - comments @@ -10115,7 +10164,7 @@ paths: - author_association - created_at - updated_at - comment: &472 + comment: &475 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -10682,7 +10731,7 @@ paths: url: type: string format: uri - user: &599 + user: &602 title: Public User description: Public User type: object @@ -12552,7 +12601,7 @@ paths: - closed - all default: open - - &189 + - &192 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -12603,7 +12652,7 @@ paths: type: array items: *77 examples: - default: &190 + default: &193 value: - id: 1 node_id: MDU6SXNzdWUx @@ -13987,14 +14036,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &275 + - &278 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &276 + - &279 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14065,7 +14114,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &287 + '301': &290 description: Moved permanently content: application/json: @@ -14087,7 +14136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &504 + - &507 name: all description: If `true`, show notifications marked as read. in: query @@ -14095,7 +14144,7 @@ paths: schema: type: boolean default: false - - &505 + - &508 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14105,7 +14154,7 @@ paths: type: boolean default: false - *67 - - &506 + - &509 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: @@ -14417,7 +14466,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &231 + security_and_analysis: &234 nullable: true type: object properties: @@ -14561,7 +14610,7 @@ paths: - url - subscription_url examples: - default: &507 + default: &510 value: - id: '1' repository: @@ -15103,7 +15152,7 @@ paths: application/json: schema: type: array - items: &196 + items: &199 title: Organization Simple description: A GitHub organization. type: object @@ -15162,7 +15211,7 @@ paths: - avatar_url - description examples: - default: &617 + default: &620 value: - login: github id: 1 @@ -16071,7 +16120,7 @@ paths: type: integer repository_cache_usages: type: array - items: &292 + items: &295 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -16939,7 +16988,7 @@ paths: - all - local_only - selected - selected_actions_url: &298 + selected_actions_url: &301 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` @@ -17029,7 +17078,7 @@ paths: type: array items: *60 examples: - default: &611 + default: &614 value: total_count: 1 repositories: @@ -17357,7 +17406,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &305 type: object properties: default_workflow_permissions: &112 @@ -17408,7 +17457,7 @@ paths: required: false content: application/json: - schema: &303 + schema: &306 type: object properties: default_workflow_permissions: *112 @@ -17897,7 +17946,7 @@ paths: type: array items: *119 examples: - default: &602 + default: &605 value: total_count: 1 repositories: @@ -18539,7 +18588,7 @@ paths: application/json: schema: type: array - items: &304 + items: &307 title: Runner Application description: Runner Application type: object @@ -18564,7 +18613,7 @@ paths: - download_url - filename examples: - default: &305 + default: &308 value: - os: osx architecture: x64 @@ -18650,7 +18699,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &306 + '201': &309 description: Response content: application/json: @@ -18761,7 +18810,7 @@ paths: - token - expires_at examples: - default: &307 + default: &310 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -18800,7 +18849,7 @@ paths: application/json: schema: *123 examples: - default: &308 + default: &311 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -18834,7 +18883,7 @@ paths: application/json: schema: *121 examples: - default: &309 + default: &312 value: id: 23 name: MBP @@ -19059,7 +19108,7 @@ paths: - *94 - *120 responses: - '200': &310 + '200': &313 description: Response content: application/json: @@ -19116,7 +19165,7 @@ paths: parameters: - *94 - *120 - - &311 + - &314 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19246,7 +19295,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &326 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19275,7 +19324,7 @@ paths: - key_id - key examples: - default: &324 + default: &327 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -19688,7 +19737,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *94 - - &297 + - &300 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)." @@ -20223,7 +20272,7 @@ paths: bundle_url: type: string examples: - default: &337 + default: &340 value: attestations: - bundle: @@ -20342,7 +20391,7 @@ paths: type: array items: *4 examples: - default: &191 + default: &194 value: - login: octocat id: 1 @@ -20460,7 +20509,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *94 - - &363 + - &366 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`, @@ -20470,7 +20519,7 @@ paths: schema: &136 type: string description: The name of the tool used to generate the code scanning analysis. - - &364 + - &367 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 @@ -20493,7 +20542,7 @@ paths: be returned. in: query required: false - schema: &366 + schema: &369 type: string description: State of a code scanning alert. enum: @@ -20516,7 +20565,7 @@ paths: be returned. in: query required: false - schema: &367 + schema: &370 type: string description: Severity of a code scanning alert. enum: @@ -20542,7 +20591,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: &368 + instances_url: &371 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -20565,7 +20614,7 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: &369 + dismissed_reason: &372 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -20574,13 +20623,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &370 + dismissed_comment: &373 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &371 + rule: &374 type: object properties: id: @@ -20633,7 +20682,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &372 + tool: &375 type: object properties: name: *136 @@ -20643,15 +20692,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *137 - most_recent_instance: &373 + most_recent_instance: &376 type: object properties: - ref: &365 + ref: &368 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &383 + analysis_key: &386 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -20662,7 +20711,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &384 + category: &387 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -21907,7 +21956,7 @@ paths: type: integer codespaces: type: array - items: &192 + items: &195 type: object title: Codespace description: A codespace. @@ -21937,7 +21986,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &396 + properties: &399 name: type: string description: The name of the machine. @@ -21979,7 +22028,7 @@ paths: - ready - in_progress nullable: true - required: &397 + required: &400 - name - display_name - operating_system @@ -22184,7 +22233,7 @@ paths: - pulls_url - recent_folders examples: - default: &193 + default: &196 value: total_count: 3 codespaces: @@ -22847,7 +22896,7 @@ paths: - updated_at - visibility examples: - default: &398 + default: &401 value: total_count: 2 secrets: @@ -22885,7 +22934,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &402 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -22914,7 +22963,7 @@ paths: - key_id - key examples: - default: &400 + default: &403 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -22946,7 +22995,7 @@ paths: application/json: schema: *146 examples: - default: &402 + default: &405 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -23413,7 +23462,7 @@ paths: currently being billed. seats: type: array - items: &195 + items: &198 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -23490,7 +23539,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &204 + properties: &207 id: description: Unique identifier of the team type: integer @@ -23546,7 +23595,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &205 + required: &208 - id - node_id - url @@ -24115,7 +24164,7 @@ paths: application/json: schema: type: array - items: &255 + items: &258 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -24422,7 +24471,7 @@ paths: - date additionalProperties: true examples: - default: &256 + default: &259 value: - date: '2024-06-24' total_active_users: 24 @@ -24524,7 +24573,7 @@ paths: '500': *145 '403': *29 '404': *6 - '422': &257 + '422': &260 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -24592,7 +24641,7 @@ paths: application/json: schema: type: array - items: &258 + items: &261 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -24679,7 +24728,7 @@ paths: - breakdown additionalProperties: false examples: - default: &259 + default: &262 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -24912,7 +24961,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &432 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -24929,7 +24978,7 @@ paths: - key_id - key examples: - default: &430 + default: &433 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -25256,7 +25305,7 @@ paths: application/json: schema: type: array - items: &207 + items: &210 title: Package description: A software package type: object @@ -25326,7 +25375,7 @@ paths: - created_at - updated_at examples: - default: &208 + default: &211 value: - id: 197 name: hello_docker @@ -26722,7 +26771,7 @@ paths: application/json: schema: *22 examples: - default: &468 + default: &471 value: id: 1 account: @@ -26947,7 +26996,7 @@ paths: required: true content: application/json: - schema: &469 + schema: &472 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -27232,7 +27281,7 @@ paths: type: array items: *188 examples: - default: &206 + default: &209 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -27255,6 +27304,237 @@ 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: + - *94 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *189 + 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: + - *94 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *189 + examples: + default: &190 + 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: + - *94 + - &191 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *189 + examples: + default: *190 + '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: + - *94 + - *191 + 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 @@ -27307,7 +27587,13 @@ paths: - closed - all default: open - - *189 + - *192 + - 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 @@ -27332,7 +27618,7 @@ paths: type: array items: *77 examples: - default: *190 + default: *193 headers: Link: *58 '404': *6 @@ -27390,7 +27676,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '422': *15 @@ -27486,9 +27772,9 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: - default: *193 + default: *196 '304': *37 '500': *145 '401': *25 @@ -27515,7 +27801,7 @@ paths: parameters: - *94 - *132 - - &194 + - &197 name: codespace_name in: path required: true @@ -27550,15 +27836,15 @@ paths: parameters: - *94 - *132 - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: &395 + default: &398 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -27738,7 +28024,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *195 + schema: *198 examples: default: value: @@ -27813,7 +28099,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &200 title: Org Membership description: Org Membership type: object @@ -27842,7 +28128,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *196 + organization: *199 user: title: Simple User description: A GitHub user. @@ -27865,7 +28151,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &198 + response-if-user-has-an-active-admin-membership-with-organization: &201 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -27962,9 +28248,9 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: - response-if-user-already-had-membership-with-organization: *198 + response-if-user-already-had-membership-with-organization: *201 '422': *15 '403': *29 x-github: @@ -28032,7 +28318,7 @@ paths: application/json: schema: type: array - items: &199 + items: &202 title: Migration description: A migration. type: object @@ -28361,7 +28647,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -28540,7 +28826,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *94 - - &200 + - &203 name: migration_id description: The unique identifier of the migration. in: path @@ -28567,7 +28853,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -28737,7 +29023,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *94 - - *200 + - *203 responses: '302': description: Response @@ -28759,7 +29045,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *94 - - *200 + - *203 responses: '204': description: Response @@ -28783,8 +29069,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *94 - - *200 - - &616 + - *203 + - &619 name: repo_name description: repo_name parameter in: path @@ -28812,7 +29098,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *94 - - *200 + - *203 - *17 - *19 responses: @@ -28824,7 +29110,7 @@ paths: type: array items: *119 examples: - default: &213 + default: &216 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -28977,7 +29263,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &203 + items: &206 title: Organization Role description: Organization roles type: object @@ -29125,7 +29411,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *94 - - &201 + - &204 name: team_slug description: The slug of the team name. in: path @@ -29157,8 +29443,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *94 - - *201 - - &202 + - *204 + - &205 name: role_id description: The unique identifier of the role. in: path @@ -29194,8 +29480,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *94 - - *201 - - *202 + - *204 + - *205 responses: '204': description: Response @@ -29248,7 +29534,7 @@ paths: parameters: - *94 - *132 - - *202 + - *205 responses: '204': description: Response @@ -29280,7 +29566,7 @@ paths: parameters: - *94 - *132 - - *202 + - *205 responses: '204': description: Response @@ -29309,13 +29595,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *94 - - *202 + - *205 responses: '200': description: Response content: application/json: - schema: *203 + schema: *206 examples: default: value: @@ -29366,7 +29652,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *94 - - *202 + - *205 - *17 - *19 responses: @@ -29444,8 +29730,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 nullable: true required: - id @@ -29460,7 +29746,7 @@ paths: - slug - parent examples: - default: *206 + default: *209 headers: Link: *58 '404': @@ -29490,7 +29776,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *94 - - *202 + - *205 - *17 - *19 responses: @@ -29518,13 +29804,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &251 + items: &254 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 name: nullable: true type: string @@ -29619,7 +29905,7 @@ paths: - type - url examples: - default: *191 + default: *194 headers: Link: *58 '404': @@ -29667,7 +29953,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -29809,7 +30095,7 @@ paths: - nuget - container - *94 - - &618 + - &621 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -29845,12 +30131,12 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *208 + default: *211 '403': *29 '401': *25 - '400': &620 + '400': &623 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -29872,7 +30158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &209 + - &212 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 @@ -29890,7 +30176,7 @@ paths: - docker - nuget - container - - &210 + - &213 name: package_name description: The name of the package. in: path @@ -29903,7 +30189,7 @@ paths: description: Response content: application/json: - schema: *207 + schema: *210 examples: default: value: @@ -29955,8 +30241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 responses: '204': @@ -29989,8 +30275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 - name: token description: package token @@ -30023,8 +30309,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: - - *209 - - *210 + - *212 + - *213 - *94 - *19 - *17 @@ -30045,7 +30331,7 @@ paths: application/json: schema: type: array - items: &211 + items: &214 title: Package Version description: A version of a software package type: object @@ -30170,10 +30456,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *209 - - *210 + - *212 + - *213 - *94 - - &212 + - &215 name: package_version_id description: Unique identifier of the package version. in: path @@ -30185,7 +30471,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -30221,10 +30507,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *209 - - *210 - - *94 - *212 + - *213 + - *94 + - *215 responses: '204': description: Response @@ -30256,10 +30542,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *209 - - *210 - - *94 - *212 + - *213 + - *94 + - *215 responses: '204': description: Response @@ -30289,7 +30575,7 @@ paths: - *94 - *17 - *19 - - &214 + - &217 name: sort description: The property by which to sort the results. in: query @@ -30300,7 +30586,7 @@ paths: - created_at default: created_at - *48 - - &215 + - &218 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -30311,7 +30597,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &216 + - &219 name: repository description: The name of the repository to use to filter the results. in: query @@ -30319,7 +30605,7 @@ paths: schema: type: string example: Hello-World - - &217 + - &220 name: permission description: The permission to use to filter the results. in: query @@ -30327,7 +30613,7 @@ paths: schema: type: string example: issues_read - - &218 + - &221 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) @@ -30337,7 +30623,7 @@ paths: schema: type: string format: date-time - - &219 + - &222 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) @@ -30347,7 +30633,7 @@ paths: schema: type: string format: date-time - - &220 + - &223 name: token_id description: The ID of the token in: query @@ -30660,7 +30946,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -30686,14 +30972,14 @@ paths: - *94 - *17 - *19 - - *214 - - *48 - - *215 - - *216 - *217 + - *48 - *218 - *219 - *220 + - *221 + - *222 + - *223 responses: '500': *145 '422': *15 @@ -30975,7 +31261,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -31019,7 +31305,7 @@ paths: type: integer configurations: type: array - items: &221 + items: &224 title: Organization private registry description: Private registry configuration for an organization type: object @@ -31225,7 +31511,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &222 + org-private-registry-with-selected-visibility: &225 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -31325,9 +31611,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *221 + schema: *224 examples: - default: *222 + default: *225 '404': *6 x-github: githubCloudOnly: false @@ -31477,7 +31763,7 @@ paths: application/json: schema: type: array - items: &223 + items: &226 title: Project description: Projects are a way to organize columns and cards of work. @@ -31650,7 +31936,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -31688,7 +31974,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &284 + '410': &287 description: Gone content: application/json: @@ -31723,7 +32009,7 @@ paths: application/json: schema: type: array - items: &224 + items: &227 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -31789,7 +32075,7 @@ paths: - property_name - value_type examples: - default: &225 + default: &228 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -31823,6 +32109,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. @@ -31844,7 +32134,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *224 + items: *227 minItems: 1 maxItems: 100 required: @@ -31874,9 +32164,9 @@ paths: application/json: schema: type: array - items: *224 + items: *227 examples: - default: *225 + default: *228 '403': *29 '404': *6 x-github: @@ -31898,7 +32188,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *94 - - &226 + - &229 name: custom_property_name description: The custom property name in: path @@ -31910,9 +32200,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: &227 + default: &230 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -31947,7 +32237,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *94 - - *226 + - *229 requestBody: required: true content: @@ -31991,6 +32281,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type examples: @@ -32008,9 +32306,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *227 + default: *230 '403': *29 '404': *6 x-github: @@ -32034,7 +32332,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *94 - - *226 + - *229 responses: '204': *142 '403': *29 @@ -32095,7 +32393,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &228 + items: &231 title: Custom Property Value description: Custom property name and associated value type: object @@ -32182,7 +32480,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *228 + items: *231 required: - repository_names - properties @@ -32235,7 +32533,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -32374,7 +32672,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -32576,7 +32874,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &289 title: Full Repository description: Full Repository type: object @@ -32853,8 +33151,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *229 - required: *230 + properties: *232 + required: *233 nullable: true temp_clone_token: type: string @@ -32969,7 +33267,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &417 + properties: &420 url: type: string format: uri @@ -32985,12 +33283,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &418 + required: &421 - url - key - name - html_url - security_and_analysis: *231 + security_and_analysis: *234 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -33074,7 +33372,7 @@ paths: - network_count - subscribers_count examples: - default: &288 + default: &291 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33595,7 +33893,7 @@ paths: - *94 - *17 - *19 - - &553 + - &556 name: targets description: | A comma-separated list of rule targets to filter by. @@ -33613,7 +33911,7 @@ paths: application/json: schema: type: array - items: &238 + items: &241 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -33648,7 +33946,7 @@ paths: source: type: string description: The name of the source - enforcement: &234 + enforcement: &237 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -33661,7 +33959,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &235 + items: &238 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -33726,7 +34024,7 @@ paths: conditions: nullable: true anyOf: - - &232 + - &235 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -33750,7 +34048,7 @@ paths: match. items: type: string - - &236 + - &239 title: Organization ruleset conditions type: object description: |- @@ -33764,7 +34062,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -33798,7 +34096,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -33820,7 +34118,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *232 + - *235 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -33833,7 +34131,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &233 + items: &236 title: Repository ruleset property targeting definition type: object @@ -33866,17 +34164,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *233 + items: *236 required: - repository_property rules: type: array - items: &237 + items: &240 title: Repository Rule type: object description: A repository rule. oneOf: - - &535 + - &538 title: creation description: Only allow users with bypass permission to create matching refs. @@ -33888,7 +34186,7 @@ paths: type: string enum: - creation - - &536 + - &539 title: update description: Only allow users with bypass permission to update matching refs. @@ -33909,7 +34207,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &538 + - &541 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -33921,7 +34219,7 @@ paths: type: string enum: - deletion - - &539 + - &542 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -33933,7 +34231,7 @@ paths: type: string enum: - required_linear_history - - &540 + - &543 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34011,7 +34309,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &541 + - &544 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -34035,7 +34333,7 @@ paths: type: string required: - required_deployment_environments - - &542 + - &545 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -34047,7 +34345,7 @@ paths: type: string enum: - required_signatures - - &543 + - &546 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -34100,7 +34398,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &544 + - &547 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34148,7 +34446,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &545 + - &548 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34160,7 +34458,7 @@ paths: type: string enum: - non_fast_forward - - &546 + - &549 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34196,7 +34494,7 @@ paths: required: - operator - pattern - - &547 + - &550 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -34232,7 +34530,7 @@ paths: required: - operator - pattern - - &548 + - &551 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -34268,7 +34566,7 @@ paths: required: - operator - pattern - - &549 + - &552 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -34304,7 +34602,7 @@ paths: required: - operator - pattern - - &550 + - &553 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -34430,7 +34728,7 @@ paths: maximum: 100 required: - max_file_size - - &551 + - &554 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -34480,7 +34778,7 @@ paths: - repository_id required: - workflows - - &552 + - &555 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -34614,16 +34912,16 @@ paths: - push - repository default: branch - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *236 + items: *238 + conditions: *239 rules: type: array description: An array of rules within the ruleset. - items: *237 + items: *240 required: - name - enforcement @@ -34661,9 +34959,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: &239 + default: &242 value: id: 21 name: super cool ruleset @@ -34718,7 +35016,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *94 - - &554 + - &557 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 @@ -34733,7 +35031,7 @@ paths: in: query schema: type: string - - &555 + - &558 name: time_period description: |- The time period to filter by. @@ -34749,14 +35047,14 @@ paths: - week - month default: day - - &556 + - &559 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 - - &557 + - &560 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -34776,7 +35074,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &561 title: Rule Suites description: Response type: array @@ -34831,7 +35129,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &559 + default: &562 value: - id: 21 actor_id: 12 @@ -34875,7 +35173,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *94 - - &560 + - &563 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -34891,7 +35189,7 @@ paths: description: Response content: application/json: - schema: &561 + schema: &564 title: Rule Suite description: Response type: object @@ -34990,7 +35288,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &562 + default: &565 value: id: 21 actor_id: 12 @@ -35063,9 +35361,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *239 + default: *242 '404': *6 '500': *145 put: @@ -35109,16 +35407,16 @@ paths: - tag - push - repository - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *236 + items: *238 + conditions: *239 rules: description: An array of rules within the ruleset. type: array - items: *237 + items: *240 examples: default: value: @@ -35153,9 +35451,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *239 + default: *242 '404': *6 '500': *145 delete: @@ -35212,7 +35510,7 @@ paths: application/json: schema: type: array - items: &240 + items: &243 title: Ruleset version type: object description: The historical version of a ruleset @@ -35236,7 +35534,7 @@ paths: type: string format: date-time examples: - default: &564 + default: &567 value: - version_id: 3 actor: @@ -35289,9 +35587,9 @@ paths: description: Response content: application/json: - schema: &565 + schema: &568 allOf: - - *240 + - *243 - type: object required: - state @@ -35361,14 +35659,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *94 - - *241 - - *242 - - *243 - *244 + - *245 + - *246 + - *247 - *48 - *19 - *17 - - &566 + - &569 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 @@ -35378,7 +35676,7 @@ paths: required: false schema: type: string - - &567 + - &570 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 @@ -35388,9 +35686,9 @@ paths: required: false schema: type: string - - *245 - - *246 - - *247 + - *248 + - *249 + - *250 responses: '200': description: Response @@ -35398,9 +35696,9 @@ paths: application/json: schema: type: array - items: *248 + items: *251 examples: - default: *249 + default: *252 headers: Link: *58 '404': *6 @@ -35470,7 +35768,7 @@ paths: application/json: schema: type: array - items: &574 + items: &577 description: A repository security advisory. type: object properties: @@ -35690,7 +35988,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 credits_detailed: type: array nullable: true @@ -35700,7 +35998,7 @@ paths: type: object properties: user: *4 - type: *250 + type: *253 state: type: string description: The state of the user's acceptance of the @@ -35761,7 +36059,7 @@ paths: - private_fork additionalProperties: false examples: - default: &575 + default: &578 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -36148,9 +36446,9 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *206 + default: *209 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36174,7 +36472,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -36200,7 +36498,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -36235,7 +36533,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &637 type: object properties: total_minutes_used: @@ -36305,7 +36603,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &635 + default: &638 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -36341,7 +36639,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &639 type: object properties: total_gigabytes_bandwidth_used: @@ -36359,7 +36657,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &637 + default: &640 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -36391,7 +36689,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &641 type: object properties: days_left_in_billing_cycle: @@ -36409,7 +36707,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &639 + default: &642 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -36451,7 +36749,7 @@ paths: type: integer network_configurations: type: array - items: &252 + items: &255 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -36571,9 +36869,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &253 + default: &256 value: id: 123456789ABCDEF name: My network configuration @@ -36602,7 +36900,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *94 - - &254 + - &257 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -36614,9 +36912,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 headers: Link: *58 x-github: @@ -36638,7 +36936,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *94 - - *254 + - *257 requestBody: required: true content: @@ -36677,9 +36975,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36699,7 +36997,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *94 - - *254 + - *257 responses: '204': description: Response @@ -36807,7 +37105,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *94 - - *201 + - *204 - 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`). @@ -36839,13 +37137,13 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *256 + default: *259 '500': *145 '403': *29 '404': *6 - '422': *257 + '422': *260 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36880,7 +37178,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *94 - - *201 + - *204 - 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`). @@ -36912,9 +37210,9 @@ paths: application/json: schema: type: array - items: *258 + items: *261 examples: - default: *259 + default: *262 '500': *145 '401': *25 '403': *29 @@ -36948,7 +37246,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 headers: Link: *58 '403': *29 @@ -37042,7 +37340,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &263 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -37105,8 +37403,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *204 - required: *205 + properties: *207 + required: *208 nullable: true members_count: type: integer @@ -37352,7 +37650,7 @@ paths: - repos_count - organization examples: - default: &261 + default: &264 value: id: 1 node_id: MDQ6VGVhbTE= @@ -37423,15 +37721,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *94 - - *201 + - *204 responses: '200': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 x-github: githubCloudOnly: false @@ -37453,7 +37751,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *94 - - *201 + - *204 requestBody: required: false content: @@ -37515,16 +37813,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '201': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 '422': *15 '403': *29 @@ -37550,7 +37848,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *94 - - *201 + - *204 responses: '204': description: Response @@ -37577,7 +37875,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *94 - - *201 + - *204 - *48 - *17 - *19 @@ -37594,7 +37892,7 @@ paths: application/json: schema: type: array - items: &262 + items: &265 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -37693,7 +37991,7 @@ paths: - updated_at - url examples: - default: &589 + default: &592 value: - author: login: octocat @@ -37768,7 +38066,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *94 - - *201 + - *204 requestBody: required: true content: @@ -37802,9 +38100,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: &263 + default: &266 value: author: login: octocat @@ -37877,8 +38175,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *94 - - *201 - - &264 + - *204 + - &267 name: discussion_number description: The number that identifies the discussion. in: path @@ -37890,9 +38188,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37915,8 +38213,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: false content: @@ -37939,9 +38237,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: &590 + default: &593 value: author: login: octocat @@ -38012,8 +38310,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 responses: '204': description: Response @@ -38040,8 +38338,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *94 - - *201 - - *264 + - *204 + - *267 - *48 - *17 - *19 @@ -38052,7 +38350,7 @@ paths: application/json: schema: type: array - items: &265 + items: &268 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -38124,7 +38422,7 @@ paths: - updated_at - url examples: - default: &591 + default: &594 value: - author: login: octocat @@ -38193,8 +38491,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: true content: @@ -38216,9 +38514,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: &266 + default: &269 value: author: login: octocat @@ -38285,9 +38583,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *94 - - *201 - - *264 - - &267 + - *204 + - *267 + - &270 name: comment_number description: The number that identifies the comment. in: path @@ -38299,9 +38597,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38324,9 +38622,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 requestBody: required: true content: @@ -38348,9 +38646,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: &592 + default: &595 value: author: login: octocat @@ -38415,9 +38713,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 responses: '204': description: Response @@ -38444,9 +38742,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 - 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. @@ -38472,7 +38770,7 @@ paths: application/json: schema: type: array - items: &268 + items: &271 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -38515,7 +38813,7 @@ paths: - content - created_at examples: - default: &270 + default: &273 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38566,9 +38864,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *94 - - *201 - - *264 + - *204 - *267 + - *270 requestBody: required: true content: @@ -38601,9 +38899,9 @@ paths: team discussion comment content: application/json: - schema: *268 + schema: *271 examples: - default: &269 + default: &272 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -38632,9 +38930,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38658,10 +38956,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *94 - - *201 - - *264 + - *204 - *267 - - &271 + - *270 + - &274 name: reaction_id description: The unique identifier of the reaction. in: path @@ -38694,8 +38992,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 - 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. @@ -38721,9 +39019,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -38750,8 +39048,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *94 - - *201 - - *264 + - *204 + - *267 requestBody: required: true content: @@ -38783,16 +39081,16 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -38816,9 +39114,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *94 - - *201 - - *264 - - *271 + - *204 + - *267 + - *274 responses: '204': description: Response @@ -38843,7 +39141,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -38878,7 +39176,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *94 - - *201 + - *204 - name: role description: Filters members returned by their role in the team. in: query @@ -38901,7 +39199,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -38932,14 +39230,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 responses: '200': description: Response content: application/json: - schema: &272 + schema: &275 title: Team Membership description: Team Membership type: object @@ -38966,7 +39264,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &593 + response-if-user-is-a-team-maintainer: &596 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -39003,7 +39301,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 requestBody: required: false @@ -39029,9 +39327,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-users-membership-with-team-is-now-pending: &594 + response-if-users-membership-with-team-is-now-pending: &597 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -39067,7 +39365,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *94 - - *201 + - *204 - *132 responses: '204': @@ -39094,7 +39392,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -39104,7 +39402,7 @@ paths: application/json: schema: type: array - items: &273 + items: &276 title: Team Project description: A team's access to a project. type: object @@ -39172,7 +39470,7 @@ paths: - updated_at - permissions examples: - default: &595 + default: &598 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39236,8 +39534,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *94 - - *201 - - &274 + - *204 + - &277 name: project_id description: The unique identifier of the project. in: path @@ -39249,9 +39547,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: &596 + default: &599 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -39314,8 +39612,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *94 - - *201 - - *274 + - *204 + - *277 requestBody: required: false content: @@ -39382,8 +39680,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *94 - - *201 - - *274 + - *204 + - *277 responses: '204': description: Response @@ -39411,7 +39709,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -39423,7 +39721,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -39453,15 +39751,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &597 + schema: &600 title: Team Repository description: A team's access to a repository. type: object @@ -40031,9 +40329,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 requestBody: required: false content: @@ -40079,9 +40377,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *94 - - *201 - - *275 - - *276 + - *204 + - *278 + - *279 responses: '204': description: Response @@ -40106,7 +40404,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *94 - - *201 + - *204 - *17 - *19 responses: @@ -40118,7 +40416,7 @@ paths: type: array items: *188 examples: - response-if-child-teams-exist: &598 + response-if-child-teams-exist: &601 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -40245,7 +40543,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &277 + - &280 name: card_id description: The unique identifier of the card. in: path @@ -40257,7 +40555,7 @@ paths: description: Response content: application/json: - schema: &278 + schema: &281 title: Project Card description: Project cards represent a scope of work. type: object @@ -40324,7 +40622,7 @@ paths: - created_at - updated_at examples: - default: &279 + default: &282 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -40380,7 +40678,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *277 + - *280 requestBody: required: false content: @@ -40407,9 +40705,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *281 examples: - default: *279 + default: *282 '304': *37 '403': *29 '401': *25 @@ -40436,7 +40734,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *277 + - *280 responses: '204': description: Response @@ -40480,7 +40778,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *277 + - *280 requestBody: required: true content: @@ -40591,7 +40889,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &280 + - &283 name: column_id description: The unique identifier of the column. in: path @@ -40603,7 +40901,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &284 title: Project Column description: Project columns contain cards of work. type: object @@ -40649,7 +40947,7 @@ paths: - created_at - updated_at examples: - default: &282 + default: &285 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -40684,7 +40982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *280 + - *283 requestBody: required: true content: @@ -40708,9 +41006,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *282 + default: *285 '304': *37 '403': *29 '401': *25 @@ -40735,7 +41033,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *280 + - *283 responses: '204': description: Response @@ -40764,7 +41062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *280 + - *283 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -40785,7 +41083,7 @@ paths: application/json: schema: type: array - items: *278 + items: *281 examples: default: value: @@ -40844,7 +41142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *280 + - *283 requestBody: required: true content: @@ -40884,9 +41182,9 @@ paths: description: Response content: application/json: - schema: *278 + schema: *281 examples: - default: *279 + default: *282 '304': *37 '403': *29 '401': *25 @@ -40942,7 +41240,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *280 + - *283 requestBody: required: true content: @@ -41002,15 +41300,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *274 + - *277 responses: '200': description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: &283 + default: &286 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -41067,7 +41365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *274 + - *277 requestBody: required: false content: @@ -41113,9 +41411,9 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: *283 + default: *286 '404': description: Not Found if the authenticated user does not have access to the project @@ -41136,7 +41434,7 @@ paths: items: type: string '401': *25 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -41159,7 +41457,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *274 + - *277 responses: '204': description: Delete Success @@ -41180,7 +41478,7 @@ paths: items: type: string '401': *25 - '410': *284 + '410': *287 '404': *6 x-github: githubCloudOnly: false @@ -41204,7 +41502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *274 + - *277 - 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 @@ -41231,7 +41529,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -41261,7 +41559,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *274 + - *277 - *132 requestBody: required: false @@ -41314,7 +41612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *274 + - *277 - *132 responses: '204': @@ -41346,7 +41644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *274 + - *277 - *132 responses: '200': @@ -41420,7 +41718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *274 + - *277 - *17 - *19 responses: @@ -41430,7 +41728,7 @@ paths: application/json: schema: type: array - items: *281 + items: *284 examples: default: value: @@ -41468,7 +41766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *274 + - *277 requestBody: required: true content: @@ -41491,7 +41789,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: default: value: @@ -41555,7 +41853,7 @@ paths: resources: type: object properties: - core: &285 + core: &288 title: Rate Limit type: object properties: @@ -41572,20 +41870,20 @@ paths: - remaining - reset - used - graphql: *285 - search: *285 - code_search: *285 - source_import: *285 - integration_manifest: *285 - code_scanning_upload: *285 - actions_runner_registration: *285 - scim: *285 - dependency_snapshots: *285 - code_scanning_autofix: *285 + graphql: *288 + search: *288 + code_search: *288 + source_import: *288 + integration_manifest: *288 + code_scanning_upload: *288 + actions_runner_registration: *288 + scim: *288 + dependency_snapshots: *288 + code_scanning_autofix: *288 required: - core - search - rate: *285 + rate: *288 required: - rate - resources @@ -41689,14 +41987,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *286 + schema: *289 examples: default-response: summary: Default response @@ -42197,7 +42495,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *287 + '301': *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42215,8 +42513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -42452,10 +42750,10 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 - '307': &289 + default: *291 + '307': &292 description: Temporary Redirect content: application/json: @@ -42484,8 +42782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -42507,7 +42805,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *289 + '307': *292 '404': *6 x-github: githubCloudOnly: false @@ -42530,11 +42828,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - - &315 + - &318 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -42557,7 +42855,7 @@ paths: type: integer artifacts: type: array - items: &290 + items: &293 title: Artifact description: An artifact type: object @@ -42635,7 +42933,7 @@ paths: - expires_at - updated_at examples: - default: &316 + default: &319 value: total_count: 2 artifacts: @@ -42696,9 +42994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *275 - - *276 - - &291 + - *278 + - *279 + - &294 name: artifact_id description: The unique identifier of the artifact. in: path @@ -42710,7 +43008,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *293 examples: default: value: @@ -42748,9 +43046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *275 - - *276 - - *291 + - *278 + - *279 + - *294 responses: '204': description: Response @@ -42774,9 +43072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *275 - - *276 - - *291 + - *278 + - *279 + - *294 - name: archive_format in: path required: true @@ -42790,7 +43088,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': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42813,14 +43111,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: default: value: @@ -42846,11 +43144,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - - &293 + - &296 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 @@ -42884,7 +43182,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &297 title: Repository actions caches description: Repository actions caches type: object @@ -42926,7 +43224,7 @@ paths: - total_count - actions_caches examples: - default: &295 + default: &298 value: total_count: 1 actions_caches: @@ -42958,23 +43256,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: - - *275 - - *276 + - *278 + - *279 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *293 + - *296 responses: '200': description: Response content: application/json: - schema: *294 + schema: *297 examples: - default: *295 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42994,8 +43292,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: - - *275 - - *276 + - *278 + - *279 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -43026,9 +43324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *275 - - *276 - - &296 + - *278 + - *279 + - &299 name: job_id description: The unique identifier of the job. in: path @@ -43040,7 +43338,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &322 title: Job description: Information of a job execution in a workflow run type: object @@ -43347,9 +43645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *275 - - *276 - - *296 + - *278 + - *279 + - *299 responses: '302': description: Response @@ -43377,9 +43675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *275 - - *276 - - *296 + - *278 + - *279 + - *299 requestBody: required: false content: @@ -43424,8 +43722,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Status response @@ -43475,8 +43773,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -43539,8 +43837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -43558,7 +43856,7 @@ paths: type: integer secrets: type: array - items: &321 + items: &324 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -43578,7 +43876,7 @@ paths: - created_at - updated_at examples: - default: &322 + default: &325 value: total_count: 2 secrets: @@ -43611,9 +43909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *275 - - *276 - - *297 + - *278 + - *279 + - *300 - *19 responses: '200': @@ -43630,7 +43928,7 @@ paths: type: integer variables: type: array - items: &325 + items: &328 title: Actions Variable type: object properties: @@ -43660,7 +43958,7 @@ paths: - created_at - updated_at examples: - default: &326 + default: &329 value: total_count: 2 variables: @@ -43693,8 +43991,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -43703,11 +44001,11 @@ paths: schema: type: object properties: - enabled: &299 + enabled: &302 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *108 - selected_actions_url: *298 + selected_actions_url: *301 required: - enabled examples: @@ -43734,8 +44032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -43746,7 +44044,7 @@ paths: schema: type: object properties: - enabled: *299 + enabled: *302 allowed_actions: *108 required: - enabled @@ -43776,14 +44074,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &300 + schema: &303 type: object properties: access_level: @@ -43800,7 +44098,7 @@ paths: required: - access_level examples: - default: &301 + default: &304 value: access_level: organization x-github: @@ -43824,15 +44122,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: application/json: - schema: *300 + schema: *303 examples: - default: *301 + default: *304 responses: '204': description: Response @@ -43856,8 +44154,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -43884,8 +44182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -43917,14 +44215,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: default: *114 x-github: @@ -43947,8 +44245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Success response @@ -43959,7 +44257,7 @@ paths: required: true content: application/json: - schema: *303 + schema: *306 examples: default: *114 x-github: @@ -43988,8 +44286,8 @@ paths: in: query schema: type: string - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -44033,8 +44331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -44042,9 +44340,9 @@ paths: application/json: schema: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44066,8 +44364,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -44110,7 +44408,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *306 + '201': *309 '404': *6 '422': *7 '409': *46 @@ -44141,8 +44439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -44150,7 +44448,7 @@ paths: application/json: schema: *123 examples: - default: *307 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44178,8 +44476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -44187,7 +44485,7 @@ paths: application/json: schema: *123 examples: - default: *308 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44209,8 +44507,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '200': @@ -44219,7 +44517,7 @@ paths: application/json: schema: *121 examples: - default: *309 + default: *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44240,8 +44538,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '204': @@ -44267,8 +44565,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: '200': *125 @@ -44293,8 +44591,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: - - *275 - - *276 + - *278 + - *279 - *120 requestBody: required: true @@ -44343,8 +44641,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: - - *275 - - *276 + - *278 + - *279 - *120 requestBody: required: true @@ -44394,11 +44692,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: - - *275 - - *276 + - *278 + - *279 - *120 responses: - '200': *310 + '200': *313 '404': *6 x-github: githubCloudOnly: false @@ -44425,10 +44723,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: - - *275 - - *276 + - *278 + - *279 - *120 - - *311 + - *314 responses: '200': *125 '404': *6 @@ -44456,9 +44754,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *275 - - *276 - - &329 + - *278 + - *279 + - &332 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. @@ -44466,7 +44764,7 @@ paths: required: false schema: type: string - - &330 + - &333 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -44474,7 +44772,7 @@ paths: required: false schema: type: string - - &331 + - &334 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -44483,7 +44781,7 @@ paths: required: false schema: type: string - - &332 + - &335 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 @@ -44510,7 +44808,7 @@ paths: - pending - *17 - *19 - - &333 + - &336 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)." @@ -44519,7 +44817,7 @@ paths: schema: type: string format: date-time - - &312 + - &315 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -44528,13 +44826,13 @@ paths: schema: type: boolean default: false - - &334 + - &337 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &335 + - &338 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -44557,7 +44855,7 @@ paths: type: integer workflow_runs: type: array - items: &313 + items: &316 title: Workflow Run description: An invocation of a workflow type: object @@ -44652,7 +44950,7 @@ paths: that triggered the run. type: array nullable: true - items: &354 + items: &357 title: Pull Request Minimal type: object properties: @@ -44771,7 +45069,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &358 + properties: &361 id: type: string description: SHA for the commit @@ -44822,7 +45120,7 @@ paths: - name - email nullable: true - required: &359 + required: &362 - id - tree_id - message @@ -44869,7 +45167,7 @@ paths: - workflow_url - pull_requests examples: - default: &336 + default: &339 value: total_count: 1 workflow_runs: @@ -45105,24 +45403,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *275 - - *276 - - &314 + - *278 + - *279 + - &317 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *312 + - *315 responses: '200': description: Response content: application/json: - schema: *313 + schema: *316 examples: - default: &317 + default: &320 value: id: 30433642 name: Build @@ -45363,9 +45661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '204': description: Response @@ -45388,9 +45686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -45509,9 +45807,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: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '201': description: Response @@ -45544,12 +45842,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 - *17 - *19 - - *315 + - *318 responses: '200': description: Response @@ -45565,9 +45863,9 @@ paths: type: integer artifacts: type: array - items: *290 + items: *293 examples: - default: *316 + default: *319 headers: Link: *58 x-github: @@ -45591,25 +45889,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *275 - - *276 - - *314 - - &318 + - *278 + - *279 + - *317 + - &321 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *312 + - *315 responses: '200': description: Response content: application/json: - schema: *313 + schema: *316 examples: - default: *317 + default: *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45632,10 +45930,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *275 - - *276 - - *314 - - *318 + - *278 + - *279 + - *317 + - *321 - *17 - *19 responses: @@ -45653,9 +45951,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *322 examples: - default: &320 + default: &323 value: total_count: 1 jobs: @@ -45768,10 +46066,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *275 - - *276 - - *314 - - *318 + - *278 + - *279 + - *317 + - *321 responses: '302': description: Response @@ -45799,9 +46097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '202': description: Response @@ -45834,9 +46132,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: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: true content: @@ -45903,9 +46201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '202': description: Response @@ -45938,9 +46236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 - 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 @@ -45970,9 +46268,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *322 examples: - default: *320 + default: *323 headers: Link: *58 x-github: @@ -45997,9 +46295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '302': description: Response @@ -46026,9 +46324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '204': description: Response @@ -46055,9 +46353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -46117,7 +46415,7 @@ paths: items: type: object properties: - type: &438 + type: &441 type: string description: The type of reviewer. enum: @@ -46202,9 +46500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: true content: @@ -46251,7 +46549,7 @@ paths: application/json: schema: type: array - items: &433 + items: &436 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -46357,7 +46655,7 @@ paths: - created_at - updated_at examples: - default: &434 + default: &437 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -46413,9 +46711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: false content: @@ -46459,9 +46757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 requestBody: required: false content: @@ -46514,9 +46812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *275 - - *276 - - *314 + - *278 + - *279 + - *317 responses: '200': description: Response @@ -46653,8 +46951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -46672,9 +46970,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *324 examples: - default: *322 + default: *325 headers: Link: *58 x-github: @@ -46699,16 +46997,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *323 + schema: *326 examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46730,17 +47028,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: &451 + default: &454 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -46766,8 +47064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -46825,8 +47123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -46852,9 +47150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *275 - - *276 - - *297 + - *278 + - *279 + - *300 - *19 responses: '200': @@ -46871,9 +47169,9 @@ paths: type: integer variables: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *58 x-github: @@ -46896,8 +47194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -46949,17 +47247,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 responses: '200': description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: &452 + default: &455 value: name: USERNAME value: octocat @@ -46985,8 +47283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 requestBody: required: true @@ -47029,8 +47327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 responses: '204': @@ -47056,8 +47354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -47075,7 +47373,7 @@ paths: type: integer workflows: type: array - items: &327 + items: &330 title: Workflow description: A GitHub Actions workflow type: object @@ -47182,9 +47480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *275 - - *276 - - &328 + - *278 + - *279 + - &331 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -47199,7 +47497,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *330 examples: default: value: @@ -47232,9 +47530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47259,9 +47557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47312,9 +47610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '204': description: Response @@ -47341,19 +47639,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *275 - - *276 - - *328 - - *329 - - *330 + - *278 + - *279 - *331 - *332 - - *17 - - *19 - *333 - - *312 - *334 - *335 + - *17 + - *19 + - *336 + - *315 + - *337 + - *338 responses: '200': description: Response @@ -47369,9 +47667,9 @@ paths: type: integer workflow_runs: type: array - items: *313 + items: *316 examples: - default: *336 + default: *339 headers: Link: *58 x-github: @@ -47403,9 +47701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *275 - - *276 - - *328 + - *278 + - *279 + - *331 responses: '200': description: Response @@ -47466,8 +47764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *275 - - *276 + - *278 + - *279 - *48 - *17 - *39 @@ -47631,8 +47929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -47644,7 +47942,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -47669,8 +47967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *275 - - *276 + - *278 + - *279 - name: assignee in: path required: true @@ -47706,8 +48004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -47819,8 +48117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *39 - *40 @@ -47874,7 +48172,7 @@ paths: bundle_url: type: string examples: - default: *337 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47894,8 +48192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -47903,7 +48201,7 @@ paths: application/json: schema: type: array - items: &338 + items: &341 title: Autolink reference description: An autolink reference. type: object @@ -47953,8 +48251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -47993,9 +48291,9 @@ paths: description: response content: application/json: - schema: *338 + schema: *341 examples: - default: &339 + default: &342 value: id: 1 key_prefix: TICKET- @@ -48026,9 +48324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *275 - - *276 - - &340 + - *278 + - *279 + - &343 name: autolink_id description: The unique identifier of the autolink. in: path @@ -48040,9 +48338,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 '404': *6 x-github: githubCloudOnly: false @@ -48062,9 +48360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *275 - - *276 - - *340 + - *278 + - *279 + - *343 responses: '204': description: Response @@ -48088,8 +48386,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response if Dependabot is enabled @@ -48137,8 +48435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -48159,8 +48457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -48180,8 +48478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *275 - - *276 + - *278 + - *279 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -48219,7 +48517,7 @@ paths: - url protected: type: boolean - protection: &342 + protection: &345 title: Branch Protection description: Branch Protection type: object @@ -48261,7 +48559,7 @@ paths: required: - contexts - checks - enforce_admins: &345 + enforce_admins: &348 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -48276,7 +48574,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &347 + required_pull_request_reviews: &350 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -48352,7 +48650,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &344 + restrictions: &347 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -48659,9 +48957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *275 - - *276 - - &343 + - *278 + - *279 + - &346 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). @@ -48675,14 +48973,14 @@ paths: description: Response content: application/json: - schema: &353 + schema: &356 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &406 + commit: &409 title: Commit description: Commit type: object @@ -48716,7 +49014,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &341 + properties: &344 name: type: string example: '"Chris Wanstrath"' @@ -48731,7 +49029,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true message: type: string @@ -48752,7 +49050,7 @@ paths: required: - sha - url - verification: &458 + verification: &461 title: Verification type: object properties: @@ -48822,7 +49120,7 @@ paths: type: integer files: type: array - items: &421 + items: &424 title: Diff Entry description: Diff Entry type: object @@ -48905,7 +49203,7 @@ paths: - self protected: type: boolean - protection: *342 + protection: *345 protection_url: type: string format: uri @@ -49012,7 +49310,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *287 + '301': *290 '404': *6 x-github: githubCloudOnly: false @@ -49034,15 +49332,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *342 + schema: *345 examples: default: value: @@ -49236,9 +49534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -49493,7 +49791,7 @@ paths: url: type: string format: uri - required_status_checks: &350 + required_status_checks: &353 title: Status Check Policy description: Status Check Policy type: object @@ -49645,7 +49943,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *344 + restrictions: *347 required_conversation_resolution: type: object properties: @@ -49757,9 +50055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -49784,17 +50082,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &346 + default: &349 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -49816,17 +50114,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49845,9 +50143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -49872,17 +50170,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: &348 + default: &351 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -49978,9 +50276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50078,9 +50376,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 '422': *15 x-github: githubCloudOnly: false @@ -50101,9 +50399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50130,17 +50428,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &349 + default: &352 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -50163,17 +50461,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *349 + default: *352 '404': *6 x-github: githubCloudOnly: false @@ -50193,9 +50491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50220,17 +50518,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: &351 + default: &354 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -50256,9 +50554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50310,9 +50608,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *353 examples: - default: *351 + default: *354 '404': *6 '422': *15 x-github: @@ -50334,9 +50632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50360,9 +50658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50396,9 +50694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50465,9 +50763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -50531,9 +50829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: content: application/json: @@ -50599,15 +50897,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: default: value: @@ -50698,9 +50996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '204': description: Response @@ -50723,9 +51021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50735,7 +51033,7 @@ paths: type: array items: *5 examples: - default: &352 + default: &355 value: - id: 1 slug: octoapp @@ -50792,9 +51090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50828,7 +51126,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50849,9 +51147,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50885,7 +51183,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50906,9 +51204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -50942,7 +51240,7 @@ paths: type: array items: *5 examples: - default: *352 + default: *355 '422': *15 x-github: githubCloudOnly: false @@ -50964,9 +51262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -50976,7 +51274,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '404': *6 x-github: githubCloudOnly: false @@ -50996,9 +51294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -51036,7 +51334,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51057,9 +51355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: false content: @@ -51097,7 +51395,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51118,9 +51416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: content: application/json: @@ -51157,7 +51455,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 '422': *15 x-github: githubCloudOnly: false @@ -51179,9 +51477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 responses: '200': description: Response @@ -51191,7 +51489,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '404': *6 x-github: githubCloudOnly: false @@ -51215,9 +51513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51250,7 +51548,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51275,9 +51573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51310,7 +51608,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51335,9 +51633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51370,7 +51668,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '422': *15 x-github: githubCloudOnly: false @@ -51397,9 +51695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 requestBody: required: true content: @@ -51421,7 +51719,7 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51537,8 +51835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -51817,7 +52115,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &358 title: CheckRun description: A check performed on the code of a given code change type: object @@ -51936,8 +52234,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *354 - deployment: &648 + items: *357 + deployment: &651 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -52217,9 +52515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *275 - - *276 - - &356 + - *278 + - *279 + - &359 name: check_run_id description: The unique identifier of the check run. in: path @@ -52231,9 +52529,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &357 + default: &360 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -52333,9 +52631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 requestBody: required: true content: @@ -52575,9 +52873,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52597,9 +52895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 - *17 - *19 responses: @@ -52696,9 +52994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *275 - - *276 - - *356 + - *278 + - *279 + - *359 responses: '201': description: Response @@ -52742,8 +53040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -52765,7 +53063,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &360 + schema: &363 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -52829,7 +53127,7 @@ paths: nullable: true pull_requests: type: array - items: *354 + items: *357 nullable: true app: title: GitHub app @@ -52851,12 +53149,12 @@ paths: type: string format: date-time nullable: true - head_commit: &674 + head_commit: &677 title: Simple Commit description: A commit. type: object - properties: *358 - required: *359 + properties: *361 + required: *362 latest_check_runs_count: type: integer check_runs_url: @@ -52884,7 +53182,7 @@ paths: - check_runs_url - pull_requests examples: - default: &361 + default: &364 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -53175,9 +53473,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *360 + schema: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53196,8 +53494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -53506,9 +53804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *275 - - *276 - - &362 + - *278 + - *279 + - &365 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -53520,9 +53818,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53545,17 +53843,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *275 - - *276 - - *362 - - &414 + - *278 + - *279 + - *365 + - &417 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &415 + - &418 name: status description: Returns check runs with the specified `status`. in: query @@ -53594,9 +53892,9 @@ paths: type: integer check_runs: type: array - items: *355 + items: *358 examples: - default: &416 + default: &419 value: total_count: 1 check_runs: @@ -53698,9 +53996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *275 - - *276 - - *362 + - *278 + - *279 + - *365 responses: '201': description: Response @@ -53733,21 +54031,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *275 - - *276 - - *363 - - *364 + - *278 + - *279 + - *366 + - *367 - *19 - *17 - - &381 + - &384 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: *365 - - &382 + schema: *368 + - &385 name: pr description: The number of the pull request for the results you want to list. in: query @@ -53772,13 +54070,13 @@ paths: be returned. in: query required: false - schema: *366 + schema: *369 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *367 + schema: *370 responses: '200': description: Response @@ -53794,7 +54092,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: *368 + instances_url: *371 state: *138 fixed_at: *134 dismissed_by: @@ -53805,11 +54103,11 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: *369 - dismissed_comment: *370 - rule: *371 - tool: *372 - most_recent_instance: *373 + dismissed_reason: *372 + dismissed_comment: *373 + rule: *374 + tool: *375 + most_recent_instance: *376 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -53932,7 +54230,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &374 + '403': &377 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -53959,9 +54257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *275 - - *276 - - &375 + - *278 + - *279 + - &378 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -53975,7 +54273,7 @@ paths: description: Response content: application/json: - schema: &376 + schema: &379 type: object properties: number: *54 @@ -53983,7 +54281,7 @@ paths: updated_at: *133 url: *56 html_url: *57 - instances_url: *368 + instances_url: *371 state: *138 fixed_at: *134 dismissed_by: @@ -53994,8 +54292,8 @@ paths: required: *21 nullable: true dismissed_at: *135 - dismissed_reason: *369 - dismissed_comment: *370 + dismissed_reason: *372 + dismissed_comment: *373 rule: type: object properties: @@ -54049,8 +54347,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *372 - most_recent_instance: *373 + tool: *375 + most_recent_instance: *376 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -54146,7 +54444,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54166,9 +54464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: true content: @@ -54183,8 +54481,8 @@ paths: enum: - open - dismissed - dismissed_reason: *369 - dismissed_comment: *370 + dismissed_reason: *372 + dismissed_comment: *373 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -54203,7 +54501,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *379 examples: default: value: @@ -54279,7 +54577,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &380 + '403': &383 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -54306,15 +54604,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: Response content: application/json: - schema: &377 + schema: &380 type: object properties: status: @@ -54340,13 +54638,13 @@ paths: - description - started_at examples: - default: &378 + default: &381 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &379 + '400': &382 description: Bad Request content: application/json: @@ -54357,7 +54655,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': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54382,29 +54680,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: OK content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '202': description: Accepted content: application/json: - schema: *377 + schema: *380 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *379 + '400': *382 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -54436,9 +54734,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: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: false content: @@ -54483,8 +54781,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *379 - '403': *380 + '400': *382 + '403': *383 '404': *6 '422': description: Unprocessable Entity @@ -54508,13 +54806,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 - *19 - *17 - - *381 - - *382 + - *384 + - *385 responses: '200': description: Response @@ -54522,7 +54820,7 @@ paths: application/json: schema: type: array - items: *373 + items: *376 examples: default: value: @@ -54561,7 +54859,7 @@ paths: end_column: 50 classifications: - source - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54595,25 +54893,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *275 - - *276 - - *363 - - *364 + - *278 + - *279 + - *366 + - *367 - *19 - *17 - - *382 + - *385 - 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: *365 + schema: *368 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &385 + schema: &388 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -54634,23 +54932,23 @@ paths: application/json: schema: type: array - items: &386 + items: &389 type: object properties: - ref: *365 - commit_sha: &394 + ref: *368 + commit_sha: &397 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: *383 + analysis_key: *386 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *384 + category: *387 error: type: string example: error reading field xyz @@ -54674,8 +54972,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *385 - tool: *372 + sarif_id: *388 + tool: *375 deletable: type: boolean warning: @@ -54736,7 +55034,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54772,8 +55070,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: - - *275 - - *276 + - *278 + - *279 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -54786,7 +55084,7 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: response: summary: application/json response @@ -54840,7 +55138,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -54922,8 +55220,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: - - *275 - - *276 + - *278 + - *279 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -54976,7 +55274,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': *380 + '403': *383 '404': *6 '503': *65 x-github: @@ -54998,8 +55296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -55007,7 +55305,7 @@ paths: application/json: schema: type: array - items: &387 + items: &390 title: CodeQL Database description: A CodeQL database. type: object @@ -55118,7 +55416,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': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55147,8 +55445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: language in: path description: The language of the CodeQL database. @@ -55160,7 +55458,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *390 examples: default: value: @@ -55192,9 +55490,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': &423 + '302': &426 description: Found - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55216,8 +55514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *275 - - *276 + - *278 + - *279 - name: language in: path description: The language of the CodeQL database. @@ -55227,7 +55525,7 @@ paths: responses: '204': description: Response - '403': *380 + '403': *383 '404': *6 '503': *65 x-github: @@ -55255,8 +55553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -55265,7 +55563,7 @@ paths: type: object additionalProperties: false properties: - language: &388 + language: &391 type: string description: The language targeted by the CodeQL query enum: @@ -55343,7 +55641,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &392 + schema: &395 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -55353,7 +55651,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *388 + query_language: *391 query_pack_url: type: string description: The download url for the query pack. @@ -55400,7 +55698,7 @@ paths: items: type: object properties: - repository: &389 + repository: &392 title: Repository Identifier description: Repository Identifier type: object @@ -55436,7 +55734,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &393 + analysis_status: &396 type: string description: The new status of the CodeQL variant analysis repository task. @@ -55468,7 +55766,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &390 + access_mismatch_repos: &393 type: object properties: repository_count: @@ -55482,7 +55780,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: *389 + items: *392 required: - repository_count - repositories @@ -55504,8 +55802,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *390 - over_limit_repos: *390 + no_codeql_db_repos: *393 + over_limit_repos: *393 required: - access_mismatch_repos - not_found_repos @@ -55521,7 +55819,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &391 + value: &394 summary: Default response value: id: 1 @@ -55673,10 +55971,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *391 + value: *394 repository_lists: summary: Response for a successful variant analysis submission - value: *391 + value: *394 '404': *6 '422': description: Unable to process variant analysis submission @@ -55704,8 +56002,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: - - *275 - - *276 + - *278 + - *279 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -55717,9 +56015,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *395 examples: - default: *391 + default: *394 '404': *6 '503': *65 x-github: @@ -55742,7 +56040,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: - - *275 + - *278 - name: repo in: path description: The name of the controller repository. @@ -55777,7 +56075,7 @@ paths: type: object properties: repository: *53 - analysis_status: *393 + analysis_status: *396 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -55902,8 +56200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -55977,7 +56275,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *374 + '403': *377 '404': *6 '503': *65 x-github: @@ -55998,8 +56296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56081,7 +56379,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *380 + '403': *383 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -56146,8 +56444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56155,7 +56453,7 @@ paths: schema: type: object properties: - commit_sha: *394 + commit_sha: *397 ref: type: string description: |- @@ -56213,7 +56511,7 @@ paths: schema: type: object properties: - id: *385 + id: *388 url: type: string description: The REST API URL for checking the status of the upload. @@ -56227,7 +56525,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': *380 + '403': *383 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -56250,8 +56548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *275 - - *276 + - *278 + - *279 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -56297,7 +56595,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': *374 + '403': *377 '404': description: Not Found if the sarif id does not match any upload '503': *65 @@ -56322,8 +56620,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -56404,8 +56702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *275 - - *276 + - *278 + - *279 - 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 @@ -56525,8 +56823,8 @@ paths: parameters: - *17 - *19 - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -56542,7 +56840,7 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: default: value: @@ -56840,8 +57138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -56904,17 +57202,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '400': *14 '401': *25 '403': *29 @@ -56943,8 +57241,8 @@ paths: parameters: - *17 - *19 - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -57008,8 +57306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -57044,14 +57342,14 @@ paths: type: integer machines: type: array - items: &605 + items: &608 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *396 - required: *397 + properties: *399 + required: *400 examples: - default: &606 + default: &609 value: total_count: 2 machines: @@ -57091,8 +57389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *275 - - *276 + - *278 + - *279 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -57176,8 +57474,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: - - *275 - - *276 + - *278 + - *279 - 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 @@ -57243,8 +57541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -57262,7 +57560,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &404 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -57282,7 +57580,7 @@ paths: - created_at - updated_at examples: - default: *398 + default: *401 headers: Link: *58 x-github: @@ -57305,16 +57603,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *399 + schema: *402 examples: - default: *400 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57334,17 +57632,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57364,8 +57662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -57418,8 +57716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -57448,8 +57746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *275 - - *276 + - *278 + - *279 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -57491,7 +57789,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &403 + properties: &406 login: type: string example: octocat @@ -57584,7 +57882,7 @@ paths: user_view_type: type: string example: public - required: &404 + required: &407 - avatar_url - events_url - followers_url @@ -57658,8 +57956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '204': @@ -57702,8 +58000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 requestBody: required: false @@ -57730,7 +58028,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &471 + schema: &474 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -57952,8 +58250,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '204': @@ -57983,8 +58281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *275 - - *276 + - *278 + - *279 - *132 responses: '200': @@ -58005,8 +58303,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *403 - required: *404 + properties: *406 + required: *407 nullable: true required: - permission @@ -58061,8 +58359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -58072,7 +58370,7 @@ paths: application/json: schema: type: array - items: &405 + items: &408 title: Commit Comment description: Commit Comment type: object @@ -58130,7 +58428,7 @@ paths: - created_at - updated_at examples: - default: &408 + default: &411 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58189,17 +58487,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: &409 + default: &412 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58256,8 +58554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -58280,7 +58578,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: default: value: @@ -58331,8 +58629,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -58354,8 +58652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -58382,9 +58680,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -58405,8 +58703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -58439,16 +58737,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -58470,10 +58768,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -58522,8 +58820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *275 - - *276 + - *278 + - *279 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -58579,9 +58877,9 @@ paths: application/json: schema: type: array - items: *406 + items: *409 examples: - default: &522 + default: &525 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -58675,9 +58973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *275 - - *276 - - &407 + - *278 + - *279 + - &410 name: commit_sha description: The SHA of the commit. in: path @@ -58749,9 +59047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 - *17 - *19 responses: @@ -58761,9 +59059,9 @@ paths: application/json: schema: type: array - items: *405 + items: *408 examples: - default: *408 + default: *411 headers: Link: *58 x-github: @@ -58791,9 +59089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 requestBody: required: true content: @@ -58828,9 +59126,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *409 + default: *412 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -58858,9 +59156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 - *17 - *19 responses: @@ -58870,7 +59168,7 @@ paths: application/json: schema: type: array - items: &513 + items: &516 title: Pull Request Simple description: Pull Request Simple type: object @@ -58976,8 +59274,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true active_lock_reason: type: string @@ -59073,7 +59371,7 @@ paths: _links: type: object properties: - comments: &412 + comments: &415 title: Link description: Hypermedia Link type: object @@ -59082,13 +59380,13 @@ paths: type: string required: - href - commits: *412 - statuses: *412 - html: *412 - issue: *412 - review_comments: *412 - review_comment: *412 - self: *412 + commits: *415 + statuses: *415 + html: *415 + issue: *415 + review_comments: *415 + review_comment: *415 + self: *415 required: - comments - commits @@ -59099,7 +59397,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: &515 + auto_merge: &518 title: Auto merge description: The status of auto merging a pull request. type: object @@ -59162,7 +59460,7 @@ paths: - author_association - auto_merge examples: - default: &514 + default: &517 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -59699,11 +59997,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 - - &413 + - &416 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)" @@ -59718,9 +60016,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &500 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -59833,11 +60131,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *275 - - *276 - - *413 - - *414 - - *415 + - *278 + - *279 + - *416 + - *417 + - *418 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -59871,9 +60169,9 @@ paths: type: integer check_runs: type: array - items: *355 + items: *358 examples: - default: *416 + default: *419 headers: Link: *58 x-github: @@ -59898,9 +60196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -59908,7 +60206,7 @@ paths: schema: type: integer example: 1 - - *414 + - *417 - *17 - *19 responses: @@ -59926,7 +60224,7 @@ paths: type: integer check_suites: type: array - items: *360 + items: *363 examples: default: value: @@ -60126,9 +60424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - *17 - *19 responses: @@ -60326,9 +60624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *275 - - *276 - - *413 + - *278 + - *279 + - *416 - *17 - *19 responses: @@ -60338,7 +60636,7 @@ paths: application/json: schema: type: array - items: &579 + items: &582 title: Status description: The status of a commit. type: object @@ -60419,7 +60717,7 @@ paths: site_admin: false headers: Link: *58 - '301': *287 + '301': *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60447,8 +60745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -60477,20 +60775,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *417 - required: *418 + properties: *420 + required: *421 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &419 + properties: &422 url: type: string format: uri html_url: type: string format: uri - required: &420 + required: &423 - url - html_url nullable: true @@ -60504,26 +60802,26 @@ paths: contributing: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true readme: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true issue_template: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true pull_request_template: title: Community Health File type: object - properties: *419 - required: *420 + properties: *422 + required: *423 nullable: true required: - code_of_conduct @@ -60650,8 +60948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 - name: basehead @@ -60694,8 +60992,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *406 - merge_base_commit: *406 + base_commit: *409 + merge_base_commit: *409 status: type: string enum: @@ -60715,10 +61013,10 @@ paths: example: 6 commits: type: array - items: *406 + items: *409 files: type: array - items: *421 + items: *424 required: - url - html_url @@ -61004,8 +61302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61146,7 +61444,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &422 + response-if-content-is-a-file: &425 summary: Response if content is a file value: type: file @@ -61278,7 +61576,7 @@ paths: - size - type - url - - &527 + - &530 title: Content File description: Content File type: object @@ -61479,7 +61777,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *422 + response-if-content-is-a-file: *425 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -61548,7 +61846,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *423 + '302': *426 '304': *37 x-github: githubCloudOnly: false @@ -61571,8 +61869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61665,7 +61963,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &427 title: File Commit description: File Commit type: object @@ -61817,7 +62115,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: example-for-creating-a-file: value: @@ -61871,7 +62169,7 @@ paths: schema: oneOf: - *3 - - &453 + - &456 description: Repository rule violation was detected type: object properties: @@ -61892,7 +62190,7 @@ paths: items: type: object properties: - placeholder_id: &571 + placeholder_id: &574 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -61924,8 +62222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *275 - - *276 + - *278 + - *279 - name: path description: path parameter in: path @@ -61986,7 +62284,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *427 examples: default: value: @@ -62041,8 +62339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *275 - - *276 + - *278 + - *279 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -62165,8 +62463,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *149 - *150 - *151 @@ -62208,7 +62506,7 @@ paths: application/json: schema: type: array - items: &427 + items: &430 type: object description: A Dependabot alert. properties: @@ -62254,7 +62552,7 @@ paths: - unknown - direct - transitive - security_advisory: *425 + security_advisory: *428 security_vulnerability: *52 url: *56 html_url: *57 @@ -62285,7 +62583,7 @@ paths: nullable: true maxLength: 280 fixed_at: *134 - auto_dismissed_at: *426 + auto_dismissed_at: *429 required: - number - state @@ -62515,9 +62813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *275 - - *276 - - &428 + - *278 + - *279 + - &431 name: alert_number in: path description: |- @@ -62532,7 +62830,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -62645,9 +62943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *275 - - *276 - - *428 + - *278 + - *279 + - *431 requestBody: required: true content: @@ -62692,7 +62990,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -62821,8 +63119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -62840,7 +63138,7 @@ paths: type: integer secrets: type: array - items: &431 + items: &434 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -62893,16 +63191,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *429 + schema: *432 examples: - default: *430 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62922,15 +63220,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '200': description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -62956,8 +63254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 requestBody: required: true @@ -63010,8 +63308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *275 - - *276 + - *278 + - *279 - *127 responses: '204': @@ -63034,8 +63332,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: - - *275 - - *276 + - *278 + - *279 - 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 @@ -63195,8 +63493,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -63435,8 +63733,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -63511,7 +63809,7 @@ paths: - version - url additionalProperties: false - metadata: &432 + metadata: &435 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -63544,7 +63842,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *432 + metadata: *435 resolved: type: object description: A collection of resolved package dependencies. @@ -63557,7 +63855,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *432 + metadata: *435 relationship: type: string description: A notation of whether a dependency is requested @@ -63686,8 +63984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *275 - - *276 + - *278 + - *279 - name: sha description: The SHA recorded at creation time. in: query @@ -63727,9 +64025,9 @@ paths: application/json: schema: type: array - items: *433 + items: *436 examples: - default: *434 + default: *437 headers: Link: *58 x-github: @@ -63795,8 +64093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -63877,7 +64175,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: simple-example: summary: Simple example @@ -63950,9 +64248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *275 - - *276 - - &435 + - *278 + - *279 + - &438 name: deployment_id description: deployment_id parameter in: path @@ -63964,7 +64262,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: default: value: @@ -64029,9 +64327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 responses: '204': description: Response @@ -64053,9 +64351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 - *17 - *19 responses: @@ -64065,7 +64363,7 @@ paths: application/json: schema: type: array - items: &436 + items: &439 title: Deployment Status description: The status of a deployment. type: object @@ -64226,9 +64524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 requestBody: required: true content: @@ -64303,9 +64601,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: &437 + default: &440 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -64361,9 +64659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *275 - - *276 - - *435 + - *278 + - *279 + - *438 - name: status_id in: path required: true @@ -64374,9 +64672,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 '404': *6 x-github: githubCloudOnly: false @@ -64401,8 +64699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -64459,8 +64757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -64477,7 +64775,7 @@ paths: type: integer environments: type: array - items: &439 + items: &442 title: Environment description: Details of a deployment environment type: object @@ -64529,7 +64827,7 @@ paths: type: type: string example: wait_timer - wait_timer: &441 + wait_timer: &444 type: integer example: 30 description: The amount of time to delay a job after @@ -64566,7 +64864,7 @@ paths: items: type: object properties: - type: *438 + type: *441 reviewer: anyOf: - *4 @@ -64590,7 +64888,7 @@ paths: - id - node_id - type - deployment_branch_policy: &442 + deployment_branch_policy: &445 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -64706,9 +65004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *275 - - *276 - - &440 + - *278 + - *279 + - &443 name: environment_name in: path required: true @@ -64721,9 +65019,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: &443 + default: &446 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -64807,9 +65105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: false content: @@ -64818,7 +65116,7 @@ paths: type: object nullable: true properties: - wait_timer: *441 + wait_timer: *444 prevent_self_review: type: boolean example: false @@ -64835,13 +65133,13 @@ paths: items: type: object properties: - type: *438 + type: *441 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *442 + deployment_branch_policy: *445 additionalProperties: false examples: default: @@ -64861,9 +65159,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: *443 + default: *446 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -64887,9 +65185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 responses: '204': description: Default response @@ -64914,9 +65212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *17 - *19 responses: @@ -64934,7 +65232,7 @@ paths: example: 2 branch_policies: type: array - items: &444 + items: &447 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -64991,9 +65289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: true content: @@ -65039,9 +65337,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - example-wildcard: &445 + example-wildcard: &448 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -65083,10 +65381,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - &446 + - *278 + - *279 + - *443 + - &449 name: branch_policy_id in: path required: true @@ -65098,9 +65396,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65119,10 +65417,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - *446 + - *278 + - *279 + - *443 + - *449 requestBody: required: true content: @@ -65150,9 +65448,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65171,10 +65469,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *275 - - *276 - - *440 - - *446 + - *278 + - *279 + - *443 + - *449 responses: '204': description: Response @@ -65199,9 +65497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 responses: '200': description: List of deployment protection rules @@ -65217,7 +65515,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &447 + items: &450 title: Deployment protection rule description: Deployment protection rule type: object @@ -65236,7 +65534,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &448 + app: &451 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -65335,9 +65633,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: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 requestBody: content: application/json: @@ -65358,9 +65656,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *447 + schema: *450 examples: - default: &449 + default: &452 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -65395,9 +65693,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: - - *440 - - *276 - - *275 + - *443 + - *279 + - *278 - *19 - *17 responses: @@ -65416,7 +65714,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *448 + items: *451 examples: default: value: @@ -65451,10 +65749,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *275 - - *276 - - *440 - - &450 + - *278 + - *279 + - *443 + - &453 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -65466,9 +65764,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *450 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65489,10 +65787,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *440 - - *276 - - *275 - - *450 + - *443 + - *279 + - *278 + - *453 responses: '204': description: Response @@ -65518,9 +65816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *17 - *19 responses: @@ -65538,9 +65836,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *324 examples: - default: *322 + default: *325 headers: Link: *58 x-github: @@ -65565,17 +65863,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 responses: '200': description: Response content: application/json: - schema: *323 + schema: *326 examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65597,18 +65895,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65630,9 +65928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 requestBody: required: true @@ -65690,9 +65988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *127 responses: '204': @@ -65718,10 +66016,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *275 - - *276 - - *440 - - *297 + - *278 + - *279 + - *443 + - *300 - *19 responses: '200': @@ -65738,9 +66036,9 @@ paths: type: integer variables: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *58 x-github: @@ -65763,9 +66061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 requestBody: required: true content: @@ -65817,18 +66115,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *275 - - *276 - - *440 + - *278 + - *279 + - *443 - *130 responses: '200': description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: *452 + default: *455 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65849,10 +66147,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 - - *440 + - *443 requestBody: required: true content: @@ -65894,10 +66192,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *275 - - *276 + - *278 + - *279 - *130 - - *440 + - *443 responses: '204': description: Response @@ -65919,8 +66217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -65997,8 +66295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *275 - - *276 + - *278 + - *279 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -66157,8 +66455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -66190,9 +66488,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 '400': *14 '422': *15 '403': *29 @@ -66213,8 +66511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66274,7 +66572,7 @@ paths: schema: oneOf: - *97 - - *453 + - *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66299,8 +66597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *275 - - *276 + - *278 + - *279 - name: file_sha in: path required: true @@ -66399,8 +66697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66509,7 +66807,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &457 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -66723,15 +67021,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *275 - - *276 - - *407 + - *278 + - *279 + - *410 responses: '200': description: Response content: application/json: - schema: *454 + schema: *457 examples: default: value: @@ -66787,9 +67085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *275 - - *276 - - &455 + - *278 + - *279 + - &458 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. @@ -66806,7 +67104,7 @@ paths: application/json: schema: type: array - items: &456 + items: &459 title: Git Reference description: Git references within a repository type: object @@ -66881,17 +67179,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 responses: '200': description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: &457 + default: &460 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -66920,8 +67218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -66950,9 +67248,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: *457 + default: *460 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -66978,9 +67276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 requestBody: required: true content: @@ -67009,9 +67307,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *459 examples: - default: *457 + default: *460 '422': *15 '409': *46 x-github: @@ -67029,9 +67327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *275 - - *276 - - *455 + - *278 + - *279 + - *458 responses: '204': description: Response @@ -67084,8 +67382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -67152,7 +67450,7 @@ paths: description: Response content: application/json: - schema: &459 + schema: &462 title: Git Tag description: Metadata for a Git tag type: object @@ -67203,7 +67501,7 @@ paths: - sha - type - url - verification: *458 + verification: *461 required: - sha - url @@ -67213,7 +67511,7 @@ paths: - tag - message examples: - default: &460 + default: &463 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -67286,8 +67584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *275 - - *276 + - *278 + - *279 - name: tag_sha in: path required: true @@ -67298,9 +67596,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 '404': *6 '409': *46 x-github: @@ -67324,8 +67622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -67398,7 +67696,7 @@ paths: description: Response content: application/json: - schema: &461 + schema: &464 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -67510,8 +67808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *275 - - *276 + - *278 + - *279 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -67534,7 +67832,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *464 examples: default-response: summary: Default response @@ -67593,8 +67891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -67604,7 +67902,7 @@ paths: application/json: schema: type: array - items: &462 + items: &465 title: Webhook description: Webhooks for repositories. type: object @@ -67658,7 +67956,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &682 + last_response: &685 title: Hook Response type: object properties: @@ -67732,8 +68030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -67785,9 +68083,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: &463 + default: &466 value: type: Repository id: 12345678 @@ -67835,17 +68133,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -67865,8 +68163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 requestBody: required: true @@ -67912,9 +68210,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 + default: *466 '422': *15 '404': *6 x-github: @@ -67935,8 +68233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -67961,8 +68259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '200': @@ -67990,8 +68288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *165 requestBody: required: false @@ -68036,8 +68334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *17 - *166 @@ -68069,8 +68367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *16 responses: @@ -68099,8 +68397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 - *16 responses: @@ -68124,8 +68422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -68151,8 +68449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *275 - - *276 + - *278 + - *279 - *165 responses: '204': @@ -68211,14 +68509,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 title: Import description: A repository import from an external source. type: object @@ -68317,7 +68615,7 @@ paths: - html_url - authors_url examples: - default: &467 + default: &470 value: vcs: subversion use_lfs: true @@ -68333,7 +68631,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': &465 + '503': &468 description: Unavailable due to service under maintenance. content: application/json: @@ -68362,8 +68660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -68411,7 +68709,7 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: default: value: @@ -68436,7 +68734,7 @@ paths: type: string '422': *15 '404': *6 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68464,8 +68762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -68514,7 +68812,7 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: example-1: summary: Example 1 @@ -68562,7 +68860,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': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68585,12 +68883,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68616,9 +68914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *275 - - *276 - - &629 + - *278 + - *279 + - &632 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -68632,7 +68930,7 @@ paths: application/json: schema: type: array - items: &466 + items: &469 title: Porter Author description: Porter Author type: object @@ -68686,7 +68984,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': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68711,8 +69009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *275 - - *276 + - *278 + - *279 - name: author_id in: path required: true @@ -68742,7 +69040,7 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: default: value: @@ -68755,7 +69053,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68779,8 +69077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68821,7 +69119,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68849,8 +69147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -68877,11 +69175,11 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *467 + default: *470 '422': *15 - '503': *465 + '503': *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68904,8 +69202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68913,8 +69211,8 @@ paths: application/json: schema: *22 examples: - default: *468 - '301': *287 + default: *471 + '301': *290 '404': *6 x-github: githubCloudOnly: false @@ -68934,8 +69232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -68948,7 +69246,7 @@ paths: properties: {} additionalProperties: false examples: - default: &470 + default: &473 value: limit: collaborators_only origin: repository @@ -68973,13 +69271,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: application/json: - schema: *469 + schema: *472 examples: default: summary: Example request body @@ -68993,7 +69291,7 @@ paths: application/json: schema: *183 examples: - default: *470 + default: *473 '409': description: Response x-github: @@ -69015,8 +69313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -69039,8 +69337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -69050,9 +69348,9 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: &622 + default: &625 value: - id: 1 repository: @@ -69183,8 +69481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *275 - - *276 + - *278 + - *279 - *187 requestBody: required: false @@ -69214,7 +69512,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: default: value: @@ -69345,8 +69643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *275 - - *276 + - *278 + - *279 - *187 responses: '204': @@ -69378,8 +69676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *275 - - *276 + - *278 + - *279 - 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 @@ -69407,6 +69705,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 @@ -69419,7 +69725,7 @@ paths: required: false schema: type: string - - *189 + - *192 - name: sort description: What to sort results by. in: query @@ -69444,7 +69750,7 @@ paths: type: array items: *77 examples: - default: &482 + default: &485 value: - id: 1 node_id: MDU6SXNzdWUx @@ -69592,7 +69898,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *287 + '301': *290 '422': *15 '404': *6 x-github: @@ -69621,8 +69927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -69680,6 +69986,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -69699,7 +70010,7 @@ paths: application/json: schema: *77 examples: - default: &477 + default: &480 value: id: 1 node_id: MDU6SXNzdWUx @@ -69855,7 +70166,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *284 + '410': *287 x-github: triggersNotification: true githubCloudOnly: false @@ -69883,8 +70194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -69905,9 +70216,9 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: &479 + default: &482 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -69965,17 +70276,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: &473 + default: &476 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -70029,8 +70340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -70053,9 +70364,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *473 + default: *476 '422': *15 x-github: githubCloudOnly: false @@ -70073,8 +70384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -70095,8 +70406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -70123,9 +70434,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -70146,8 +70457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -70180,16 +70491,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -70211,10 +70522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -70234,8 +70545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -70245,7 +70556,7 @@ paths: application/json: schema: type: array - items: &476 + items: &479 title: Issue Event description: Issue Event type: object @@ -70288,8 +70599,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *474 - required: *475 + properties: *477 + required: *478 nullable: true label: title: Issue Event Label @@ -70596,8 +70907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *275 - - *276 + - *278 + - *279 - name: event_id in: path required: true @@ -70608,7 +70919,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -70801,7 +71112,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *284 + '410': *287 '403': *29 x-github: githubCloudOnly: false @@ -70835,9 +71146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *275 - - *276 - - &478 + - *278 + - *279 + - &481 name: issue_number description: The number that identifies the issue. in: path @@ -70851,10 +71162,10 @@ paths: application/json: schema: *77 examples: - default: *477 - '301': *287 + default: *480 + '301': *290 '404': *6 - '410': *284 + '410': *287 '304': *37 x-github: githubCloudOnly: false @@ -70879,9 +71190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -70960,6 +71271,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -70978,13 +71295,13 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 '422': *15 '503': *65 '403': *29 - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71002,9 +71319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -71032,7 +71349,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71048,9 +71365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: content: application/json: @@ -71077,7 +71394,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71099,9 +71416,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: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - name: assignee in: path required: true @@ -71141,9 +71458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *67 - *17 - *19 @@ -71154,13 +71471,13 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: *479 + default: *482 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71189,9 +71506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -71213,16 +71530,16 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *473 + default: *476 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *284 + '410': *287 '422': *15 '404': *6 x-github: @@ -71242,9 +71559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -71258,7 +71575,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &483 + - &486 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -71312,7 +71629,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &484 + - &487 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -71448,7 +71765,7 @@ paths: - performed_via_github_app - assignee - assigner - - &485 + - &488 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -71499,7 +71816,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &486 + - &489 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -71550,7 +71867,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &487 + - &490 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -71604,7 +71921,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &488 + - &491 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -71651,7 +71968,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &489 + - &492 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -71698,7 +72015,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &490 + - &493 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -71758,7 +72075,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &491 + - &494 title: Locked Issue Event description: Locked Issue Event type: object @@ -71806,7 +72123,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &495 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -71872,7 +72189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &493 + - &496 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -71938,7 +72255,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &497 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -72004,7 +72321,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &498 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -72095,7 +72412,7 @@ paths: color: red headers: Link: *58 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72112,9 +72429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72124,7 +72441,7 @@ paths: application/json: schema: type: array - items: &480 + items: &483 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -72171,7 +72488,7 @@ paths: - color - default examples: - default: &481 + default: &484 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -72189,9 +72506,9 @@ paths: default: false headers: Link: *58 - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72208,9 +72525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72269,12 +72586,12 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 - '301': *287 + default: *484 + '301': *290 '404': *6 - '410': *284 + '410': *287 '422': *15 x-github: githubCloudOnly: false @@ -72291,9 +72608,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72353,12 +72670,12 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 - '301': *287 + default: *484 + '301': *290 '404': *6 - '410': *284 + '410': *287 '422': *15 x-github: githubCloudOnly: false @@ -72375,15 +72692,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 responses: '204': description: Response - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72402,9 +72719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - name: name in: path required: true @@ -72417,7 +72734,7 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: default: value: @@ -72428,9 +72745,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *287 + '301': *290 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72450,9 +72767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: false content: @@ -72480,7 +72797,7 @@ paths: '204': description: Response '403': *29 - '410': *284 + '410': *287 '404': *6 '422': *15 x-github: @@ -72498,9 +72815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 responses: '204': description: Response @@ -72522,9 +72839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - 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. @@ -72550,13 +72867,13 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72574,9 +72891,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72608,16 +72925,16 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -72639,10 +72956,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *275 - - *276 - - *478 - - *271 + - *278 + - *279 + - *481 + - *274 responses: '204': description: Response @@ -72671,9 +72988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72697,7 +73014,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -72730,9 +73047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72744,11 +73061,11 @@ paths: type: array items: *77 examples: - default: *482 + default: *485 headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72776,9 +73093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72807,14 +73124,14 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *284 + '410': *287 '422': *15 '404': *6 x-github: @@ -72834,9 +73151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 requestBody: required: true content: @@ -72869,7 +73186,7 @@ paths: application/json: schema: *77 examples: - default: *477 + default: *480 '403': *29 '404': *6 '422': *7 @@ -72891,9 +73208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *275 - - *276 - - *478 + - *278 + - *279 + - *481 - *17 - *19 responses: @@ -72908,9 +73225,6 @@ paths: description: Timeline Event type: object anyOf: - - *483 - - *484 - - *485 - *486 - *487 - *488 @@ -72921,6 +73235,9 @@ paths: - *493 - *494 - *495 + - *496 + - *497 + - *498 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -73225,7 +73542,7 @@ paths: type: string comments: type: array - items: &516 + items: &519 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -73434,7 +73751,7 @@ paths: type: string comments: type: array - items: *405 + items: *408 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -73723,7 +74040,7 @@ paths: headers: Link: *58 '404': *6 - '410': *284 + '410': *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73740,8 +74057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -73751,7 +74068,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -73816,8 +74133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -73853,9 +74170,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: id: 1 key: ssh-rsa AAA... @@ -73889,9 +74206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *275 - - *276 - - &498 + - *278 + - *279 + - &501 name: key_id description: The unique identifier of the key. in: path @@ -73903,9 +74220,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -73923,9 +74240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *275 - - *276 - - *498 + - *278 + - *279 + - *501 responses: '204': description: Response @@ -73945,8 +74262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -73956,9 +74273,9 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *58 '404': *6 @@ -73979,8 +74296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74016,9 +74333,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: &499 + default: &502 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74050,8 +74367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74062,9 +74379,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: *499 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -74081,8 +74398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74121,7 +74438,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *483 examples: default: value: @@ -74147,8 +74464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *275 - - *276 + - *278 + - *279 - name: name in: path required: true @@ -74174,8 +74491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -74214,9 +74531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *275 - - *276 - - *381 + - *278 + - *279 + - *384 responses: '200': description: Response @@ -74361,8 +74678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74427,8 +74744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74462,9 +74779,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *406 + schema: *409 examples: - default: *500 + default: *503 '204': description: Response when already merged '404': @@ -74489,8 +74806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -74531,12 +74848,12 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 examples: default: value: @@ -74592,8 +74909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -74633,9 +74950,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &502 + default: &505 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -74694,9 +75011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *275 - - *276 - - &503 + - *278 + - *279 + - &506 name: milestone_number description: The number that identifies the milestone. in: path @@ -74708,9 +75025,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -74727,9 +75044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 requestBody: required: false content: @@ -74767,9 +75084,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74785,9 +75102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 responses: '204': description: Response @@ -74808,9 +75125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *275 - - *276 - - *503 + - *278 + - *279 + - *506 - *17 - *19 responses: @@ -74820,9 +75137,9 @@ paths: application/json: schema: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *58 x-github: @@ -74841,12 +75158,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *275 - - *276 - - *504 - - *505 + - *278 + - *279 + - *507 + - *508 - *67 - - *506 + - *509 - *17 - *19 responses: @@ -74858,7 +75175,7 @@ paths: type: array items: *90 examples: - default: *507 + default: *510 headers: Link: *58 x-github: @@ -74882,8 +75199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -74941,14 +75258,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: &508 + schema: &511 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -75073,7 +75390,7 @@ paths: - custom_404 - public examples: - default: &509 + default: &512 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -75114,8 +75431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75169,9 +75486,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: *509 + default: *512 '422': *15 '409': *46 x-github: @@ -75194,8 +75511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75294,8 +75611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -75321,8 +75638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -75332,7 +75649,7 @@ paths: application/json: schema: type: array - items: &510 + items: &513 title: Page Build description: Page Build type: object @@ -75426,8 +75743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *275 - - *276 + - *278 + - *279 responses: '201': description: Response @@ -75472,16 +75789,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *510 + schema: *513 examples: - default: &511 + default: &514 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -75529,8 +75846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *275 - - *276 + - *278 + - *279 - name: build_id in: path required: true @@ -75541,9 +75858,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *513 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75563,8 +75880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -75669,9 +75986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *275 - - *276 - - &512 + - *278 + - *279 + - &515 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -75729,9 +76046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *275 - - *276 - - *512 + - *278 + - *279 + - *515 responses: '204': *142 '404': *6 @@ -75758,8 +76075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -76017,8 +76334,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: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Private vulnerability reporting status @@ -76055,8 +76372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': *142 '422': *14 @@ -76077,8 +76394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': *142 '422': *14 @@ -76101,8 +76418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: Indicates the state of the projects to return. in: query @@ -76123,7 +76440,7 @@ paths: application/json: schema: type: array - items: *223 + items: *226 examples: default: value: @@ -76163,7 +76480,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -76186,8 +76503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76213,13 +76530,13 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: - default: *283 + default: *286 '401': *25 '403': *29 '404': *6 - '410': *284 + '410': *287 '422': *7 x-github: githubCloudOnly: false @@ -76242,8 +76559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -76251,7 +76568,7 @@ paths: application/json: schema: type: array - items: *228 + items: *231 examples: default: value: @@ -76282,8 +76599,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76295,7 +76612,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *228 + items: *231 required: - properties examples: @@ -76345,8 +76662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *275 - - *276 + - *278 + - *279 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -76406,9 +76723,9 @@ paths: application/json: schema: type: array - items: *513 + items: *516 examples: - default: *514 + default: *517 headers: Link: *58 '304': *37 @@ -76440,8 +76757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -76506,7 +76823,7 @@ paths: description: Response content: application/json: - schema: &518 + schema: &521 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -76617,8 +76934,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true active_lock_reason: type: string @@ -76663,7 +76980,7 @@ paths: nullable: true requested_teams: type: array - items: *251 + items: *254 nullable: true head: type: object @@ -76702,14 +77019,14 @@ paths: _links: type: object properties: - comments: *412 - commits: *412 - statuses: *412 - html: *412 - issue: *412 - review_comments: *412 - review_comment: *412 - self: *412 + comments: *415 + commits: *415 + statuses: *415 + html: *415 + issue: *415 + review_comments: *415 + review_comment: *415 + self: *415 required: - comments - commits @@ -76720,7 +77037,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: *515 + auto_merge: *518 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -76812,7 +77129,7 @@ paths: - merged_by - review_comments examples: - default: &519 + default: &522 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -77339,8 +77656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *275 - - *276 + - *278 + - *279 - name: sort in: query required: false @@ -77369,9 +77686,9 @@ paths: application/json: schema: type: array - items: *516 + items: *519 examples: - default: &521 + default: &524 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -77448,17 +77765,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -77533,8 +77850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -77557,9 +77874,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77575,8 +77892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 + - *278 + - *279 - *76 responses: '204': @@ -77598,8 +77915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -77626,9 +77943,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -77649,8 +77966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *275 - - *276 + - *278 + - *279 - *76 requestBody: required: true @@ -77683,16 +78000,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -77714,10 +78031,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *275 - - *276 + - *278 + - *279 - *76 - - *271 + - *274 responses: '204': description: Response @@ -77760,9 +78077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *275 - - *276 - - &520 + - *278 + - *279 + - &523 name: pull_number description: The number that identifies the pull request. in: path @@ -77775,9 +78092,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 '304': *37 '404': *6 '406': @@ -77812,9 +78129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -77856,9 +78173,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 '422': *15 '403': *29 x-github: @@ -77880,9 +78197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -77942,17 +78259,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -77982,9 +78299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -78005,9 +78322,9 @@ paths: application/json: schema: type: array - items: *516 + items: *519 examples: - default: *521 + default: *524 headers: Link: *58 x-github: @@ -78040,9 +78357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -78147,7 +78464,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: example-for-a-multi-line-comment: value: @@ -78235,9 +78552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *76 requestBody: required: true @@ -78260,7 +78577,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: default: value: @@ -78346,9 +78663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -78358,9 +78675,9 @@ paths: application/json: schema: type: array - items: *406 + items: *409 examples: - default: *522 + default: *525 headers: Link: *58 x-github: @@ -78390,9 +78707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -78402,7 +78719,7 @@ paths: application/json: schema: type: array - items: *421 + items: *424 examples: default: value: @@ -78440,9 +78757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 responses: '204': description: Response if pull request has been merged @@ -78465,9 +78782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -78578,9 +78895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 responses: '200': description: Response @@ -78655,9 +78972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -78694,7 +79011,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: default: value: @@ -79230,9 +79547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: true content: @@ -79266,7 +79583,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: default: value: @@ -79771,9 +80088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 - *17 - *19 responses: @@ -79783,7 +80100,7 @@ paths: application/json: schema: type: array - items: &523 + items: &526 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -79934,9 +80251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -80022,9 +80339,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &525 + default: &528 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -80087,10 +80404,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - &524 + - *278 + - *279 + - *523 + - &527 name: review_id description: The unique identifier of the review. in: path @@ -80102,9 +80419,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &526 + default: &529 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -80163,10 +80480,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80189,7 +80506,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: default: value: @@ -80251,18 +80568,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *525 + default: *528 '422': *7 '404': *6 x-github: @@ -80289,10 +80606,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 - *17 - *19 responses: @@ -80375,9 +80692,9 @@ paths: _links: type: object properties: - self: *412 - html: *412 - pull_request: *412 + self: *415 + html: *415 + pull_request: *415 required: - self - html @@ -80520,10 +80837,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80551,7 +80868,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: default: value: @@ -80614,10 +80931,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *275 - - *276 - - *520 - - *524 + - *278 + - *279 + - *523 + - *527 requestBody: required: true content: @@ -80652,9 +80969,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *526 + default: *529 '404': *6 '422': *7 '403': *29 @@ -80676,9 +80993,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *275 - - *276 - - *520 + - *278 + - *279 + - *523 requestBody: required: false content: @@ -80741,8 +81058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *275 - - *276 + - *278 + - *279 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -80755,9 +81072,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: &528 + default: &531 value: type: file encoding: base64 @@ -80799,8 +81116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *275 - - *276 + - *278 + - *279 - name: dir description: The alternate path to look for a README file in: path @@ -80820,9 +81137,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: *528 + default: *531 '404': *6 '422': *15 x-github: @@ -80844,8 +81161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -80855,7 +81172,7 @@ paths: application/json: schema: type: array - items: &529 + items: &532 title: Release description: A release. type: object @@ -80918,7 +81235,7 @@ paths: author: *4 assets: type: array - items: &530 + items: &533 title: Release Asset description: Data related to a release. type: object @@ -81099,8 +81416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -81176,9 +81493,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: &533 + default: &536 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -81281,9 +81598,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *275 - - *276 - - &531 + - *278 + - *279 + - &534 name: asset_id description: The unique identifier of the asset. in: path @@ -81295,9 +81612,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: &532 + default: &535 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 @@ -81331,7 +81648,7 @@ paths: type: User site_admin: false '404': *6 - '302': *423 + '302': *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81347,9 +81664,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *275 - - *276 - - *531 + - *278 + - *279 + - *534 requestBody: required: false content: @@ -81377,9 +81694,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81395,9 +81712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *275 - - *276 - - *531 + - *278 + - *279 + - *534 responses: '204': description: Response @@ -81421,8 +81738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -81507,16 +81824,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81533,8 +81850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *275 - - *276 + - *278 + - *279 - name: tag description: tag parameter in: path @@ -81547,9 +81864,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 '404': *6 x-github: githubCloudOnly: false @@ -81571,9 +81888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *275 - - *276 - - &534 + - *278 + - *279 + - &537 name: release_id description: The unique identifier of the release. in: path @@ -81587,9 +81904,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: *529 + schema: *532 examples: - default: *533 + default: *536 '401': description: Unauthorized x-github: @@ -81607,9 +81924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 requestBody: required: false content: @@ -81673,9 +81990,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: - default: *533 + default: *536 '404': description: Not Found if the discussion category name is invalid content: @@ -81696,9 +82013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 responses: '204': description: Response @@ -81718,9 +82035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - *17 - *19 responses: @@ -81730,7 +82047,7 @@ paths: application/json: schema: type: array - items: *530 + items: *533 examples: default: value: @@ -81810,9 +82127,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: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - name: name in: query required: true @@ -81838,7 +82155,7 @@ paths: description: Response for successful upload content: application/json: - schema: *530 + schema: *533 examples: response-for-successful-upload: value: @@ -81892,9 +82209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 - 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. @@ -81918,9 +82235,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 '404': *6 @@ -81941,9 +82258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *275 - - *276 - - *534 + - *278 + - *279 + - *537 requestBody: required: true content: @@ -81973,16 +82290,16 @@ paths: description: Reaction exists content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '201': description: Reaction created content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '422': *15 x-github: githubCloudOnly: false @@ -82004,10 +82321,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *275 - - *276 - - *534 - - *271 + - *278 + - *279 + - *537 + - *274 responses: '204': description: Response @@ -82031,9 +82348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *275 - - *276 - - *343 + - *278 + - *279 + - *346 - *17 - *19 responses: @@ -82049,8 +82366,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *535 - - &537 + - *538 + - &540 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -82069,54 +82386,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *536 - - *537 - - allOf: - - *538 - - *537 - allOf: - *539 - - *537 - - allOf: - *540 - - *537 - allOf: - *541 - - *537 + - *540 - allOf: - *542 - - *537 + - *540 - allOf: - *543 - - *537 + - *540 - allOf: - *544 - - *537 + - *540 - allOf: - *545 - - *537 + - *540 - allOf: - *546 - - *537 + - *540 - allOf: - *547 - - *537 + - *540 - allOf: - *548 - - *537 + - *540 - allOf: - *549 - - *537 + - *540 - allOf: - *550 - - *537 + - *540 - allOf: - *551 - - *537 + - *540 - allOf: - *552 - - *537 + - *540 + - allOf: + - *553 + - *540 + - allOf: + - *554 + - *540 + - allOf: + - *555 + - *540 examples: default: value: @@ -82155,8 +82472,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - name: includes_parents @@ -82167,7 +82484,7 @@ paths: schema: type: boolean default: true - - *553 + - *556 responses: '200': description: Response @@ -82175,7 +82492,7 @@ paths: application/json: schema: type: array - items: *238 + items: *241 examples: default: value: @@ -82222,8 +82539,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 requestBody: description: Request body required: true @@ -82243,16 +82560,16 @@ paths: - tag - push default: branch - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *232 + items: *238 + conditions: *235 rules: type: array description: An array of rules within the ruleset. - items: *237 + items: *240 required: - name - enforcement @@ -82283,9 +82600,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: &563 + default: &566 value: id: 42 name: super cool ruleset @@ -82332,12 +82649,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *275 - - *276 - - *554 - - *555 - - *556 + - *278 + - *279 - *557 + - *558 + - *559 + - *560 - *17 - *19 responses: @@ -82345,9 +82662,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: - default: *559 + default: *562 '404': *6 '500': *145 x-github: @@ -82368,17 +82685,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *275 - - *276 - - *560 + - *278 + - *279 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 '500': *145 x-github: @@ -82406,8 +82723,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82427,9 +82744,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *563 + default: *566 '404': *6 '500': *145 put: @@ -82447,8 +82764,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82473,16 +82790,16 @@ paths: - branch - tag - push - enforcement: *234 + enforcement: *237 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *235 - conditions: *232 + items: *238 + conditions: *235 rules: description: An array of rules within the ruleset. type: array - items: *237 + items: *240 examples: default: value: @@ -82510,9 +82827,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *563 + default: *566 '404': *6 '500': *145 delete: @@ -82530,8 +82847,8 @@ paths: category: repos subcategory: rules parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82554,8 +82871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 - name: ruleset_id @@ -82571,9 +82888,9 @@ paths: application/json: schema: type: array - items: *240 + items: *243 examples: - default: *564 + default: *567 '404': *6 '500': *145 x-github: @@ -82592,8 +82909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *275 - - *276 + - *278 + - *279 - name: ruleset_id description: The ID of the ruleset. in: path @@ -82611,7 +82928,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *568 examples: default: value: @@ -82666,20 +82983,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *275 - - *276 - - *241 - - *242 - - *243 + - *278 + - *279 - *244 - - *48 - - *19 - - *17 - - *566 - - *567 - *245 - *246 - *247 + - *48 + - *19 + - *17 + - *569 + - *570 + - *248 + - *249 + - *250 responses: '200': description: Response @@ -82687,7 +83004,7 @@ paths: application/json: schema: type: array - items: &570 + items: &573 type: object properties: number: *54 @@ -82706,8 +83023,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *568 - resolution: *569 + state: *571 + resolution: *572 resolved_at: type: string format: date-time @@ -82925,15 +83242,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 responses: '200': description: Response content: application/json: - schema: *570 + schema: *573 examples: default: value: @@ -82985,9 +83302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 requestBody: required: true content: @@ -82995,8 +83312,8 @@ paths: schema: type: object properties: - state: *568 - resolution: *569 + state: *571 + resolution: *572 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -83014,7 +83331,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *573 examples: default: value: @@ -83089,9 +83406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *275 - - *276 - - *375 + - *278 + - *279 + - *378 - *19 - *17 responses: @@ -83102,7 +83419,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &703 + items: &706 type: object properties: type: @@ -83461,8 +83778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -83470,14 +83787,14 @@ paths: schema: type: object properties: - reason: &572 + reason: &575 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *571 + placeholder_id: *574 required: - reason - placeholder_id @@ -83494,7 +83811,7 @@ paths: schema: type: object properties: - reason: *572 + reason: *575 expire_at: type: string format: date-time @@ -83537,8 +83854,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: - - *275 - - *276 + - *278 + - *279 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -83553,7 +83870,7 @@ paths: properties: incremental_scans: type: array - items: &573 + items: &576 description: Information on a single scan performed by secret scanning on the repository type: object @@ -83579,15 +83896,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *573 + items: *576 backfill_scans: type: array - items: *573 + items: *576 custom_pattern_backfill_scans: type: array items: allOf: - - *573 + - *576 - type: object properties: pattern_name: @@ -83657,8 +83974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *275 - - *276 + - *278 + - *279 - *48 - name: sort description: The property to sort the results by. @@ -83702,9 +84019,9 @@ paths: application/json: schema: type: array - items: *574 + items: *577 examples: - default: *575 + default: *578 '400': *14 '404': *6 x-github: @@ -83727,8 +84044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -83801,7 +84118,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 required: - login - type @@ -83888,9 +84205,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: &577 + default: &580 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -84123,8 +84440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -84228,7 +84545,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: default: value: @@ -84375,17 +84692,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '200': description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: *577 + default: *580 '403': *29 '404': *6 x-github: @@ -84409,9 +84726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 requestBody: required: true content: @@ -84484,7 +84801,7 @@ paths: login: type: string description: The username of the user credited. - type: *250 + type: *253 required: - login - type @@ -84570,10 +84887,10 @@ paths: description: Response content: application/json: - schema: *574 + schema: *577 examples: - default: *577 - add_credit: *577 + default: *580 + add_credit: *580 '403': *29 '404': *6 '422': @@ -84611,9 +84928,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: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '202': *47 '400': *14 @@ -84640,17 +84957,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *275 - - *276 - - *576 + - *278 + - *279 + - *579 responses: '202': description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 '400': *14 '422': *15 '403': *29 @@ -84676,8 +84993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -84776,8 +85093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -84786,7 +85103,7 @@ paths: application/json: schema: type: array - items: &578 + items: &581 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -84819,8 +85136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -84896,8 +85213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -84993,8 +85310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -85148,8 +85465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -85159,7 +85476,7 @@ paths: application/json: schema: type: array - items: *578 + items: *581 examples: default: value: @@ -85192,8 +85509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *275 - - *276 + - *278 + - *279 - name: sha in: path required: true @@ -85247,7 +85564,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *582 examples: default: value: @@ -85301,8 +85618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85314,7 +85631,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -85334,14 +85651,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &580 + schema: &583 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -85409,8 +85726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: false content: @@ -85436,7 +85753,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -85463,8 +85780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -85484,8 +85801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85564,8 +85881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -85573,7 +85890,7 @@ paths: application/json: schema: type: array - items: &581 + items: &584 title: Tag protection description: Tag protection type: object @@ -85625,8 +85942,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: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -85649,7 +85966,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: default: value: @@ -85680,8 +85997,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: - - *275 - - *276 + - *278 + - *279 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -85718,8 +86035,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *275 - - *276 + - *278 + - *279 - name: ref in: path required: true @@ -85755,8 +86072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *275 - - *276 + - *278 + - *279 - *17 - *19 responses: @@ -85768,7 +86085,7 @@ paths: type: array items: *188 examples: - default: *206 + default: *209 headers: Link: *58 '404': *6 @@ -85788,8 +86105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *275 - - *276 + - *278 + - *279 - *19 - *17 responses: @@ -85797,7 +86114,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -85809,7 +86126,7 @@ paths: required: - names examples: - default: &583 + default: &586 value: names: - octocat @@ -85832,8 +86149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -85864,9 +86181,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '404': *6 '422': *7 x-github: @@ -85887,9 +86204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *275 - - *276 - - &584 + - *278 + - *279 + - &587 name: per description: The time frame to display results for. in: query @@ -85918,7 +86235,7 @@ paths: example: 128 clones: type: array - items: &585 + items: &588 title: Traffic type: object properties: @@ -86005,8 +86322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -86096,8 +86413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *275 - - *276 + - *278 + - *279 responses: '200': description: Response @@ -86157,9 +86474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *275 - - *276 - - *584 + - *278 + - *279 + - *587 responses: '200': description: Response @@ -86178,7 +86495,7 @@ paths: example: 3782 views: type: array - items: *585 + items: *588 required: - uniques - count @@ -86255,8 +86572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *275 - - *276 + - *278 + - *279 requestBody: required: true content: @@ -86530,8 +86847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -86554,8 +86871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -86577,8 +86894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -86604,8 +86921,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *275 - - *276 + - *278 + - *279 - name: ref in: path required: true @@ -86697,9 +87014,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -86947,7 +87264,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &586 + text_matches: &589 title: Search Result Text Matches type: array items: @@ -87109,7 +87426,7 @@ paths: enum: - author-date - committer-date - - &587 + - &590 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 @@ -87180,7 +87497,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true comment_count: type: integer @@ -87200,7 +87517,7 @@ paths: url: type: string format: uri - verification: *458 + verification: *461 required: - author - committer @@ -87219,7 +87536,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *341 + properties: *344 nullable: true parents: type: array @@ -87237,7 +87554,7 @@ paths: type: number node_id: type: string - text_matches: *586 + text_matches: *589 required: - sha - node_id @@ -87419,7 +87736,7 @@ paths: - interactions - created - updated - - *587 + - *590 - *17 - *19 - name: advanced_search @@ -87546,8 +87863,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *410 - required: *411 + properties: *413 + required: *414 nullable: true comments: type: integer @@ -87561,7 +87878,7 @@ paths: type: string format: date-time nullable: true - text_matches: *586 + text_matches: *589 pull_request: type: object properties: @@ -87605,6 +87922,7 @@ paths: timeline_url: type: string format: uri + type: *189 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -87788,7 +88106,7 @@ paths: enum: - created - updated - - *587 + - *590 - *17 - *19 responses: @@ -87832,7 +88150,7 @@ paths: nullable: true score: type: number - text_matches: *586 + text_matches: *589 required: - id - node_id @@ -87917,7 +88235,7 @@ paths: - forks - help-wanted-issues - updated - - *587 + - *590 - *17 - *19 responses: @@ -88156,7 +88474,7 @@ paths: - admin - pull - push - text_matches: *586 + text_matches: *589 temp_clone_token: type: string allow_merge_commit: @@ -88456,7 +88774,7 @@ paths: type: string format: uri nullable: true - text_matches: *586 + text_matches: *589 related: type: array nullable: true @@ -88647,7 +88965,7 @@ paths: - followers - repositories - joined - - *587 + - *590 - *17 - *19 responses: @@ -88751,7 +89069,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *586 + text_matches: *589 blog: type: string nullable: true @@ -88830,7 +89148,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &588 + - &591 name: team_id description: The unique identifier of the team. in: path @@ -88842,9 +89160,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 x-github: githubCloudOnly: false @@ -88871,7 +89189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *588 + - *591 requestBody: required: true content: @@ -88934,16 +89252,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '201': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *261 + default: *264 '404': *6 '422': *15 '403': *29 @@ -88971,7 +89289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *588 + - *591 responses: '204': description: Response @@ -89002,7 +89320,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *588 + - *591 - *48 - *17 - *19 @@ -89013,9 +89331,9 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *589 + default: *592 headers: Link: *58 x-github: @@ -89044,7 +89362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *588 + - *591 requestBody: required: true content: @@ -89078,9 +89396,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: triggersNotification: true githubCloudOnly: false @@ -89107,16 +89425,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 responses: '200': description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89141,8 +89459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: false content: @@ -89165,9 +89483,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *590 + default: *593 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89192,8 +89510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 responses: '204': description: Response @@ -89222,8 +89540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *588 - - *264 + - *591 + - *267 - *48 - *17 - *19 @@ -89234,9 +89552,9 @@ paths: application/json: schema: type: array - items: *265 + items: *268 examples: - default: *591 + default: *594 headers: Link: *58 x-github: @@ -89265,8 +89583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: true content: @@ -89288,9 +89606,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: triggersNotification: true githubCloudOnly: false @@ -89317,17 +89635,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89352,9 +89670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 requestBody: required: true content: @@ -89376,9 +89694,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *592 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89403,9 +89721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 responses: '204': description: Response @@ -89434,9 +89752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 - 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. @@ -89462,9 +89780,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -89493,9 +89811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *588 - - *264 + - *591 - *267 + - *270 requestBody: required: true content: @@ -89527,9 +89845,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89555,8 +89873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 - 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. @@ -89582,9 +89900,9 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: - default: *270 + default: *273 headers: Link: *58 x-github: @@ -89613,8 +89931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *588 - - *264 + - *591 + - *267 requestBody: required: true content: @@ -89646,9 +89964,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89672,7 +89990,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -89710,7 +90028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *588 + - *591 - name: role description: Filters members returned by their role in the team. in: query @@ -89733,7 +90051,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '404': *6 @@ -89761,7 +90079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89798,7 +90116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89838,7 +90156,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -89875,16 +90193,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-user-is-a-team-maintainer: *593 + response-if-user-is-a-team-maintainer: *596 '404': *6 x-github: githubCloudOnly: false @@ -89917,7 +90235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 requestBody: required: false @@ -89943,9 +90261,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *275 examples: - response-if-users-membership-with-team-is-now-pending: *594 + response-if-users-membership-with-team-is-now-pending: *597 '403': description: Forbidden if team synchronization is set up '422': @@ -89979,7 +90297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *588 + - *591 - *132 responses: '204': @@ -90008,7 +90326,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90018,9 +90336,9 @@ paths: application/json: schema: type: array - items: *273 + items: *276 examples: - default: *595 + default: *598 headers: Link: *58 '404': *6 @@ -90046,16 +90364,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *588 - - *274 + - *591 + - *277 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *596 + default: *599 '404': description: Not Found if project is not managed by this team x-github: @@ -90079,8 +90397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *588 - - *274 + - *591 + - *277 requestBody: required: false content: @@ -90147,8 +90465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *588 - - *274 + - *591 + - *277 responses: '204': description: Response @@ -90175,7 +90493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90187,7 +90505,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '404': *6 @@ -90217,15 +90535,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *597 + schema: *600 examples: alternative-response-with-extra-repository-information: value: @@ -90376,9 +90694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 requestBody: required: false content: @@ -90428,9 +90746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *588 - - *275 - - *276 + - *591 + - *278 + - *279 responses: '204': description: Response @@ -90455,7 +90773,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *588 + - *591 - *17 - *19 responses: @@ -90467,7 +90785,7 @@ paths: type: array items: *188 examples: - response-if-child-teams-exist: *598 + response-if-child-teams-exist: *601 headers: Link: *58 '404': *6 @@ -90500,7 +90818,7 @@ paths: application/json: schema: oneOf: - - &600 + - &603 title: Private User description: Private User type: object @@ -90703,7 +91021,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *599 + - *602 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -90856,7 +91174,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -90935,7 +91253,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 '304': *37 '404': *6 '403': *29 @@ -91059,9 +91377,9 @@ paths: type: integer codespaces: type: array - items: *192 + items: *195 examples: - default: *193 + default: *196 '304': *37 '500': *145 '401': *25 @@ -91200,17 +91518,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -91254,7 +91572,7 @@ paths: type: integer secrets: type: array - items: &601 + items: &604 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -91294,7 +91612,7 @@ paths: - visibility - selected_repositories_url examples: - default: *398 + default: *401 headers: Link: *58 x-github: @@ -91370,7 +91688,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -91516,7 +91834,7 @@ paths: type: array items: *119 examples: - default: *602 + default: *605 '401': *25 '403': *29 '404': *6 @@ -91660,15 +91978,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '304': *37 '500': *145 '401': *25 @@ -91694,7 +92012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 requestBody: required: false content: @@ -91724,9 +92042,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '401': *25 '403': *29 '404': *6 @@ -91748,7 +92066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '202': *47 '304': *37 @@ -91777,13 +92095,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '202': description: Response content: application/json: - schema: &603 + schema: &606 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -91824,7 +92142,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &604 + default: &607 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -91856,7 +92174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *194 + - *197 - name: export_id in: path required: true @@ -91869,9 +92187,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: *604 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -91892,7 +92210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *194 + - *197 responses: '200': description: Response @@ -91908,9 +92226,9 @@ paths: type: integer machines: type: array - items: *605 + items: *608 examples: - default: *606 + default: *609 '304': *37 '500': *145 '401': *25 @@ -91939,7 +92257,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *194 + - *197 requestBody: required: true content: @@ -91989,13 +92307,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *286 + repository: *289 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *396 - required: *397 + properties: *399 + required: *400 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -92769,15 +93087,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '304': *37 '500': *145 '400': *14 @@ -92809,15 +93127,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *194 + - *197 responses: '200': description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *395 + default: *398 '500': *145 '401': *25 '403': *29 @@ -92847,9 +93165,9 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: &619 + default: &622 value: - id: 197 name: hello_docker @@ -92950,7 +93268,7 @@ paths: application/json: schema: type: array - items: &607 + items: &610 title: Email description: Email type: object @@ -93015,9 +93333,9 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: - default: &621 + default: &624 value: - email: octocat@github.com verified: true @@ -93092,7 +93410,7 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: default: value: @@ -93202,7 +93520,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '304': *37 @@ -93235,7 +93553,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 '304': *37 @@ -93348,7 +93666,7 @@ paths: application/json: schema: type: array - items: &608 + items: &611 title: GPG Key description: A unique encryption key type: object @@ -93479,7 +93797,7 @@ paths: - subkeys - revoked examples: - default: &632 + default: &635 value: - id: 3 name: Octocat's GPG Key @@ -93564,9 +93882,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: &609 + default: &612 value: id: 3 name: Octocat's GPG Key @@ -93623,7 +93941,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &610 + - &613 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -93635,9 +93953,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: *609 + default: *612 '404': *6 '304': *37 '403': *29 @@ -93660,7 +93978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *610 + - *613 responses: '204': description: Response @@ -93851,7 +94169,7 @@ paths: type: array items: *60 examples: - default: *611 + default: *614 headers: Link: *58 '404': *6 @@ -93965,7 +94283,7 @@ paths: required: true content: application/json: - schema: *469 + schema: *472 examples: default: value: @@ -94057,7 +94375,7 @@ paths: - closed - all default: open - - *189 + - *192 - name: sort description: What to sort results by. in: query @@ -94082,7 +94400,7 @@ paths: type: array items: *77 examples: - default: *190 + default: *193 headers: Link: *58 '404': *6 @@ -94115,7 +94433,7 @@ paths: application/json: schema: type: array - items: &612 + items: &615 title: Key description: Key type: object @@ -94212,9 +94530,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: &613 + default: &616 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -94247,15 +94565,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *498 + - *501 responses: '200': description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: *613 + default: *616 '404': *6 '304': *37 '403': *29 @@ -94278,7 +94596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *498 + - *501 responses: '204': description: Response @@ -94311,7 +94629,7 @@ paths: application/json: schema: type: array - items: &614 + items: &617 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -94379,7 +94697,7 @@ paths: - account - plan examples: - default: &615 + default: &618 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -94441,9 +94759,9 @@ paths: application/json: schema: type: array - items: *614 + items: *617 examples: - default: *615 + default: *618 headers: Link: *58 '304': *37 @@ -94483,7 +94801,7 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: default: value: @@ -94591,7 +94909,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -94674,7 +94992,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -94742,7 +95060,7 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: default: value: @@ -94995,7 +95313,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -95175,7 +95493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *200 + - *203 - name: exclude in: query required: false @@ -95188,7 +95506,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *202 examples: default: value: @@ -95382,7 +95700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *200 + - *203 responses: '302': description: Response @@ -95408,7 +95726,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *200 + - *203 responses: '204': description: Response @@ -95437,8 +95755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *200 - - *616 + - *203 + - *619 responses: '204': description: Response @@ -95462,7 +95780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *200 + - *203 - *17 - *19 responses: @@ -95474,7 +95792,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '404': *6 @@ -95509,9 +95827,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *617 + default: *620 headers: Link: *58 '304': *37 @@ -95553,7 +95871,7 @@ paths: - docker - nuget - container - - *618 + - *621 - *19 - *17 responses: @@ -95563,10 +95881,10 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 - '400': *620 + default: *622 + '400': *623 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95586,16 +95904,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 responses: '200': description: Response content: application/json: - schema: *207 + schema: *210 examples: - default: &633 + default: &636 value: id: 40201 name: octo-name @@ -95708,8 +96026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 responses: '204': description: Response @@ -95739,8 +96057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *209 - - *210 + - *212 + - *213 - name: token description: package token schema: @@ -95772,8 +96090,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: - - *209 - - *210 + - *212 + - *213 - *19 - *17 - name: state @@ -95793,7 +96111,7 @@ paths: application/json: schema: type: array - items: *211 + items: *214 examples: default: value: @@ -95842,15 +96160,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -95886,9 +96204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '204': description: Response @@ -95918,9 +96236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 responses: '204': description: Response @@ -95976,7 +96294,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *226 examples: default: value: @@ -96048,9 +96366,9 @@ paths: application/json: schema: type: array - items: *607 + items: *610 examples: - default: *621 + default: *624 headers: Link: *58 '304': *37 @@ -96163,7 +96481,7 @@ paths: type: array items: *60 examples: - default: &628 + default: &631 summary: Default response value: - id: 1296269 @@ -96465,9 +96783,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *288 + default: *291 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96505,9 +96823,9 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: *622 + default: *625 headers: Link: *58 '304': *37 @@ -96586,7 +96904,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Social account description: Social media account type: object @@ -96601,7 +96919,7 @@ paths: - provider - url examples: - default: &624 + default: &627 value: - provider: twitter url: https://twitter.com/github @@ -96663,9 +96981,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 '422': *15 '304': *37 '404': *6 @@ -96752,7 +97070,7 @@ paths: application/json: schema: type: array - items: &625 + items: &628 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -96772,7 +97090,7 @@ paths: - title - created_at examples: - default: &640 + default: &643 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96838,9 +97156,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: &626 + default: &629 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96871,7 +97189,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: - - &627 + - &630 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -96883,9 +97201,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: *626 + default: *629 '404': *6 '304': *37 '403': *29 @@ -96908,7 +97226,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: - - *627 + - *630 responses: '204': description: Response @@ -96937,7 +97255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &641 + - &644 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 @@ -96962,11 +97280,11 @@ paths: type: array items: *60 examples: - default-response: *628 + default-response: *631 application/vnd.github.v3.star+json: schema: type: array - items: &642 + items: &645 title: Starred Repository description: Starred Repository type: object @@ -97122,8 +97440,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: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response if this repository is starred by you @@ -97151,8 +97469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -97176,8 +97494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *275 - - *276 + - *278 + - *279 responses: '204': description: Response @@ -97212,7 +97530,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 '304': *37 @@ -97249,7 +97567,7 @@ paths: application/json: schema: type: array - items: *260 + items: *263 examples: default: value: @@ -97335,10 +97653,10 @@ paths: application/json: schema: oneOf: - - *600 - - *599 + - *603 + - *602 examples: - default-response: &630 + default-response: &633 summary: Default response value: login: octocat @@ -97373,7 +97691,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &631 + response-with-git-hub-plan-information: &634 summary: Response with GitHub plan information value: login: octocat @@ -97433,7 +97751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *629 + - *632 - *17 responses: '200': @@ -97444,7 +97762,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: example: ; rel="next" @@ -97482,11 +97800,11 @@ paths: application/json: schema: oneOf: - - *600 - - *599 + - *603 + - *602 examples: - default-response: *630 - response-with-git-hub-plan-information: *631 + default-response: *633 + response-with-git-hub-plan-information: *634 '404': *6 x-github: githubCloudOnly: false @@ -97562,7 +97880,7 @@ paths: bundle_url: type: string examples: - default: *337 + default: *340 '201': description: Response content: @@ -97601,9 +97919,9 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 + default: *622 '403': *29 '401': *25 x-github: @@ -97886,7 +98204,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -97917,7 +98235,7 @@ paths: type: array items: *4 examples: - default: *191 + default: *194 headers: Link: *58 x-github: @@ -98007,9 +98325,9 @@ paths: application/json: schema: type: array - items: *608 + items: *611 examples: - default: *632 + default: *635 headers: Link: *58 x-github: @@ -98113,7 +98431,7 @@ paths: application/json: schema: *22 examples: - default: *468 + default: *471 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98189,9 +98507,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *617 + default: *620 headers: Link: *58 x-github: @@ -98230,7 +98548,7 @@ paths: - docker - nuget - container - - *618 + - *621 - *132 - *19 - *17 @@ -98241,12 +98559,12 @@ paths: application/json: schema: type: array - items: *207 + items: *210 examples: - default: *619 + default: *622 '403': *29 '401': *25 - '400': *620 + '400': *623 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98266,17 +98584,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 responses: '200': description: Response content: application/json: - schema: *207 + schema: *210 examples: - default: *633 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98297,8 +98615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 responses: '204': @@ -98331,8 +98649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *209 - - *210 + - *212 + - *213 - *132 - name: token description: package token @@ -98365,8 +98683,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: - - *209 - - *210 + - *212 + - *213 - *132 responses: '200': @@ -98375,7 +98693,7 @@ paths: application/json: schema: type: array - items: *211 + items: *214 examples: default: value: @@ -98433,16 +98751,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *209 - - *210 - *212 + - *213 + - *215 - *132 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: default: value: @@ -98477,10 +98795,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *209 - - *210 - - *132 - *212 + - *213 + - *132 + - *215 responses: '204': description: Response @@ -98512,10 +98830,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *209 - - *210 - - *132 - *212 + - *213 + - *132 + - *215 responses: '204': description: Response @@ -98562,7 +98880,7 @@ paths: application/json: schema: type: array - items: *223 + items: *226 examples: default: value: @@ -98845,7 +99163,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -98875,9 +99193,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *637 examples: - default: *635 + default: *638 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98905,9 +99223,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *637 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98935,9 +99253,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *641 examples: - default: *639 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98965,9 +99283,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 headers: Link: *58 x-github: @@ -98997,9 +99315,9 @@ paths: application/json: schema: type: array - items: *625 + items: *628 examples: - default: *640 + default: *643 headers: Link: *58 x-github: @@ -99024,7 +99342,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *132 - - *641 + - *644 - *48 - *17 - *19 @@ -99036,11 +99354,11 @@ paths: schema: anyOf: - type: array - items: *642 + items: *645 - type: array items: *60 examples: - default-response: *628 + default-response: *631 headers: Link: *58 x-github: @@ -99071,7 +99389,7 @@ paths: type: array items: *119 examples: - default: *213 + default: *216 headers: Link: *58 x-github: @@ -99199,7 +99517,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &643 + enterprise: &646 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -99257,7 +99575,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &644 + installation: &647 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -99276,7 +99594,7 @@ x-webhooks: required: - id - node_id - organization: &645 + organization: &648 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -99336,13 +99654,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &646 + repository: &649 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &676 + properties: &679 id: description: Unique identifier of the repository example: 42 @@ -100025,7 +100343,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &677 + required: &680 - archive_url - assignees_url - blobs_url @@ -100176,10 +100494,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -100255,11 +100573,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: &647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: &650 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) @@ -100482,11 +100800,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: *647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: *650 sender: *4 required: - action @@ -100669,11 +100987,11 @@ x-webhooks: - everyone required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - rule: *647 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + rule: *650 sender: *4 required: - action @@ -100757,7 +101075,7 @@ x-webhooks: type: string enum: - completed - check_run: &649 + check_run: &652 title: CheckRun description: A check performed on the code of a given code change type: object @@ -100820,7 +101138,7 @@ x-webhooks: type: string pull_requests: type: array - items: *354 + items: *357 repository: *119 status: example: completed @@ -100858,7 +101176,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *648 + deployment: *651 details_url: example: https://example.com type: string @@ -100908,7 +101226,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *354 + items: *357 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -100943,9 +101261,9 @@ x-webhooks: - output - app - pull_requests - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -101338,10 +101656,10 @@ x-webhooks: type: string enum: - created - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -101737,10 +102055,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 requested_action: description: The action requested by the user. type: object @@ -102145,10 +102463,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *649 - installation: *644 - organization: *645 - repository: *646 + check_run: *652 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - check_run @@ -103125,10 +103443,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -103798,10 +104116,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -104465,10 +104783,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -104631,7 +104949,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -104776,20 +105094,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &650 + commit_oid: &653 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: *643 - installation: *644 - organization: *645 - ref: &651 + enterprise: *646 + installation: *647 + organization: *648 + ref: &654 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: *646 + repository: *649 sender: *4 required: - action @@ -104951,7 +105269,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -105181,12 +105499,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105281,7 +105599,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -105449,12 +105767,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105617,7 +105935,7 @@ x-webhooks: required: - login - id - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -105783,12 +106101,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -105885,7 +106203,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106053,16 +106371,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *646 + repository: *649 sender: *4 required: - action @@ -106156,7 +106474,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *370 + dismissed_comment: *373 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -106296,12 +106614,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *650 - enterprise: *643 - installation: *644 - organization: *645 - ref: *651 - repository: *646 + commit_oid: *653 + enterprise: *646 + installation: *647 + organization: *648 + ref: *654 + repository: *649 sender: *4 required: - action @@ -106558,10 +106876,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -106641,18 +106959,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *645 - pusher_type: &652 + organization: *648 + pusher_type: &655 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &653 + ref: &656 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -106662,7 +106980,7 @@ x-webhooks: enum: - tag - branch - repository: *646 + repository: *649 sender: *4 required: - ref @@ -106744,10 +107062,10 @@ x-webhooks: type: string enum: - created - definition: *224 - enterprise: *643 - installation: *644 - organization: *645 + definition: *227 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106832,9 +107150,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106911,10 +107229,10 @@ x-webhooks: type: string enum: - updated - definition: *224 - enterprise: *643 - installation: *644 - organization: *645 + definition: *227 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -106991,19 +107309,19 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - repository: *646 - organization: *645 + enterprise: *646 + installation: *647 + repository: *649 + organization: *648 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *228 + items: *231 old_property_values: type: array description: The old custom property values for the repository. - items: *228 + items: *231 required: - action - repository @@ -107079,18 +107397,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - pusher_type: *652 - ref: *653 + enterprise: *646 + installation: *647 + organization: *648 + pusher_type: *655 + ref: *656 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *646 + repository: *649 sender: *4 required: - ref @@ -107174,11 +107492,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107262,11 +107580,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107350,11 +107668,11 @@ x-webhooks: type: string enum: - created - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107436,11 +107754,11 @@ x-webhooks: type: string enum: - dismissed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107522,11 +107840,11 @@ x-webhooks: type: string enum: - fixed - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107609,11 +107927,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107695,11 +108013,11 @@ x-webhooks: type: string enum: - reopened - alert: *427 - installation: *644 - organization: *645 - enterprise: *643 - repository: *646 + alert: *430 + installation: *647 + organization: *648 + enterprise: *646 + repository: *649 sender: *4 required: - action @@ -107776,9 +108094,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - key: &654 + enterprise: *646 + installation: *647 + key: &657 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -107814,8 +108132,8 @@ x-webhooks: - verified - created_at - read_only - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -107892,11 +108210,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - key: *654 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + key: *657 + organization: *648 + repository: *649 sender: *4 required: - action @@ -108457,12 +108775,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: &658 + workflow: &661 title: Workflow type: object nullable: true @@ -109188,13 +109506,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *433 + deployment: *436 pull_requests: type: array - items: *518 - repository: *646 - organization: *645 - installation: *644 + items: *521 + repository: *649 + organization: *648 + installation: *647 sender: *4 responses: '200': @@ -109265,7 +109583,7 @@ x-webhooks: type: string enum: - approved - approver: &655 + approver: &658 type: object properties: avatar_url: @@ -109308,11 +109626,11 @@ x-webhooks: type: string comment: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - reviewers: &656 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + reviewers: &659 type: array items: type: object @@ -109391,7 +109709,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &657 + workflow_job_run: &660 type: object properties: conclusion: @@ -110122,18 +110440,18 @@ x-webhooks: type: string enum: - rejected - approver: *655 + approver: *658 comment: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - reviewers: *656 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + reviewers: *659 sender: *4 since: type: string - workflow_job_run: *657 + workflow_job_run: *660 workflow_job_runs: type: array items: @@ -110837,13 +111155,13 @@ x-webhooks: type: string enum: - requested - enterprise: *643 + enterprise: *646 environment: type: string - installation: *644 - organization: *645 - repository: *646 - requestor: &663 + installation: *647 + organization: *648 + repository: *649 + requestor: &666 title: User type: object nullable: true @@ -112742,12 +113060,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Deployment Workflow Run type: object @@ -113427,7 +113745,7 @@ x-webhooks: type: string enum: - answered - answer: &661 + answer: &664 type: object properties: author_association: @@ -113584,7 +113902,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &659 + discussion: &662 title: Discussion description: A Discussion in a repository. type: object @@ -113870,7 +114188,7 @@ x-webhooks: - id labels: type: array - items: *480 + items: *483 required: - repository_url - category @@ -113892,10 +114210,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114022,11 +114340,11 @@ x-webhooks: - from required: - category - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114109,11 +114427,11 @@ x-webhooks: type: string enum: - closed - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114195,7 +114513,7 @@ x-webhooks: type: string enum: - created - comment: &660 + comment: &663 type: object properties: author_association: @@ -114352,11 +114670,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114439,12 +114757,12 @@ x-webhooks: type: string enum: - deleted - comment: *660 - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + comment: *663 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114539,12 +114857,12 @@ x-webhooks: - from required: - body - comment: *660 - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + comment: *663 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114628,11 +114946,11 @@ x-webhooks: type: string enum: - created - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114714,11 +115032,11 @@ x-webhooks: type: string enum: - deleted - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114818,11 +115136,11 @@ x-webhooks: type: string required: - from - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -114904,10 +115222,10 @@ x-webhooks: type: string enum: - labeled - discussion: *659 - enterprise: *643 - installation: *644 - label: &662 + discussion: *662 + enterprise: *646 + installation: *647 + label: &665 title: Label type: object properties: @@ -114939,8 +115257,8 @@ x-webhooks: - color - default - description - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115023,11 +115341,11 @@ x-webhooks: type: string enum: - locked - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115109,11 +115427,11 @@ x-webhooks: type: string enum: - pinned - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115195,11 +115513,11 @@ x-webhooks: type: string enum: - reopened - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115284,16 +115602,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *659 - new_repository: *646 + new_discussion: *662 + new_repository: *649 required: - new_discussion - new_repository - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115376,10 +115694,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *659 - old_answer: *661 - organization: *645 - repository: *646 + discussion: *662 + old_answer: *664 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115461,12 +115779,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *659 - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115549,11 +115867,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115635,11 +115953,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *659 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + discussion: *662 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -115712,7 +116030,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *643 + enterprise: *646 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -116372,9 +116690,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - forkee @@ -116520,9 +116838,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pages: description: The pages that were updated. type: array @@ -116559,7 +116877,7 @@ x-webhooks: - action - sha - html_url - repository: *646 + repository: *649 sender: *4 required: - pages @@ -116635,10 +116953,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: &664 + organization: *648 + repositories: &667 description: An array of repository objects that the installation can access. type: array @@ -116664,8 +116982,8 @@ x-webhooks: - name - full_name - private - repository: *646 - requester: *663 + repository: *649 + requester: *666 sender: *4 required: - action @@ -116740,11 +117058,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -116820,11 +117138,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -116900,10 +117218,10 @@ x-webhooks: type: string enum: - added - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories_added: &665 + organization: *648 + repositories_added: &668 description: An array of repository objects, which were added to the installation. type: array @@ -116949,15 +117267,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *646 - repository_selection: &666 + repository: *649 + repository_selection: &669 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *663 + requester: *666 sender: *4 required: - action @@ -117036,10 +117354,10 @@ x-webhooks: type: string enum: - removed - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories_added: *665 + organization: *648 + repositories_added: *668 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -117066,9 +117384,9 @@ x-webhooks: - name - full_name - private - repository: *646 - repository_selection: *666 - requester: *663 + repository: *649 + repository_selection: *669 + requester: *666 sender: *4 required: - action @@ -117147,11 +117465,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -117329,10 +117647,10 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 target_type: type: string @@ -117411,11 +117729,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *643 + enterprise: *646 installation: *22 - organization: *645 - repositories: *664 - repository: *646 + organization: *648 + repositories: *667 + repository: *649 requester: nullable: true sender: *4 @@ -117667,8 +117985,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -118491,6 +118809,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -118823,8 +119142,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -118904,7 +119223,7 @@ x-webhooks: type: string enum: - deleted - comment: &667 + comment: &670 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -119069,8 +119388,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -119889,6 +120208,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -120223,8 +120543,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -120304,7 +120624,7 @@ x-webhooks: type: string enum: - edited - changes: &695 + changes: &698 description: The changes to the comment. type: object properties: @@ -120316,9 +120636,9 @@ x-webhooks: type: string required: - from - comment: *667 - enterprise: *643 - installation: *644 + comment: *670 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121140,6 +121460,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -121472,8 +121793,8 @@ x-webhooks: - state - locked - assignee - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -121555,10 +121876,10 @@ x-webhooks: type: string enum: - assigned - assignee: *663 - enterprise: *643 - installation: *644 - issue: &670 + assignee: *666 + enterprise: *646 + installation: *647 + issue: &673 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -122376,6 +122697,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -122476,8 +122798,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -122557,8 +122879,8 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -123381,6 +123703,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -123616,8 +123939,8 @@ x-webhooks: required: - state - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -123696,8 +124019,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124509,6 +124832,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -124608,8 +124932,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -124688,8 +125012,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125525,6 +125849,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -125603,7 +125928,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &668 + milestone: &671 title: Milestone description: A collection of related issues and pull requests. type: object @@ -125741,8 +126066,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -125841,8 +126166,8 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126657,6 +126982,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -126760,9 +127086,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *662 - organization: *645 - repository: *646 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -126842,8 +127168,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127657,6 +127983,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -127760,9 +128087,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *662 - organization: *645 - repository: *646 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -127842,8 +128169,8 @@ x-webhooks: type: string enum: - locked - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128681,6 +129008,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *189 title: description: Title of the issue type: string @@ -128761,8 +129089,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -128841,8 +129169,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129677,6 +130005,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -129754,9 +130083,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *668 - organization: *645 - repository: *646 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -131217,8 +131546,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132036,6 +132365,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -132135,8 +132465,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -132216,9 +132546,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *643 - installation: *644 - issue: &669 + enterprise: *646 + installation: *647 + issue: &672 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133030,6 +133360,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -133129,8 +133460,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -133209,8 +133540,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134127,8 +134458,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + type: *189 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135023,6 +135355,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -135590,11 +135923,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *643 - installation: *644 - issue: *669 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *672 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135675,7 +136008,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &698 + assignee: &701 title: User type: object nullable: true @@ -135745,11 +136078,11 @@ x-webhooks: required: - login - id - enterprise: *643 - installation: *644 - issue: *670 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *673 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135828,12 +136161,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *643 - installation: *644 - issue: *670 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *673 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -135913,8 +136246,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136753,6 +137086,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *189 updated_at: type: string format: date-time @@ -136830,8 +137164,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -136911,11 +137245,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *643 - installation: *644 - issue: *669 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + issue: *672 + organization: *648 + repository: *649 sender: *4 required: - action @@ -136994,11 +137328,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137076,11 +137410,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137190,11 +137524,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - label: *662 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + label: *665 + organization: *648 + repository: *649 sender: *4 required: - action @@ -137276,9 +137610,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: &671 + enterprise: *646 + installation: *647 + marketplace_purchase: &674 title: Marketplace Purchase type: object required: @@ -137361,8 +137695,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *645 - previous_marketplace_purchase: &672 + organization: *648 + previous_marketplace_purchase: &675 title: Marketplace Purchase type: object properties: @@ -137442,7 +137776,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137522,10 +137856,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137608,7 +137942,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137690,10 +138024,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -137775,7 +138109,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *646 + repository: *649 sender: *4 required: - action @@ -137856,8 +138190,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 marketplace_purchase: title: Marketplace Purchase type: object @@ -137939,9 +138273,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *645 - previous_marketplace_purchase: *672 - repository: *646 + organization: *648 + previous_marketplace_purchase: *675 + repository: *649 sender: *4 required: - action @@ -138021,12 +138355,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *643 - installation: *644 - marketplace_purchase: *671 - organization: *645 - previous_marketplace_purchase: *672 - repository: *646 + enterprise: *646 + installation: *647 + marketplace_purchase: *674 + organization: *648 + previous_marketplace_purchase: *675 + repository: *649 sender: *4 required: - action @@ -138128,11 +138462,11 @@ x-webhooks: type: string required: - to - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138232,11 +138566,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138315,11 +138649,11 @@ x-webhooks: type: string enum: - removed - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138397,11 +138731,11 @@ x-webhooks: type: string enum: - added - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138477,7 +138811,7 @@ x-webhooks: required: - login - id - team: &673 + team: &676 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -138667,11 +139001,11 @@ x-webhooks: type: string enum: - removed - enterprise: *643 - installation: *644 - member: *663 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + member: *666 + organization: *648 + repository: *649 scope: description: The scope of the membership. Currently, can only be `team`. @@ -138748,7 +139082,7 @@ x-webhooks: required: - login - id - team: *673 + team: *676 required: - action - scope @@ -138830,8 +139164,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *644 - merge_group: &675 + installation: *647 + merge_group: &678 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -138850,15 +139184,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *674 + head_commit: *677 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -138944,10 +139278,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *644 - merge_group: *675 - organization: *645 - repository: *646 + installation: *647 + merge_group: *678 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139020,7 +139354,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 + enterprise: *646 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -139128,16 +139462,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *644 - organization: *645 + installation: *647 + organization: *648 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -139218,11 +139552,11 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139301,9 +139635,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - milestone: &678 + enterprise: *646 + installation: *647 + milestone: &681 title: Milestone description: A collection of related issues and pull requests. type: object @@ -139440,8 +139774,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139520,11 +139854,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139634,11 +139968,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - milestone: *668 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *671 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139718,11 +140052,11 @@ x-webhooks: type: string enum: - opened - enterprise: *643 - installation: *644 - milestone: *678 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + milestone: *681 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139801,11 +140135,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *663 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + blocked_user: *666 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139884,11 +140218,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *663 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + blocked_user: *666 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -139967,9 +140301,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - membership: &679 + enterprise: *646 + installation: *647 + membership: &682 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -140061,8 +140395,8 @@ x-webhooks: - role - organization_url - user - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140140,11 +140474,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140223,8 +140557,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -140340,10 +140674,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 - user: *663 + user: *666 required: - action - invitation @@ -140421,11 +140755,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140512,11 +140846,11 @@ x-webhooks: properties: from: type: string - enterprise: *643 - installation: *644 - membership: *679 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + membership: *682 + organization: *648 + repository: *649 sender: *4 required: - action @@ -140592,9 +140926,9 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 package: description: Information about the package. type: object @@ -141093,7 +141427,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &680 + items: &683 title: Ruby Gems metadata type: object properties: @@ -141188,7 +141522,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -141264,9 +141598,9 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 package: description: Information about the package. type: object @@ -141619,7 +141953,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *680 + items: *683 source_url: type: string format: uri @@ -141689,7 +142023,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -141866,12 +142200,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *643 + enterprise: *646 id: type: integer - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - id @@ -141951,7 +142285,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &681 + personal_access_token_request: &684 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -142097,10 +142431,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *643 - organization: *645 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142179,11 +142513,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *681 - enterprise: *643 - organization: *645 + personal_access_token_request: *684 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142261,11 +142595,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *681 - enterprise: *643 - organization: *645 + personal_access_token_request: *684 + enterprise: *646 + organization: *648 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142342,11 +142676,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *681 - organization: *645 - enterprise: *643 + personal_access_token_request: *684 + organization: *648 + enterprise: *646 sender: *4 - installation: *644 + installation: *647 required: - action - personal_access_token_request @@ -142450,7 +142784,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *682 + last_response: *685 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -142482,8 +142816,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 zen: description: Random string of GitHub zen. @@ -142728,10 +143062,10 @@ x-webhooks: - from required: - note - enterprise: *643 - installation: *644 - organization: *645 - project_card: &683 + enterprise: *646 + installation: *647 + organization: *648 + project_card: &686 title: Project Card type: object properties: @@ -142850,7 +143184,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -142931,11 +143265,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project_card: *683 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_card: *686 + repository: *649 sender: *4 required: - action @@ -143015,9 +143349,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 project_card: title: Project Card type: object @@ -143145,8 +143479,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -143240,11 +143574,11 @@ x-webhooks: - from required: - note - enterprise: *643 - installation: *644 - organization: *645 - project_card: *683 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_card: *686 + repository: *649 sender: *4 required: - action @@ -143338,9 +143672,9 @@ x-webhooks: - from required: - column_id - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 project_card: allOf: - title: Project Card @@ -143530,7 +143864,7 @@ x-webhooks: type: string required: - after_id - repository: *646 + repository: *649 sender: *4 required: - action @@ -143610,10 +143944,10 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - organization: *645 - project: &685 + enterprise: *646 + installation: *647 + organization: *648 + project: &688 title: Project type: object properties: @@ -143737,7 +144071,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -143817,10 +144151,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project_column: &684 + enterprise: *646 + installation: *647 + organization: *648 + project_column: &687 title: Project Column type: object properties: @@ -143859,7 +144193,7 @@ x-webhooks: - name - created_at - updated_at - repository: *646 + repository: *649 sender: *4 required: - action @@ -143938,18 +144272,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -144039,11 +144373,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 + repository: *649 sender: *4 required: - action @@ -144123,11 +144457,11 @@ x-webhooks: type: string enum: - moved - enterprise: *643 - installation: *644 - organization: *645 - project_column: *684 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project_column: *687 + repository: *649 sender: *4 required: - action @@ -144207,11 +144541,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144291,18 +144625,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - project: *685 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *676 - required: *677 + properties: *679 + required: *680 nullable: true sender: *4 required: @@ -144404,11 +144738,11 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144487,11 +144821,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 - organization: *645 - project: *685 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + project: *688 + repository: *649 sender: *4 required: - action @@ -144572,9 +144906,9 @@ x-webhooks: type: string enum: - closed - installation: *644 - organization: *645 - projects_v2: &686 + installation: *647 + organization: *648 + projects_v2: &689 title: Projects v2 Project description: A projects v2 project type: object @@ -144717,9 +145051,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -144800,9 +145134,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -144919,9 +145253,9 @@ x-webhooks: type: string to: type: string - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -145004,7 +145338,7 @@ x-webhooks: type: string enum: - archived - changes: &690 + changes: &693 type: object properties: archived_at: @@ -145018,9 +145352,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *644 - organization: *645 - projects_v2_item: &687 + installation: *647 + organization: *648 + projects_v2_item: &690 title: Projects v2 Item description: An item belonging to a project type: object @@ -145154,9 +145488,9 @@ x-webhooks: nullable: true to: type: string - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145238,9 +145572,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145321,9 +145655,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145429,7 +145763,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &688 + - &691 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -145447,7 +145781,7 @@ x-webhooks: required: - id - name - - &689 + - &692 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -145470,8 +145804,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *688 - - *689 + - *691 + - *692 required: - field_value - type: object @@ -145487,9 +145821,9 @@ x-webhooks: nullable: true required: - body - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145584,9 +145918,9 @@ x-webhooks: to: type: string nullable: true - installation: *644 - organization: *645 - projects_v2_item: *687 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145669,10 +146003,10 @@ x-webhooks: type: string enum: - restored - changes: *690 - installation: *644 - organization: *645 - projects_v2_item: *687 + changes: *693 + installation: *647 + organization: *648 + projects_v2_item: *690 sender: *4 required: - action @@ -145754,9 +146088,9 @@ x-webhooks: type: string enum: - reopened - installation: *644 - organization: *645 - projects_v2: *686 + installation: *647 + organization: *648 + projects_v2: *689 sender: *4 required: - action @@ -145837,9 +146171,9 @@ x-webhooks: type: string enum: - created - installation: *644 - organization: *645 - projects_v2_status_update: &691 + installation: *647 + organization: *648 + projects_v2_status_update: &694 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -145966,9 +146300,9 @@ x-webhooks: type: string enum: - deleted - installation: *644 - organization: *645 - projects_v2_status_update: *691 + installation: *647 + organization: *648 + projects_v2_status_update: *694 sender: *4 required: - action @@ -146104,9 +146438,9 @@ x-webhooks: type: string format: date nullable: true - installation: *644 - organization: *645 - projects_v2_status_update: *691 + installation: *647 + organization: *648 + projects_v2_status_update: *694 sender: *4 required: - action @@ -146177,10 +146511,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - repository @@ -146257,13 +146591,13 @@ x-webhooks: type: string enum: - assigned - assignee: *663 - enterprise: *643 - installation: *644 - number: &692 + assignee: *666 + enterprise: *646 + installation: *647 + number: &695 description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -148546,7 +148880,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -148628,11 +148962,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -150910,7 +151244,7 @@ x-webhooks: - draft reason: type: string - repository: *646 + repository: *649 sender: *4 required: - action @@ -150992,11 +151326,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -153274,7 +153608,7 @@ x-webhooks: - draft reason: type: string - repository: *646 + repository: *649 sender: *4 required: - action @@ -153356,13 +153690,13 @@ x-webhooks: type: string enum: - closed - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: &693 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: &696 allOf: - - *518 + - *521 - type: object properties: allow_auto_merge: @@ -153424,7 +153758,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *646 + repository: *649 sender: *4 required: - action @@ -153505,12 +153839,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -153590,11 +153924,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *643 - milestone: *501 - number: *692 - organization: *645 - pull_request: &694 + enterprise: *646 + milestone: *504 + number: *695 + organization: *648 + pull_request: &697 title: Pull Request type: object properties: @@ -155857,7 +156191,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -155936,11 +156270,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -158222,7 +158556,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *646 + repository: *649 sender: *4 required: - action @@ -158346,12 +158680,12 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -158431,11 +158765,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -160702,7 +161036,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -160782,11 +161116,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *643 - installation: *644 - label: *662 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + label: *665 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -163068,7 +163402,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -163149,10 +163483,10 @@ x-webhooks: type: string enum: - locked - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -165432,7 +165766,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -165512,12 +165846,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *643 - milestone: *501 - number: *692 - organization: *645 - pull_request: *694 - repository: *646 + enterprise: *646 + milestone: *504 + number: *695 + organization: *648 + pull_request: *697 + repository: *649 sender: *4 required: - action @@ -165596,12 +165930,12 @@ x-webhooks: type: string enum: - opened - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -165682,12 +166016,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -165767,12 +166101,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *643 - installation: *644 - number: *692 - organization: *645 - pull_request: *693 - repository: *646 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 + pull_request: *696 + repository: *649 sender: *4 required: - action @@ -166138,9 +166472,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -168310,7 +168644,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -168390,7 +168724,7 @@ x-webhooks: type: string enum: - deleted - comment: &696 + comment: &699 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -168675,9 +169009,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -170835,7 +171169,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -170915,11 +171249,11 @@ x-webhooks: type: string enum: - edited - changes: *695 - comment: *696 - enterprise: *643 - installation: *644 - organization: *645 + changes: *698 + comment: *699 + enterprise: *646 + installation: *647 + organization: *648 pull_request: type: object properties: @@ -173080,7 +173414,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *646 + repository: *649 sender: *4 required: - action @@ -173161,9 +173495,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -175336,7 +175670,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 review: description: The review that was affected. type: object @@ -175579,9 +175913,9 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -177635,8 +177969,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 - review: &697 + repository: *649 + review: &700 description: The review that was affected. type: object properties: @@ -177865,12 +178199,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -180153,7 +180487,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_reviewer: title: User type: object @@ -180237,12 +180571,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -182532,7 +182866,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_team: title: Team description: Groups of organization members that gives permissions @@ -182724,12 +183058,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -185014,7 +185348,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_reviewer: title: User type: object @@ -185099,12 +185433,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *643 - installation: *644 + enterprise: *646 + installation: *647 number: description: The pull request number. type: integer - organization: *645 + organization: *648 pull_request: title: Pull Request type: object @@ -187380,7 +187714,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 requested_team: title: Team description: Groups of organization members that gives permissions @@ -187561,9 +187895,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -189738,8 +190072,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 - review: *697 + repository: *649 + review: *700 sender: *4 required: - action @@ -189819,9 +190153,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -191891,7 +192225,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 sender: *4 thread: type: object @@ -192274,9 +192608,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 pull_request: title: Simple Pull Request type: object @@ -194332,7 +194666,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *646 + repository: *649 sender: *4 thread: type: object @@ -194718,10 +195052,10 @@ x-webhooks: type: string before: type: string - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -196992,7 +197326,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -197074,11 +197408,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *698 - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + assignee: *701 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -199361,7 +199695,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -199440,11 +199774,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *643 - installation: *644 - label: *662 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + label: *665 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -201717,7 +202051,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -201798,10 +202132,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *643 - installation: *644 - number: *692 - organization: *645 + enterprise: *646 + installation: *647 + number: *695 + organization: *648 pull_request: title: Pull Request type: object @@ -204066,7 +204400,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *646 + repository: *649 sender: *4 required: - action @@ -204266,7 +204600,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *643 + enterprise: *646 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -204358,8 +204692,8 @@ x-webhooks: - url - author - committer - installation: *644 - organization: *645 + installation: *647 + organization: *648 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -204934,9 +205268,9 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 registry_package: type: object properties: @@ -205382,7 +205716,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *680 + items: *683 summary: type: string tag_name: @@ -205436,7 +205770,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -205514,9 +205848,9 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 registry_package: type: object properties: @@ -205824,7 +206158,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *680 + items: *683 summary: type: string tag_name: @@ -205873,7 +206207,7 @@ x-webhooks: - owner - package_version - registry - repository: *646 + repository: *649 sender: *4 required: - action @@ -205950,10 +206284,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - release: &699 + enterprise: *646 + installation: *647 + organization: *648 + release: &702 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -206258,7 +206592,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *646 + repository: *649 sender: *4 required: - action @@ -206335,11 +206669,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -206456,11 +206790,11 @@ x-webhooks: type: boolean required: - to - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -206538,9 +206872,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -206849,7 +207183,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *646 + repository: *649 sender: *4 required: - action @@ -206925,10 +207259,10 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - release: &700 + enterprise: *646 + installation: *647 + organization: *648 + release: &703 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -207234,7 +207568,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *646 + repository: *649 sender: *4 required: - action @@ -207310,11 +207644,11 @@ x-webhooks: type: string enum: - released - enterprise: *643 - installation: *644 - organization: *645 - release: *699 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *702 + repository: *649 sender: *4 required: - action @@ -207390,11 +207724,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *643 - installation: *644 - organization: *645 - release: *700 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + release: *703 + repository: *649 sender: *4 required: - action @@ -207470,11 +207804,11 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_advisory: *574 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_advisory: *577 sender: *4 required: - action @@ -207550,11 +207884,11 @@ x-webhooks: type: string enum: - reported - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_advisory: *574 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_advisory: *577 sender: *4 required: - action @@ -207630,10 +207964,10 @@ x-webhooks: type: string enum: - archived - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207710,10 +208044,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207791,10 +208125,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207878,10 +208212,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -207993,10 +208327,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208068,10 +208402,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 status: type: string @@ -208152,10 +208486,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208232,10 +208566,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208329,10 +208663,10 @@ x-webhooks: - name required: - repository - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208412,11 +208746,11 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 sender: *4 required: - action @@ -208494,11 +208828,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 sender: *4 required: - action @@ -208576,11 +208910,11 @@ x-webhooks: type: string enum: - edited - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - repository_ruleset: *238 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + repository_ruleset: *241 changes: type: object properties: @@ -208599,16 +208933,16 @@ x-webhooks: properties: added: type: array - items: *232 + items: *235 deleted: type: array - items: *232 + items: *235 updated: type: array items: type: object properties: - condition: *232 + condition: *235 changes: type: object properties: @@ -208641,16 +208975,16 @@ x-webhooks: properties: added: type: array - items: *237 + items: *240 deleted: type: array - items: *237 + items: *240 updated: type: array items: type: object properties: - rule: *237 + rule: *240 changes: type: object properties: @@ -208884,10 +209218,10 @@ x-webhooks: - from required: - owner - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -208965,10 +209299,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209046,7 +209380,7 @@ x-webhooks: type: string enum: - create - alert: &701 + alert: &704 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -209167,10 +209501,10 @@ x-webhooks: type: string enum: - open - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209376,10 +209710,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209457,11 +209791,11 @@ x-webhooks: type: string enum: - reopen - alert: *701 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209660,10 +209994,10 @@ x-webhooks: enum: - fixed - open - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209741,7 +210075,7 @@ x-webhooks: type: string enum: - created - alert: &702 + alert: &705 type: object properties: number: *54 @@ -209852,10 +210186,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -209936,11 +210270,11 @@ x-webhooks: type: string enum: - created - alert: *702 - installation: *644 - location: *703 - organization: *645 - repository: *646 + alert: *705 + installation: *647 + location: *706 + organization: *648 + repository: *649 sender: *4 required: - location @@ -210178,11 +210512,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210260,11 +210594,11 @@ x-webhooks: type: string enum: - reopened - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210342,11 +210676,11 @@ x-webhooks: type: string enum: - resolved - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210424,11 +210758,11 @@ x-webhooks: type: string enum: - validated - alert: *702 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + alert: *705 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -210554,10 +210888,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *646 - enterprise: *643 - installation: *644 - organization: *645 + repository: *649 + enterprise: *646 + installation: *647 + organization: *648 sender: *4 required: - action @@ -210635,11 +210969,11 @@ x-webhooks: type: string enum: - published - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - security_advisory: &704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + security_advisory: &707 description: The details of the security advisory, including summary, description, and severity. type: object @@ -210822,11 +211156,11 @@ x-webhooks: type: string enum: - updated - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 - security_advisory: *704 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 + security_advisory: *707 sender: *4 required: - action @@ -210899,10 +211233,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -211086,11 +211420,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *231 - enterprise: *643 - installation: *644 - organization: *645 - repository: *286 + security_and_analysis: *234 + enterprise: *646 + installation: *647 + organization: *648 + repository: *289 sender: *4 required: - changes @@ -211168,12 +211502,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: &705 + sponsorship: &708 type: object properties: created_at: @@ -211474,12 +211808,12 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - sponsorship @@ -211567,12 +211901,12 @@ x-webhooks: type: string required: - from - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211649,17 +211983,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &706 + effective_date: &709 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: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - sponsorship @@ -211733,7 +212067,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &707 + changes: &710 type: object properties: tier: @@ -211777,13 +212111,13 @@ x-webhooks: - from required: - tier - effective_date: *706 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + effective_date: *709 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211860,13 +212194,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *707 - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + changes: *710 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - sponsorship: *705 + sponsorship: *708 required: - action - changes @@ -211940,10 +212274,10 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -212026,10 +212360,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -212449,15 +212783,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *643 + enterprise: *646 id: description: The unique identifier of the status. type: integer - installation: *644 + installation: *647 name: type: string - organization: *645 - repository: *646 + organization: *648 + repository: *649 sender: *4 sha: description: The Commit SHA. @@ -212572,9 +212906,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212664,9 +212998,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212756,9 +213090,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212848,9 +213182,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *644 - organization: *645 - repository: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -212927,12 +213261,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - team: &708 + team: &711 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -213122,9 +213456,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -213582,7 +213916,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -213658,9 +213992,9 @@ x-webhooks: type: string enum: - created - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -214118,7 +214452,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -214195,9 +214529,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -214655,7 +214989,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -214799,9 +215133,9 @@ x-webhooks: - from required: - permissions - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -215259,7 +215593,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - changes @@ -215337,9 +215671,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *643 - installation: *644 - organization: *645 + enterprise: *646 + installation: *647 + organization: *648 repository: title: Repository description: A git repository @@ -215797,7 +216131,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *708 + team: *711 required: - action - team @@ -215873,10 +216207,10 @@ x-webhooks: type: string enum: - started - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 required: - action @@ -215949,16 +216283,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *643 + enterprise: *646 inputs: type: object nullable: true additionalProperties: true - installation: *644 - organization: *645 + installation: *647 + organization: *648 ref: type: string - repository: *646 + repository: *649 sender: *4 workflow: type: string @@ -216040,10 +216374,10 @@ x-webhooks: type: string enum: - completed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: allOf: @@ -216280,7 +216614,7 @@ x-webhooks: type: string required: - conclusion - deployment: *433 + deployment: *436 required: - action - repository @@ -216359,10 +216693,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: allOf: @@ -216622,7 +216956,7 @@ x-webhooks: required: - status - steps - deployment: *433 + deployment: *436 required: - action - repository @@ -216701,10 +217035,10 @@ x-webhooks: type: string enum: - queued - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: type: object @@ -216839,7 +217173,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *433 + deployment: *436 required: - action - repository @@ -216918,10 +217252,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 workflow_job: type: object @@ -217057,7 +217391,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *433 + deployment: *436 required: - action - repository @@ -217137,12 +217471,12 @@ x-webhooks: type: string enum: - completed - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object @@ -218141,12 +218475,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object @@ -219130,12 +219464,12 @@ x-webhooks: type: string enum: - requested - enterprise: *643 - installation: *644 - organization: *645 - repository: *646 + enterprise: *646 + installation: *647 + organization: *648 + repository: *649 sender: *4 - workflow: *658 + workflow: *661 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 09c2e8934a..3186fafe6c 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -4762,7 +4762,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" @@ -5702,7 +5702,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" @@ -6500,7 +6500,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" @@ -6929,7 +6929,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" @@ -8901,7 +8901,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" @@ -9896,7 +9896,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" @@ -10808,7 +10808,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" @@ -11431,7 +11431,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" @@ -36695,7 +36695,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" ], @@ -37534,6 +37534,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -50251,6 +50261,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -65332,6 +65402,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -71048,6 +71178,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -113447,6 +113637,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -119933,7 +120183,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" @@ -120888,7 +121138,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" @@ -122713,25 +122963,932 @@ } }, "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", + "nullable": true + }, + "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", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "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", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": [ { @@ -122744,243 +123901,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", - "nullable": true - }, - "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", - "example": "https://github.com/orgs/rails/teams/core" - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "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", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", - "type": "string" - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ], - "nullable": true - } + "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": { @@ -123014,7 +123975,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -123082,6 +124043,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.", @@ -124065,6 +125035,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -148506,7 +149536,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" ], @@ -149134,6 +150164,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -306349,6 +307389,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -321728,7 +322828,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" @@ -325160,6 +326260,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.", @@ -326170,6 +327279,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -327730,6 +328899,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -328677,6 +329852,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -334663,6 +335898,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -338336,6 +339631,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -341885,6 +343240,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -343424,6 +344839,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -344369,6 +345790,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -346879,6 +348360,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -349192,6 +350733,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -364865,6 +366466,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -367267,6 +368928,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -369645,6 +371366,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -372122,6 +373903,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -382788,6 +384629,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -492220,6 +494121,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -530954,7 +532915,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" @@ -534211,6 +536172,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -562994,6 +565015,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -565928,6 +568009,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -568864,6 +571005,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -572575,7 +574776,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" @@ -578141,6 +580342,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -581077,6 +583338,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -756533,7 +758854,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" @@ -759080,7 +761401,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" @@ -761534,7 +763855,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" @@ -763988,7 +766309,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" @@ -766574,7 +768895,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" @@ -769167,7 +771488,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" @@ -773383,7 +775704,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" @@ -777192,6 +779513,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -780886,6 +783267,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -784604,6 +787045,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -787859,6 +790360,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -790689,6 +793250,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -793708,6 +796329,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -796548,6 +799229,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -799557,6 +802298,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -802421,6 +805222,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -805311,6 +808172,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -808131,6 +811052,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -812937,6 +815918,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -815755,6 +818796,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -818703,6 +821804,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -821308,6 +824469,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -823217,6 +826438,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -826139,6 +829420,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -828964,6 +832305,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -831852,6 +835253,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -834647,6 +838108,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -1181907,6 +1185428,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1184695,6 +1188276,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1188311,6 +1191952,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1191099,6 +1194800,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1194715,6 +1198476,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1197503,6 +1201324,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1201119,6 +1205000,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1203907,6 +1207848,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index b34e51456d..23c7cc53b8 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -855,7 +855,7 @@ paths: - subscriptions_url - type - url - type: &339 + type: &342 type: string description: The type of credit the user is receiving. enum: @@ -1021,7 +1021,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: - - &660 + - &663 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1712,7 +1712,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &670 + schema: &673 title: Scim Error description: Scim Error type: object @@ -2234,7 +2234,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 @@ -2849,7 +2849,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &321 + properties: &324 id: description: Unique identifier of the repository example: 42 @@ -3278,7 +3278,7 @@ paths: type: boolean description: Whether anonymous git access is enabled for this repository - required: &322 + required: &325 - archive_url - assignees_url - blobs_url @@ -11255,7 +11255,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &455 + instances_url: &458 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11290,7 +11290,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &456 + dismissed_reason: &459 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -11299,13 +11299,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &457 + dismissed_comment: &460 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &458 + rule: &461 type: object properties: id: @@ -11358,7 +11358,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &459 + tool: &462 type: object properties: name: *87 @@ -11368,15 +11368,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *88 - most_recent_instance: &460 + most_recent_instance: &463 type: object properties: - ref: &453 + ref: &456 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &470 + analysis_key: &473 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11387,7 +11387,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &471 + category: &474 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13635,7 +13635,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &299 + properties: &302 id: description: Unique identifier of the team type: integer @@ -13691,7 +13691,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &300 + required: &303 - id - node_id - url @@ -14769,7 +14769,7 @@ paths: - unknown - direct - transitive - security_advisory: &512 + security_advisory: &515 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15001,7 +15001,7 @@ paths: nullable: true maxLength: 280 fixed_at: *110 - auto_dismissed_at: &513 + auto_dismissed_at: &516 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -15493,7 +15493,7 @@ paths: - name - created_on examples: - default: &349 + default: &352 value: total_count: 2 network_configurations: @@ -15716,7 +15716,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: - *40 - - &350 + - &353 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -15728,7 +15728,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &354 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -15762,7 +15762,7 @@ paths: - subnet_id - region examples: - default: &352 + default: &355 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -15903,6 +15903,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 @@ -16075,7 +16079,7 @@ paths: required: true content: application/json: - schema: &319 + schema: &322 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16114,6 +16118,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type examples: @@ -16436,7 +16448,7 @@ paths: type: object description: A repository rule. oneOf: - - &622 + - &625 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16448,7 +16460,7 @@ paths: type: string enum: - creation - - &623 + - &626 title: update description: Only allow users with bypass permission to update matching refs. @@ -16469,7 +16481,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &625 + - &628 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -16481,7 +16493,7 @@ paths: type: string enum: - deletion - - &626 + - &629 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -16493,7 +16505,7 @@ paths: type: string enum: - required_linear_history - - &627 + - &630 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -16569,7 +16581,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &628 + - &631 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -16593,7 +16605,7 @@ paths: type: string required: - required_deployment_environments - - &629 + - &632 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -16605,7 +16617,7 @@ paths: type: string enum: - required_signatures - - &630 + - &633 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. @@ -16656,7 +16668,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &631 + - &634 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -16703,7 +16715,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &632 + - &635 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -16715,7 +16727,7 @@ paths: type: string enum: - non_fast_forward - - &633 + - &636 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -16751,7 +16763,7 @@ paths: required: - operator - pattern - - &634 + - &637 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -16787,7 +16799,7 @@ paths: required: - operator - pattern - - &635 + - &638 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -16823,7 +16835,7 @@ paths: required: - operator - pattern - - &636 + - &639 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -16859,7 +16871,7 @@ paths: required: - operator - pattern - - &637 + - &640 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -16985,7 +16997,7 @@ paths: maximum: 100 required: - max_file_size - - &638 + - &641 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17034,7 +17046,7 @@ paths: - repository_id required: - workflows - - &639 + - &642 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17191,7 +17203,7 @@ paths: nullable: true anyOf: - *121 - - &326 + - &329 title: Organization ruleset conditions type: object description: |- @@ -17472,7 +17484,7 @@ paths: type: string format: date-time examples: - default: &328 + default: &331 value: - version_id: 3 actor: @@ -17525,7 +17537,7 @@ paths: description: Response content: application/json: - schema: &329 + schema: &332 allOf: - *131 - type: object @@ -17580,7 +17592,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *40 - - &330 + - &333 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -17591,7 +17603,7 @@ paths: enum: - open - resolved - - &331 + - &334 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -17601,7 +17613,7 @@ paths: required: false schema: type: string - - &332 + - &335 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -17610,7 +17622,7 @@ paths: required: false schema: type: string - - &333 + - &336 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. @@ -17626,7 +17638,7 @@ paths: - *17 - *84 - *85 - - &334 + - &337 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -17635,7 +17647,7 @@ paths: required: false schema: type: string - - &335 + - &338 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -17644,7 +17656,7 @@ paths: schema: type: boolean default: false - - &336 + - &339 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -17660,7 +17672,7 @@ paths: application/json: schema: type: array - items: &337 + items: &340 type: object properties: number: *100 @@ -17679,14 +17691,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &652 + state: &655 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: &653 + resolution: &656 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -17788,7 +17800,7 @@ paths: is base64 encoded nullable: true examples: - default: &338 + default: &341 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18051,7 +18063,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &344 type: object properties: total_minutes_used: @@ -18121,7 +18133,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &342 + default: &345 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18159,7 +18171,7 @@ paths: description: Success content: application/json: - schema: &343 + schema: &346 type: object properties: total_advanced_security_committers: @@ -18214,7 +18226,7 @@ paths: required: - repositories examples: - default: &344 + default: &347 value: total_advanced_security_committers: 2 total_count: 2 @@ -18453,7 +18465,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &348 type: object properties: total_gigabytes_bandwidth_used: @@ -18471,7 +18483,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &346 + default: &349 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -18503,7 +18515,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &350 type: object properties: days_left_in_billing_cycle: @@ -18521,7 +18533,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &348 + default: &351 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -18776,7 +18788,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: - *40 - - &298 + - &301 name: team_slug description: The slug of the team name. in: path @@ -19033,7 +19045,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &561 + properties: &564 id: type: integer format: int64 @@ -19144,7 +19156,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &497 + properties: &500 url: type: string format: uri @@ -19214,7 +19226,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &498 + required: &501 - closed_issues - creator - description @@ -19293,6 +19305,55 @@ paths: timeline_url: type: string format: uri + type: &287 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *63 performed_via_github_app: title: GitHub app @@ -19369,7 +19430,7 @@ paths: - total - completed - percent_completed - required: &562 + required: &565 - assignee - closed_at - comments @@ -19391,7 +19452,7 @@ paths: - author_association - created_at - updated_at - comment: &559 + comment: &562 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -19958,7 +20019,7 @@ paths: url: type: string format: uri - user: &709 + user: &712 title: Public User description: Public User type: object @@ -21828,7 +21889,7 @@ paths: - closed - all default: open - - &287 + - &290 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -21879,7 +21940,7 @@ paths: type: array items: *154 examples: - default: &288 + default: &291 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23263,14 +23324,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: - - &372 + - &375 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &373 + - &376 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23341,7 +23402,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &386 + '301': &389 description: Moved permanently content: application/json: @@ -23363,7 +23424,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &591 + - &594 name: all description: If `true`, show notifications marked as read. in: query @@ -23371,7 +23432,7 @@ paths: schema: type: boolean default: false - - &592 + - &595 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -23381,7 +23442,7 @@ paths: type: boolean default: false - *144 - - &593 + - &596 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: @@ -23693,7 +23754,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &323 + security_and_analysis: &326 nullable: true type: object properties: @@ -23845,7 +23906,7 @@ paths: - url - subscription_url examples: - default: &594 + default: &597 value: - id: '1' repository: @@ -24391,7 +24452,7 @@ paths: type: array items: *58 examples: - default: &727 + default: &730 value: - login: github id: 1 @@ -25324,7 +25385,7 @@ paths: type: integer repository_cache_usages: type: array - items: &391 + items: &394 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25994,7 +26055,7 @@ paths: type: array items: *63 examples: - default: &721 + default: &724 value: total_count: 1 repositories: @@ -26813,7 +26874,7 @@ paths: type: array items: *197 examples: - default: &712 + default: &715 value: total_count: 1 repositories: @@ -27854,7 +27915,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &414 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27883,7 +27944,7 @@ paths: - key_id - key examples: - default: &412 + default: &415 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28296,7 +28357,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *171 - - &396 + - &399 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)." @@ -28909,7 +28970,7 @@ paths: bundle_url: type: string examples: - default: &425 + default: &428 value: attestations: - bundle: @@ -29078,7 +29139,7 @@ paths: type: array items: *4 examples: - default: &289 + default: &292 value: - login: octocat id: 1 @@ -29256,7 +29317,7 @@ paths: application/json: schema: type: array - items: &442 + items: &445 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -29381,7 +29442,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &443 + default: &446 value: - id: 21 number: 42 @@ -29494,7 +29555,7 @@ paths: be returned. in: query required: false - schema: &454 + schema: &457 type: string description: Severity of a code scanning alert. enum: @@ -30464,7 +30525,7 @@ paths: type: integer codespaces: type: array - items: &290 + items: &293 type: object title: Codespace description: A codespace. @@ -30494,7 +30555,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &483 + properties: &486 name: type: string description: The name of the machine. @@ -30536,7 +30597,7 @@ paths: - ready - in_progress nullable: true - required: &484 + required: &487 - name - display_name - operating_system @@ -30741,7 +30802,7 @@ paths: - pulls_url - recent_folders examples: - default: &291 + default: &294 value: total_count: 3 codespaces: @@ -31404,7 +31465,7 @@ paths: - updated_at - visibility examples: - default: &485 + default: &488 value: total_count: 2 secrets: @@ -31442,7 +31503,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &489 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -31471,7 +31532,7 @@ paths: - key_id - key examples: - default: &487 + default: &490 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31503,7 +31564,7 @@ paths: application/json: schema: *238 examples: - default: &489 + default: &492 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33252,7 +33313,7 @@ paths: description: Response content: application/json: - schema: &516 + schema: &519 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -33269,7 +33330,7 @@ paths: - key_id - key examples: - default: &517 + default: &520 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33596,7 +33657,7 @@ paths: application/json: schema: type: array - items: &302 + items: &305 title: Package description: A software package type: object @@ -33666,7 +33727,7 @@ paths: - created_at - updated_at examples: - default: &303 + default: &306 value: - id: 197 name: hello_docker @@ -33850,7 +33911,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &370 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -33931,7 +33992,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &368 + default: &371 value: group_id: '123' group_name: Octocat admins @@ -33986,7 +34047,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &368 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34023,7 +34084,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &366 + default: &369 value: groups: - group_id: '123' @@ -34181,7 +34242,7 @@ paths: application/json: schema: type: array - items: &324 + items: &327 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -34195,7 +34256,7 @@ paths: - name - description examples: - default: &325 + default: &328 value: - name: add_assignee description: Assign or remove a user @@ -35325,7 +35386,7 @@ paths: application/json: schema: *22 examples: - default: &555 + default: &558 value: id: 1 account: @@ -35550,7 +35611,7 @@ paths: required: true content: application/json: - schema: &556 + schema: &559 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -35843,7 +35904,7 @@ paths: type: array items: *286 examples: - default: &301 + default: &304 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -35866,6 +35927,237 @@ 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: + - *171 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *287 + 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: + - *171 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *287 + examples: + default: &288 + 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: + - *171 + - &289 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *287 + examples: + default: *288 + '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: + - *171 + - *289 + 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 @@ -35918,7 +36210,13 @@ paths: - closed - all default: open - - *287 + - *290 + - 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 @@ -35943,7 +36241,7 @@ paths: type: array items: *154 examples: - default: *288 + default: *291 headers: Link: *39 '404': *6 @@ -36001,7 +36299,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '422': *15 @@ -36097,9 +36395,9 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 '304': *37 '500': *99 '401': *25 @@ -36126,7 +36424,7 @@ paths: parameters: - *171 - *219 - - &292 + - &295 name: codespace_name in: path required: true @@ -36161,15 +36459,15 @@ paths: parameters: - *171 - *219 - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: &482 + default: &485 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -36424,7 +36722,7 @@ paths: description: Response content: application/json: - schema: &293 + schema: &296 title: Org Membership description: Org Membership type: object @@ -36476,7 +36774,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &294 + response-if-user-has-an-active-admin-membership-with-organization: &297 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36573,9 +36871,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: - response-if-user-already-had-membership-with-organization: *294 + response-if-user-already-had-membership-with-organization: *297 '422': *15 '403': *29 x-github: @@ -36643,7 +36941,7 @@ paths: application/json: schema: type: array - items: &295 + items: &298 title: Migration description: A migration. type: object @@ -36972,7 +37270,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -37151,7 +37449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *171 - - &296 + - &299 name: migration_id description: The unique identifier of the migration. in: path @@ -37178,7 +37476,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -37348,7 +37646,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *171 - - *296 + - *299 responses: '302': description: Response @@ -37370,7 +37668,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *171 - - *296 + - *299 responses: '204': description: Response @@ -37394,8 +37692,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *171 - - *296 - - &726 + - *299 + - &729 name: repo_name description: repo_name parameter in: path @@ -37423,7 +37721,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *171 - - *296 + - *299 - *17 - *19 responses: @@ -37435,7 +37733,7 @@ paths: type: array items: *197 examples: - default: &308 + default: &311 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37644,7 +37942,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &297 + items: &300 title: Organization Role description: Organization roles type: object @@ -37851,7 +38149,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -37903,7 +38201,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -37929,7 +38227,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *171 - - *298 + - *301 - *244 responses: '204': @@ -37960,7 +38258,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *171 - - *298 + - *301 - *244 responses: '204': @@ -38081,7 +38379,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -38178,7 +38476,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -38336,8 +38634,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 nullable: true required: - id @@ -38352,7 +38650,7 @@ paths: - slug - parent examples: - default: *301 + default: *304 headers: Link: *39 '404': @@ -38410,13 +38708,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &340 + items: &343 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 name: nullable: true type: string @@ -38511,7 +38809,7 @@ paths: - type - url examples: - default: *289 + default: *292 headers: Link: *39 '404': @@ -38559,7 +38857,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -38701,7 +38999,7 @@ paths: - nuget - container - *171 - - &728 + - &731 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38737,12 +39035,12 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *303 + default: *306 '403': *29 '401': *25 - '400': &730 + '400': &733 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38764,7 +39062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &304 + - &307 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 @@ -38782,7 +39080,7 @@ paths: - docker - nuget - container - - &305 + - &308 name: package_name description: The name of the package. in: path @@ -38795,7 +39093,7 @@ paths: description: Response content: application/json: - schema: *302 + schema: *305 examples: default: value: @@ -38847,8 +39145,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *304 - - *305 + - *307 + - *308 - *171 responses: '204': @@ -38881,8 +39179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *304 - - *305 + - *307 + - *308 - *171 - name: token description: package token @@ -38915,8 +39213,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: - - *304 - - *305 + - *307 + - *308 - *171 - *19 - *17 @@ -38937,7 +39235,7 @@ paths: application/json: schema: type: array - items: &306 + items: &309 title: Package Version description: A version of a software package type: object @@ -39062,10 +39360,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: - - *304 - - *305 + - *307 + - *308 - *171 - - &307 + - &310 name: package_version_id description: Unique identifier of the package version. in: path @@ -39077,7 +39375,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -39113,10 +39411,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *304 - - *305 - - *171 - *307 + - *308 + - *171 + - *310 responses: '204': description: Response @@ -39148,10 +39446,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *304 - - *305 - - *171 - *307 + - *308 + - *171 + - *310 responses: '204': description: Response @@ -39181,7 +39479,7 @@ paths: - *171 - *17 - *19 - - &309 + - &312 name: sort description: The property by which to sort the results. in: query @@ -39192,7 +39490,7 @@ paths: - created_at default: created_at - *86 - - &310 + - &313 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39203,7 +39501,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &311 + - &314 name: repository description: The name of the repository to use to filter the results. in: query @@ -39211,7 +39509,7 @@ paths: schema: type: string example: Hello-World - - &312 + - &315 name: permission description: The permission to use to filter the results. in: query @@ -39219,7 +39517,7 @@ paths: schema: type: string example: issues_read - - &313 + - &316 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) @@ -39229,7 +39527,7 @@ paths: schema: type: string format: date-time - - &314 + - &317 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) @@ -39239,7 +39537,7 @@ paths: schema: type: string format: date-time - - &315 + - &318 name: token_id description: The ID of the token in: query @@ -39552,7 +39850,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -39578,14 +39876,14 @@ paths: - *171 - *17 - *19 - - *309 - - *86 - - *310 - - *311 - *312 + - *86 - *313 - *314 - *315 + - *316 + - *317 + - *318 responses: '500': *99 '422': *15 @@ -39867,7 +40165,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -39911,7 +40209,7 @@ paths: type: integer configurations: type: array - items: &316 + items: &319 title: Organization private registry description: Private registry configuration for an organization type: object @@ -40117,7 +40415,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &317 + org-private-registry-with-selected-visibility: &320 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40217,9 +40515,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 x-github: githubCloudOnly: false @@ -40369,7 +40667,7 @@ paths: application/json: schema: type: array - items: &318 + items: &321 title: Project description: Projects are a way to organize columns and cards of work. @@ -40542,7 +40840,7 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: default: value: @@ -40580,7 +40878,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &383 + '410': &386 description: Gone content: application/json: @@ -40630,6 +40928,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. @@ -40742,7 +41044,7 @@ paths: required: true content: application/json: - schema: *319 + schema: *322 examples: default: value: @@ -40845,7 +41147,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &320 + items: &323 title: Custom Property Value description: Custom property name and associated value type: object @@ -40932,7 +41234,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *320 + items: *323 required: - repository_names - properties @@ -40985,7 +41287,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -41125,7 +41427,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -41328,7 +41630,7 @@ paths: description: Response content: application/json: - schema: &385 + schema: &388 title: Full Repository description: Full Repository type: object @@ -41605,8 +41907,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *321 - required: *322 + properties: *324 + required: *325 nullable: true temp_clone_token: type: string @@ -41721,7 +42023,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &504 + properties: &507 url: type: string format: uri @@ -41737,12 +42039,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &505 + required: &508 - url - key - name - html_url - security_and_analysis: *323 + security_and_analysis: *326 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -41826,7 +42128,7 @@ paths: - network_count - subscribers_count examples: - default: &387 + default: &390 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42352,9 +42654,9 @@ paths: application/json: schema: type: array - items: *324 + items: *327 examples: - default: *325 + default: *328 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42379,7 +42681,7 @@ paths: - *171 - *17 - *19 - - &640 + - &643 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42470,7 +42772,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *126 - conditions: *326 + conditions: *329 rules: type: array description: An array of rules within the ruleset. @@ -42514,7 +42816,7 @@ paths: application/json: schema: *128 examples: - default: &327 + default: &330 value: id: 21 name: super cool ruleset @@ -42569,7 +42871,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *171 - - &641 + - &644 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 @@ -42581,14 +42883,14 @@ paths: x-multi-segment: true - *226 - *222 - - &642 + - &645 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 - - &643 + - &646 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -42608,7 +42910,7 @@ paths: description: Response content: application/json: - schema: &644 + schema: &647 title: Rule Suites description: Response type: array @@ -42663,7 +42965,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &645 + default: &648 value: - id: 21 actor_id: 12 @@ -42707,7 +43009,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *171 - - &646 + - &649 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42723,7 +43025,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &650 title: Rule Suite description: Response type: object @@ -42822,7 +43124,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &648 + default: &651 value: id: 21 actor_id: 12 @@ -42897,7 +43199,7 @@ paths: application/json: schema: *128 examples: - default: *327 + default: *330 '404': *6 '500': *99 put: @@ -42946,7 +43248,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *126 - conditions: *326 + conditions: *329 rules: description: An array of rules within the ruleset. type: array @@ -42987,7 +43289,7 @@ paths: application/json: schema: *128 examples: - default: *327 + default: *330 '404': *6 '500': *99 delete: @@ -43046,7 +43348,7 @@ paths: type: array items: *131 examples: - default: *328 + default: *331 '404': *6 '500': *99 x-github: @@ -43083,7 +43385,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43146,14 +43448,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *171 - - *330 - - *331 - - *332 - *333 + - *334 + - *335 + - *336 - *86 - *19 - *17 - - &650 + - &653 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 @@ -43163,7 +43465,7 @@ paths: required: false schema: type: string - - &651 + - &654 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 @@ -43173,9 +43475,9 @@ paths: required: false schema: type: string - - *334 - - *335 - - *336 + - *337 + - *338 + - *339 responses: '200': description: Response @@ -43183,9 +43485,9 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: - default: *338 + default: *341 headers: Link: *39 '404': *6 @@ -43255,7 +43557,7 @@ paths: application/json: schema: type: array - items: &658 + items: &661 description: A repository security advisory. type: object properties: @@ -43475,7 +43777,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 credits_detailed: type: array nullable: true @@ -43485,7 +43787,7 @@ paths: type: object properties: user: *4 - type: *339 + type: *342 state: type: string description: The state of the user's acceptance of the @@ -43546,7 +43848,7 @@ paths: - private_fork additionalProperties: false examples: - default: &659 + default: &662 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43933,9 +44235,9 @@ paths: application/json: schema: type: array - items: *340 + items: *343 examples: - default: *301 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43959,7 +44261,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -43985,7 +44287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -44020,9 +44322,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *342 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44054,9 +44356,9 @@ paths: description: Success content: application/json: - schema: *343 + schema: *346 examples: - default: *344 + default: *347 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44084,9 +44386,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44114,9 +44416,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44156,7 +44458,7 @@ paths: type: array items: *111 examples: - default: *349 + default: *352 headers: Link: *39 x-github: @@ -44357,15 +44659,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: - *171 - - *350 + - *353 responses: '200': description: Response content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 headers: Link: *39 x-github: @@ -44403,7 +44705,7 @@ paths: description: Response content: application/json: - schema: &374 + schema: &377 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -44449,7 +44751,7 @@ paths: type: string nullable: true examples: - default: &375 + default: &378 value: groups: - group_id: '123' @@ -44495,7 +44797,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *171 - - *298 + - *301 - 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`). @@ -44568,7 +44870,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *171 - - *298 + - *301 - 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`). @@ -44636,7 +44938,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 headers: Link: *39 '403': *29 @@ -44730,7 +45032,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &356 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44793,8 +45095,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 nullable: true members_count: type: integer @@ -45040,7 +45342,7 @@ paths: - repos_count - organization examples: - default: &354 + default: &357 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45111,15 +45413,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -45141,7 +45443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *171 - - *298 + - *301 requestBody: required: false content: @@ -45203,16 +45505,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '201': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 '422': *15 '403': *29 @@ -45238,7 +45540,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -45265,7 +45567,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *171 - - *298 + - *301 - *86 - *17 - *19 @@ -45282,7 +45584,7 @@ paths: application/json: schema: type: array - items: &355 + items: &358 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -45381,7 +45683,7 @@ paths: - updated_at - url examples: - default: &699 + default: &702 value: - author: login: octocat @@ -45456,7 +45758,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *171 - - *298 + - *301 requestBody: required: true content: @@ -45490,9 +45792,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &356 + default: &359 value: author: login: octocat @@ -45565,8 +45867,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *171 - - *298 - - &357 + - *301 + - &360 name: discussion_number description: The number that identifies the discussion. in: path @@ -45578,9 +45880,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45603,8 +45905,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: false content: @@ -45627,9 +45929,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &700 + default: &703 value: author: login: octocat @@ -45700,8 +46002,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 responses: '204': description: Response @@ -45728,8 +46030,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *171 - - *298 - - *357 + - *301 + - *360 - *86 - *17 - *19 @@ -45740,7 +46042,7 @@ paths: application/json: schema: type: array - items: &358 + items: &361 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45812,7 +46114,7 @@ paths: - updated_at - url examples: - default: &701 + default: &704 value: - author: login: octocat @@ -45881,8 +46183,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: true content: @@ -45904,9 +46206,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: &359 + default: &362 value: author: login: octocat @@ -45973,9 +46275,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *171 - - *298 - - *357 - - &360 + - *301 + - *360 + - &363 name: comment_number description: The number that identifies the comment. in: path @@ -45987,9 +46289,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,9 +46314,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 requestBody: required: true content: @@ -46036,9 +46338,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: &702 + default: &705 value: author: login: octocat @@ -46103,9 +46405,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 responses: '204': description: Response @@ -46132,9 +46434,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 - 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. @@ -46160,7 +46462,7 @@ paths: application/json: schema: type: array - items: &361 + items: &364 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46203,7 +46505,7 @@ paths: - content - created_at examples: - default: &363 + default: &366 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46254,9 +46556,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 requestBody: required: true content: @@ -46289,9 +46591,9 @@ paths: team discussion comment content: application/json: - schema: *361 + schema: *364 examples: - default: &362 + default: &365 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46320,9 +46622,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46346,10 +46648,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *171 - - *298 - - *357 + - *301 - *360 - - &364 + - *363 + - &367 name: reaction_id description: The unique identifier of the reaction. in: path @@ -46382,8 +46684,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 - 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. @@ -46409,9 +46711,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -46438,8 +46740,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: true content: @@ -46471,16 +46773,16 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -46504,9 +46806,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *171 - - *298 - - *357 - - *364 + - *301 + - *360 + - *367 responses: '204': description: Response @@ -46530,15 +46832,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: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *365 + schema: *368 examples: - default: *366 + default: *369 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46558,7 +46860,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: - *171 - - *298 + - *301 requestBody: required: true content: @@ -46581,9 +46883,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -46603,7 +46905,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: - *171 - - *298 + - *301 responses: '204': description: Response @@ -46628,7 +46930,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -46663,7 +46965,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *171 - - *298 + - *301 - name: role description: Filters members returned by their role in the team. in: query @@ -46686,7 +46988,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -46717,14 +47019,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 responses: '200': description: Response content: application/json: - schema: &369 + schema: &372 title: Team Membership description: Team Membership type: object @@ -46751,7 +47053,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &703 + response-if-user-is-a-team-maintainer: &706 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46788,7 +47090,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 requestBody: required: false @@ -46814,9 +47116,9 @@ paths: description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-users-membership-with-team-is-now-pending: &704 + response-if-users-membership-with-team-is-now-pending: &707 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46852,7 +47154,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 responses: '204': @@ -46879,7 +47181,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -46889,7 +47191,7 @@ paths: application/json: schema: type: array - items: &370 + items: &373 title: Team Project description: A team's access to a project. type: object @@ -46957,7 +47259,7 @@ paths: - updated_at - permissions examples: - default: &705 + default: &708 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47021,8 +47323,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *171 - - *298 - - &371 + - *301 + - &374 name: project_id description: The unique identifier of the project. in: path @@ -47034,9 +47336,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: - default: &706 + default: &709 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47099,8 +47401,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *171 - - *298 - - *371 + - *301 + - *374 requestBody: required: false content: @@ -47167,8 +47469,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *171 - - *298 - - *371 + - *301 + - *374 responses: '204': description: Response @@ -47196,7 +47498,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -47208,7 +47510,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -47238,15 +47540,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &707 + schema: &710 title: Team Repository description: A team's access to a repository. type: object @@ -47816,9 +48118,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 requestBody: required: false content: @@ -47864,9 +48166,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 responses: '204': description: Response @@ -47893,15 +48195,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *374 + schema: *377 examples: - default: *375 + default: *378 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47924,7 +48226,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *171 - - *298 + - *301 requestBody: required: true content: @@ -47967,7 +48269,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *377 examples: default: value: @@ -48000,7 +48302,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -48012,7 +48314,7 @@ paths: type: array items: *286 examples: - response-if-child-teams-exist: &708 + response-if-child-teams-exist: &711 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48139,7 +48441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &376 + - &379 name: card_id description: The unique identifier of the card. in: path @@ -48151,7 +48453,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &380 title: Project Card description: Project cards represent a scope of work. type: object @@ -48218,7 +48520,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -48274,7 +48576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *376 + - *379 requestBody: required: false content: @@ -48301,9 +48603,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '304': *37 '403': *29 '401': *25 @@ -48330,7 +48632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *376 + - *379 responses: '204': description: Response @@ -48374,7 +48676,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *376 + - *379 requestBody: required: true content: @@ -48485,7 +48787,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &379 + - &382 name: column_id description: The unique identifier of the column. in: path @@ -48497,7 +48799,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &383 title: Project Column description: Project columns contain cards of work. type: object @@ -48543,7 +48845,7 @@ paths: - created_at - updated_at examples: - default: &381 + default: &384 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48578,7 +48880,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *379 + - *382 requestBody: required: true content: @@ -48602,9 +48904,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *383 examples: - default: *381 + default: *384 '304': *37 '403': *29 '401': *25 @@ -48629,7 +48931,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *379 + - *382 responses: '204': description: Response @@ -48658,7 +48960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *379 + - *382 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -48679,7 +48981,7 @@ paths: application/json: schema: type: array - items: *377 + items: *380 examples: default: value: @@ -48738,7 +49040,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *379 + - *382 requestBody: required: true content: @@ -48778,9 +49080,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '304': *37 '403': *29 '401': *25 @@ -48836,7 +49138,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *379 + - *382 requestBody: required: true content: @@ -48896,15 +49198,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *371 + - *374 responses: '200': description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: &382 + default: &385 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48961,7 +49263,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *371 + - *374 requestBody: required: false content: @@ -49007,9 +49309,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *382 + default: *385 '404': description: Not Found if the authenticated user does not have access to the project @@ -49030,7 +49332,7 @@ paths: items: type: string '401': *25 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -49053,7 +49355,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *371 + - *374 responses: '204': description: Delete Success @@ -49074,7 +49376,7 @@ paths: items: type: string '401': *25 - '410': *383 + '410': *386 '404': *6 x-github: githubCloudOnly: false @@ -49098,7 +49400,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *371 + - *374 - 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 @@ -49125,7 +49427,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -49155,7 +49457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *371 + - *374 - *219 requestBody: required: false @@ -49208,7 +49510,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *371 + - *374 - *219 responses: '204': @@ -49240,7 +49542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *371 + - *374 - *219 responses: '200': @@ -49314,7 +49616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *371 + - *374 - *17 - *19 responses: @@ -49324,7 +49626,7 @@ paths: application/json: schema: type: array - items: *380 + items: *383 examples: default: value: @@ -49362,7 +49664,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *371 + - *374 requestBody: required: true content: @@ -49385,7 +49687,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *383 examples: default: value: @@ -49449,7 +49751,7 @@ paths: resources: type: object properties: - core: &384 + core: &387 title: Rate Limit type: object properties: @@ -49466,20 +49768,20 @@ paths: - remaining - reset - used - graphql: *384 - search: *384 - code_search: *384 - source_import: *384 - integration_manifest: *384 - code_scanning_upload: *384 - actions_runner_registration: *384 - scim: *384 - dependency_snapshots: *384 - code_scanning_autofix: *384 + graphql: *387 + search: *387 + code_search: *387 + source_import: *387 + integration_manifest: *387 + code_scanning_upload: *387 + actions_runner_registration: *387 + scim: *387 + dependency_snapshots: *387 + code_scanning_autofix: *387 required: - core - search - rate: *384 + rate: *387 required: - rate - resources @@ -49583,14 +49885,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *385 + schema: *388 examples: default-response: summary: Default response @@ -50095,7 +50397,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *386 + '301': *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50113,8 +50415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -50360,10 +50662,10 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 - '307': &388 + default: *390 + '307': &391 description: Temporary Redirect content: application/json: @@ -50392,8 +50694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -50415,7 +50717,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': *388 + '307': *391 '404': *6 x-github: githubCloudOnly: false @@ -50438,11 +50740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - - &403 + - &406 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50465,7 +50767,7 @@ paths: type: integer artifacts: type: array - items: &389 + items: &392 title: Artifact description: An artifact type: object @@ -50543,7 +50845,7 @@ paths: - expires_at - updated_at examples: - default: &404 + default: &407 value: total_count: 2 artifacts: @@ -50604,9 +50906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *372 - - *373 - - &390 + - *375 + - *376 + - &393 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50618,7 +50920,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -50656,9 +50958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *372 - - *373 - - *390 + - *375 + - *376 + - *393 responses: '204': description: Response @@ -50682,9 +50984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *372 - - *373 - - *390 + - *375 + - *376 + - *393 - name: archive_format in: path required: true @@ -50698,7 +51000,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': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50721,14 +51023,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -50754,11 +51056,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: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - - &392 + - &395 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 @@ -50792,7 +51094,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &396 title: Repository actions caches description: Repository actions caches type: object @@ -50834,7 +51136,7 @@ paths: - total_count - actions_caches examples: - default: &394 + default: &397 value: total_count: 1 actions_caches: @@ -50866,23 +51168,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: - - *372 - - *373 + - *375 + - *376 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *392 + - *395 responses: '200': description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: *394 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50902,8 +51204,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: - - *372 - - *373 + - *375 + - *376 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50934,9 +51236,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: - - *372 - - *373 - - &395 + - *375 + - *376 + - &398 name: job_id description: The unique identifier of the job. in: path @@ -50948,7 +51250,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &410 title: Job description: Information of a job execution in a workflow run type: object @@ -51255,9 +51557,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: - - *372 - - *373 - - *395 + - *375 + - *376 + - *398 responses: '302': description: Response @@ -51285,9 +51587,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: - - *372 - - *373 - - *395 + - *375 + - *376 + - *398 requestBody: required: false content: @@ -51332,8 +51634,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Status response @@ -51383,8 +51685,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -51447,8 +51749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -51466,7 +51768,7 @@ paths: type: integer secrets: type: array - items: &409 + items: &412 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51486,7 +51788,7 @@ paths: - created_at - updated_at examples: - default: &410 + default: &413 value: total_count: 2 secrets: @@ -51519,9 +51821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *372 - - *373 - - *396 + - *375 + - *376 + - *399 - *19 responses: '200': @@ -51538,7 +51840,7 @@ paths: type: integer variables: type: array - items: &413 + items: &416 title: Actions Variable type: object properties: @@ -51568,7 +51870,7 @@ paths: - created_at - updated_at examples: - default: &414 + default: &417 value: total_count: 2 variables: @@ -51601,8 +51903,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51611,7 +51913,7 @@ paths: schema: type: object properties: - enabled: &397 + enabled: &400 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *48 @@ -51644,8 +51946,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -51656,7 +51958,7 @@ paths: schema: type: object properties: - enabled: *397 + enabled: *400 allowed_actions: *48 required: - enabled @@ -51687,14 +51989,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &398 + schema: &401 type: object properties: access_level: @@ -51712,7 +52014,7 @@ paths: required: - access_level examples: - default: &399 + default: &402 value: access_level: organization x-github: @@ -51737,15 +52039,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 responses: '204': description: Response @@ -51769,8 +52071,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51801,8 +52103,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -51834,8 +52136,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51864,8 +52166,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Success response @@ -51905,8 +52207,8 @@ paths: in: query schema: type: string - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -51950,8 +52252,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51983,8 +52285,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -52058,8 +52360,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: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -52095,8 +52397,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: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -52126,8 +52428,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': @@ -52157,8 +52459,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '204': @@ -52184,8 +52486,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': *66 @@ -52210,8 +52512,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: - - *372 - - *373 + - *375 + - *376 - *60 requestBody: required: true @@ -52260,8 +52562,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: - - *372 - - *373 + - *375 + - *376 - *60 requestBody: required: true @@ -52311,8 +52613,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': *204 @@ -52342,8 +52644,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: - - *372 - - *373 + - *375 + - *376 - *60 - *205 responses: @@ -52373,9 +52675,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: - - *372 - - *373 - - &417 + - *375 + - *376 + - &420 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. @@ -52383,7 +52685,7 @@ paths: required: false schema: type: string - - &418 + - &421 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52391,7 +52693,7 @@ paths: required: false schema: type: string - - &419 + - &422 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52400,7 +52702,7 @@ paths: required: false schema: type: string - - &420 + - &423 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 @@ -52427,7 +52729,7 @@ paths: - pending - *17 - *19 - - &421 + - &424 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)." @@ -52436,7 +52738,7 @@ paths: schema: type: string format: date-time - - &400 + - &403 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52445,13 +52747,13 @@ paths: schema: type: boolean default: false - - &422 + - &425 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &423 + - &426 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52474,7 +52776,7 @@ paths: type: integer workflow_runs: type: array - items: &401 + items: &404 title: Workflow Run description: An invocation of a workflow type: object @@ -52569,7 +52871,7 @@ paths: that triggered the run. type: array nullable: true - items: &444 + items: &447 title: Pull Request Minimal type: object properties: @@ -52688,7 +52990,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &448 + properties: &451 id: type: string description: SHA for the commit @@ -52739,7 +53041,7 @@ paths: - name - email nullable: true - required: &449 + required: &452 - id - tree_id - message @@ -52786,7 +53088,7 @@ paths: - workflow_url - pull_requests examples: - default: &424 + default: &427 value: total_count: 1 workflow_runs: @@ -53022,24 +53324,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *372 - - *373 - - &402 + - *375 + - *376 + - &405 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *400 + - *403 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: id: 30433642 name: Build @@ -53280,9 +53582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '204': description: Response @@ -53305,9 +53607,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -53426,9 +53728,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '201': description: Response @@ -53461,12 +53763,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 - *17 - *19 - - *403 + - *406 responses: '200': description: Response @@ -53482,9 +53784,9 @@ paths: type: integer artifacts: type: array - items: *389 + items: *392 examples: - default: *404 + default: *407 headers: Link: *39 x-github: @@ -53508,25 +53810,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *372 - - *373 - - *402 - - &406 + - *375 + - *376 + - *405 + - &409 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *400 + - *403 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53549,10 +53851,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: - - *372 - - *373 - - *402 - - *406 + - *375 + - *376 + - *405 + - *409 - *17 - *19 responses: @@ -53570,9 +53872,9 @@ paths: type: integer jobs: type: array - items: *407 + items: *410 examples: - default: &408 + default: &411 value: total_count: 1 jobs: @@ -53685,10 +53987,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *372 - - *373 - - *402 - - *406 + - *375 + - *376 + - *405 + - *409 responses: '302': description: Response @@ -53716,9 +54018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '202': description: Response @@ -53751,9 +54053,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: true content: @@ -53820,9 +54122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '202': description: Response @@ -53855,9 +54157,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 - 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 @@ -53887,9 +54189,9 @@ paths: type: integer jobs: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *39 x-github: @@ -53914,9 +54216,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '302': description: Response @@ -53943,9 +54245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '204': description: Response @@ -53972,9 +54274,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -54034,7 +54336,7 @@ paths: items: type: object properties: - type: &525 + type: &528 type: string description: The type of reviewer. enum: @@ -54119,9 +54421,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: true content: @@ -54168,7 +54470,7 @@ paths: application/json: schema: type: array - items: &520 + items: &523 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54274,7 +54576,7 @@ paths: - created_at - updated_at examples: - default: &521 + default: &524 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54330,9 +54632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: false content: @@ -54376,9 +54678,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: false content: @@ -54432,9 +54734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -54571,8 +54873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -54590,9 +54892,9 @@ paths: type: integer secrets: type: array - items: *409 + items: *412 examples: - default: *410 + default: *413 headers: Link: *39 x-github: @@ -54617,16 +54919,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54648,17 +54950,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: &538 + default: &541 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54684,8 +54986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -54743,8 +55045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -54770,9 +55072,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *372 - - *373 - - *396 + - *375 + - *376 + - *399 - *19 responses: '200': @@ -54789,9 +55091,9 @@ paths: type: integer variables: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *39 x-github: @@ -54814,8 +55116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -54867,17 +55169,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: &539 + default: &542 value: name: USERNAME value: octocat @@ -54903,8 +55205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 requestBody: required: true @@ -54947,8 +55249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 responses: '204': @@ -54974,8 +55276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -54993,7 +55295,7 @@ paths: type: integer workflows: type: array - items: &415 + items: &418 title: Workflow description: A GitHub Actions workflow type: object @@ -55100,9 +55402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *372 - - *373 - - &416 + - *375 + - *376 + - &419 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55117,7 +55419,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: default: value: @@ -55150,9 +55452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55177,9 +55479,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55230,9 +55532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55259,19 +55561,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: - - *372 - - *373 - - *416 - - *417 - - *418 + - *375 + - *376 - *419 - *420 - - *17 - - *19 - *421 - - *400 - *422 - *423 + - *17 + - *19 + - *424 + - *403 + - *425 + - *426 responses: '200': description: Response @@ -55287,9 +55589,9 @@ paths: type: integer workflow_runs: type: array - items: *401 + items: *404 examples: - default: *424 + default: *427 headers: Link: *39 x-github: @@ -55322,9 +55624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '200': description: Response @@ -55385,8 +55687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *372 - - *373 + - *375 + - *376 - *86 - *17 - *84 @@ -55550,8 +55852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -55563,7 +55865,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -55588,8 +55890,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: - - *372 - - *373 + - *375 + - *376 - name: assignee in: path required: true @@ -55625,8 +55927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -55738,8 +56040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *84 - *85 @@ -55793,7 +56095,7 @@ paths: bundle_url: type: string examples: - default: *425 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55813,8 +56115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -55822,7 +56124,7 @@ paths: application/json: schema: type: array - items: &426 + items: &429 title: Autolink reference description: An autolink reference. type: object @@ -55872,8 +56174,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -55912,9 +56214,9 @@ paths: description: response content: application/json: - schema: *426 + schema: *429 examples: - default: &427 + default: &430 value: id: 1 key_prefix: TICKET- @@ -55945,9 +56247,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: - - *372 - - *373 - - &428 + - *375 + - *376 + - &431 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55959,9 +56261,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *429 examples: - default: *427 + default: *430 '404': *6 x-github: githubCloudOnly: false @@ -55981,9 +56283,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: - - *372 - - *373 - - *428 + - *375 + - *376 + - *431 responses: '204': description: Response @@ -56007,8 +56309,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response if Dependabot is enabled @@ -56056,8 +56358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -56078,8 +56380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -56099,8 +56401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *372 - - *373 + - *375 + - *376 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56138,7 +56440,7 @@ paths: - url protected: type: boolean - protection: &430 + protection: &433 title: Branch Protection description: Branch Protection type: object @@ -56180,7 +56482,7 @@ paths: required: - contexts - checks - enforce_admins: &433 + enforce_admins: &436 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56195,7 +56497,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &435 + required_pull_request_reviews: &438 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56271,7 +56573,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &432 + restrictions: &435 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56578,9 +56880,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *372 - - *373 - - &431 + - *375 + - *376 + - &434 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). @@ -56594,14 +56896,14 @@ paths: description: Response content: application/json: - schema: &441 + schema: &444 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &493 + commit: &496 title: Commit description: Commit type: object @@ -56635,7 +56937,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &429 + properties: &432 name: type: string example: '"Chris Wanstrath"' @@ -56650,7 +56952,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true message: type: string @@ -56671,7 +56973,7 @@ paths: required: - sha - url - verification: &545 + verification: &548 title: Verification type: object properties: @@ -56741,7 +57043,7 @@ paths: type: integer files: type: array - items: &508 + items: &511 title: Diff Entry description: Diff Entry type: object @@ -56824,7 +57126,7 @@ paths: - self protected: type: boolean - protection: *430 + protection: *433 protection_url: type: string format: uri @@ -56931,7 +57233,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *386 + '301': *389 '404': *6 x-github: githubCloudOnly: false @@ -56953,15 +57255,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *430 + schema: *433 examples: default: value: @@ -57155,9 +57457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -57412,7 +57714,7 @@ paths: url: type: string format: uri - required_status_checks: &438 + required_status_checks: &441 title: Status Check Policy description: Status Check Policy type: object @@ -57564,7 +57866,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *432 + restrictions: *435 required_conversation_resolution: type: object properties: @@ -57676,9 +57978,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -57703,17 +58005,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: &434 + default: &437 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57735,17 +58037,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: *434 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57764,9 +58066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -57791,17 +58093,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: - default: &436 + default: &439 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57897,9 +58199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -57997,9 +58299,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *438 examples: - default: *436 + default: *439 '422': *15 x-github: githubCloudOnly: false @@ -58020,9 +58322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58049,17 +58351,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: &437 + default: &440 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58082,17 +58384,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: *437 + default: *440 '404': *6 x-github: githubCloudOnly: false @@ -58112,9 +58414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58139,17 +58441,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: &439 + default: &442 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58175,9 +58477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58229,9 +58531,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: *439 + default: *442 '404': *6 '422': *15 x-github: @@ -58253,9 +58555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58279,9 +58581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58315,9 +58617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58384,9 +58686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58450,9 +58752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: content: application/json: @@ -58518,15 +58820,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *432 + schema: *435 examples: default: value: @@ -58617,9 +58919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58642,9 +58944,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58654,7 +58956,7 @@ paths: type: array items: *5 examples: - default: &440 + default: &443 value: - id: 1 slug: octoapp @@ -58711,9 +59013,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58747,7 +59049,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58768,9 +59070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58804,7 +59106,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58825,9 +59127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58861,7 +59163,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58883,9 +59185,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58895,7 +59197,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '404': *6 x-github: githubCloudOnly: false @@ -58915,9 +59217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58955,7 +59257,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -58976,9 +59278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -59016,7 +59318,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -59037,9 +59339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: content: application/json: @@ -59076,7 +59378,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -59098,9 +59400,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -59110,7 +59412,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -59134,9 +59436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59169,7 +59471,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59194,9 +59496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59229,7 +59531,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59254,9 +59556,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59289,7 +59591,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59316,9 +59618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59340,7 +59642,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *444 examples: default: value: @@ -59454,8 +59756,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *372 - - *373 + - *375 + - *376 - *220 - *221 - *222 @@ -59491,8 +59793,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59565,8 +59867,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - *220 - *221 - *222 @@ -59580,9 +59882,9 @@ paths: application/json: schema: type: array - items: *442 + items: *445 examples: - default: *443 + default: *446 '404': *6 '403': *29 '500': *99 @@ -59606,8 +59908,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59619,7 +59921,7 @@ paths: description: A single bypass request. content: application/json: - schema: *442 + schema: *445 examples: default: value: @@ -59677,8 +59979,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59749,8 +60051,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_response_id in: path required: true @@ -59783,8 +60085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -60063,7 +60365,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &448 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60182,8 +60484,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *444 - deployment: &759 + items: *447 + deployment: &762 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60463,9 +60765,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *372 - - *373 - - &446 + - *375 + - *376 + - &449 name: check_run_id description: The unique identifier of the check run. in: path @@ -60477,9 +60779,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: &447 + default: &450 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60579,9 +60881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 requestBody: required: true content: @@ -60821,9 +61123,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *447 + default: *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60843,9 +61145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 - *17 - *19 responses: @@ -60942,9 +61244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 responses: '201': description: Response @@ -60988,8 +61290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -61011,7 +61313,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &450 + schema: &453 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61075,7 +61377,7 @@ paths: nullable: true pull_requests: type: array - items: *444 + items: *447 nullable: true app: title: GitHub app @@ -61097,12 +61399,12 @@ paths: type: string format: date-time nullable: true - head_commit: &785 + head_commit: &788 title: Simple Commit description: A commit. type: object - properties: *448 - required: *449 + properties: *451 + required: *452 latest_check_runs_count: type: integer check_runs_url: @@ -61130,7 +61432,7 @@ paths: - check_runs_url - pull_requests examples: - default: &451 + default: &454 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61421,9 +61723,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61442,8 +61744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -61752,9 +62054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *372 - - *373 - - &452 + - *375 + - *376 + - &455 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61766,9 +62068,9 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61791,17 +62093,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: - - *372 - - *373 - - *452 - - &501 + - *375 + - *376 + - *455 + - &504 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &502 + - &505 name: status description: Returns check runs with the specified `status`. in: query @@ -61840,9 +62142,9 @@ paths: type: integer check_runs: type: array - items: *445 + items: *448 examples: - default: &503 + default: &506 value: total_count: 1 check_runs: @@ -61944,9 +62246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *372 - - *373 - - *452 + - *375 + - *376 + - *455 responses: '201': description: Response @@ -61979,21 +62281,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: - - *372 - - *373 + - *375 + - *376 - *228 - *229 - *19 - *17 - - &468 + - &471 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: *453 - - &469 + schema: *456 + - &472 name: pr description: The number of the pull request for the results you want to list. in: query @@ -62024,7 +62326,7 @@ paths: be returned. in: query required: false - schema: *454 + schema: *457 responses: '200': description: Response @@ -62040,7 +62342,7 @@ paths: updated_at: *108 url: *105 html_url: *106 - instances_url: *455 + instances_url: *458 state: *89 fixed_at: *110 dismissed_by: @@ -62051,11 +62353,11 @@ paths: required: *21 nullable: true dismissed_at: *109 - dismissed_reason: *456 - dismissed_comment: *457 - rule: *458 - tool: *459 - most_recent_instance: *460 + dismissed_reason: *459 + dismissed_comment: *460 + rule: *461 + tool: *462 + most_recent_instance: *463 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62178,7 +62480,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &461 + '403': &464 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62205,9 +62507,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: - - *372 - - *373 - - &462 + - *375 + - *376 + - &465 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62221,7 +62523,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &466 type: object properties: number: *100 @@ -62229,7 +62531,7 @@ paths: updated_at: *108 url: *105 html_url: *106 - instances_url: *455 + instances_url: *458 state: *89 fixed_at: *110 dismissed_by: @@ -62240,8 +62542,8 @@ paths: required: *21 nullable: true dismissed_at: *109 - dismissed_reason: *456 - dismissed_comment: *457 + dismissed_reason: *459 + dismissed_comment: *460 rule: type: object properties: @@ -62295,8 +62597,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *459 - most_recent_instance: *460 + tool: *462 + most_recent_instance: *463 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62392,7 +62694,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62412,9 +62714,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: true content: @@ -62429,8 +62731,8 @@ paths: enum: - open - dismissed - dismissed_reason: *456 - dismissed_comment: *457 + dismissed_reason: *459 + dismissed_comment: *460 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62449,7 +62751,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -62525,7 +62827,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &467 + '403': &470 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62552,15 +62854,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 type: object properties: status: @@ -62586,13 +62888,13 @@ paths: - description - started_at examples: - default: &465 + default: &468 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &466 + '400': &469 description: Bad Request content: application/json: @@ -62603,7 +62905,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': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62628,29 +62930,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: OK content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '202': description: Accepted content: application/json: - schema: *464 + schema: *467 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *466 + '400': *469 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62682,9 +62984,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: false content: @@ -62729,8 +63031,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *466 - '403': *467 + '400': *469 + '403': *470 '404': *6 '422': description: Unprocessable Entity @@ -62754,13 +63056,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 - *19 - *17 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -62768,7 +63070,7 @@ paths: application/json: schema: type: array - items: *460 + items: *463 examples: default: value: @@ -62807,7 +63109,7 @@ paths: end_column: 50 classifications: - source - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62841,25 +63143,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: - - *372 - - *373 + - *375 + - *376 - *228 - *229 - *19 - *17 - - *469 + - *472 - 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: *453 + schema: *456 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &472 + schema: &475 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -62880,23 +63182,23 @@ paths: application/json: schema: type: array - items: &473 + items: &476 type: object properties: - ref: *453 - commit_sha: &481 + ref: *456 + commit_sha: &484 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: *470 + analysis_key: *473 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *471 + category: *474 error: type: string example: error reading field xyz @@ -62920,8 +63222,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *472 - tool: *459 + sarif_id: *475 + tool: *462 deletable: type: boolean warning: @@ -62982,7 +63284,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63018,8 +63320,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: - - *372 - - *373 + - *375 + - *376 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63032,7 +63334,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: response: summary: application/json response @@ -63086,7 +63388,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63168,8 +63470,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: - - *372 - - *373 + - *375 + - *376 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63222,7 +63524,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': *467 + '403': *470 '404': *6 '503': *132 x-github: @@ -63244,8 +63546,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -63253,7 +63555,7 @@ paths: application/json: schema: type: array - items: &474 + items: &477 title: CodeQL Database description: A CodeQL database. type: object @@ -63364,7 +63666,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': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63393,8 +63695,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: - - *372 - - *373 + - *375 + - *376 - name: language in: path description: The language of the CodeQL database. @@ -63406,7 +63708,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: default: value: @@ -63438,9 +63740,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': &510 + '302': &513 description: Found - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63462,8 +63764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *372 - - *373 + - *375 + - *376 - name: language in: path description: The language of the CodeQL database. @@ -63473,7 +63775,7 @@ paths: responses: '204': description: Response - '403': *467 + '403': *470 '404': *6 '503': *132 x-github: @@ -63501,8 +63803,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -63511,7 +63813,7 @@ paths: type: object additionalProperties: false properties: - language: &475 + language: &478 type: string description: The language targeted by the CodeQL query enum: @@ -63589,7 +63891,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &479 + schema: &482 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63599,7 +63901,7 @@ paths: description: The ID of the variant analysis. controller_repo: *96 actor: *4 - query_language: *475 + query_language: *478 query_pack_url: type: string description: The download url for the query pack. @@ -63646,7 +63948,7 @@ paths: items: type: object properties: - repository: &476 + repository: &479 title: Repository Identifier description: Repository Identifier type: object @@ -63682,7 +63984,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &480 + analysis_status: &483 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63714,7 +64016,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &477 + access_mismatch_repos: &480 type: object properties: repository_count: @@ -63728,7 +64030,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *476 + items: *479 required: - repository_count - repositories @@ -63750,8 +64052,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *477 - over_limit_repos: *477 + no_codeql_db_repos: *480 + over_limit_repos: *480 required: - access_mismatch_repos - not_found_repos @@ -63767,7 +64069,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &478 + value: &481 summary: Default response value: id: 1 @@ -63919,10 +64221,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *478 + value: *481 repository_lists: summary: Response for a successful variant analysis submission - value: *478 + value: *481 '404': *6 '422': description: Unable to process variant analysis submission @@ -63950,8 +64252,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: - - *372 - - *373 + - *375 + - *376 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63963,9 +64265,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: *478 + default: *481 '404': *6 '503': *132 x-github: @@ -63988,7 +64290,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: - - *372 + - *375 - name: repo in: path description: The name of the controller repository. @@ -64023,7 +64325,7 @@ paths: type: object properties: repository: *96 - analysis_status: *480 + analysis_status: *483 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64148,8 +64450,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64223,7 +64525,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -64244,8 +64546,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -64327,7 +64629,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *467 + '403': *470 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64392,8 +64694,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -64401,7 +64703,7 @@ paths: schema: type: object properties: - commit_sha: *481 + commit_sha: *484 ref: type: string description: |- @@ -64459,7 +64761,7 @@ paths: schema: type: object properties: - id: *472 + id: *475 url: type: string description: The REST API URL for checking the status of the upload. @@ -64473,7 +64775,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': *467 + '403': *470 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64496,8 +64798,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: - - *372 - - *373 + - *375 + - *376 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64543,7 +64845,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': *461 + '403': *464 '404': description: Not Found if the sarif id does not match any upload '503': *132 @@ -64568,8 +64870,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64650,8 +64952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *372 - - *373 + - *375 + - *376 - 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 @@ -64771,8 +65073,8 @@ paths: parameters: - *17 - *19 - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64788,7 +65090,7 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: default: value: @@ -65086,8 +65388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -65150,17 +65452,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '400': *14 '401': *25 '403': *29 @@ -65189,8 +65491,8 @@ paths: parameters: - *17 - *19 - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -65254,8 +65556,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: - - *372 - - *373 + - *375 + - *376 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65290,14 +65592,14 @@ paths: type: integer machines: type: array - items: &715 + items: &718 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *486 + required: *487 examples: - default: &716 + default: &719 value: total_count: 2 machines: @@ -65337,8 +65639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *372 - - *373 + - *375 + - *376 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65422,8 +65724,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: - - *372 - - *373 + - *375 + - *376 - 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 @@ -65489,8 +65791,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -65508,7 +65810,7 @@ paths: type: integer secrets: type: array - items: &488 + items: &491 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65528,7 +65830,7 @@ paths: - created_at - updated_at examples: - default: *485 + default: *488 headers: Link: *39 x-github: @@ -65551,16 +65853,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *486 + schema: *489 examples: - default: *487 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65580,17 +65882,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65610,8 +65912,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: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -65664,8 +65966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -65694,8 +65996,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *372 - - *373 + - *375 + - *376 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65737,7 +66039,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &490 + properties: &493 login: type: string example: octocat @@ -65830,7 +66132,7 @@ paths: user_view_type: type: string example: public - required: &491 + required: &494 - avatar_url - events_url - followers_url @@ -65904,8 +66206,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: - - *372 - - *373 + - *375 + - *376 - *219 responses: '204': @@ -65948,8 +66250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *372 - - *373 + - *375 + - *376 - *219 requestBody: required: false @@ -65976,7 +66278,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &558 + schema: &561 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66198,8 +66500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *372 - - *373 + - *375 + - *376 - *219 responses: '204': @@ -66229,8 +66531,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *372 - - *373 + - *375 + - *376 - *219 responses: '200': @@ -66251,8 +66553,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *490 - required: *491 + properties: *493 + required: *494 nullable: true required: - permission @@ -66307,8 +66609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -66318,7 +66620,7 @@ paths: application/json: schema: type: array - items: &492 + items: &495 title: Commit Comment description: Commit Comment type: object @@ -66376,7 +66678,7 @@ paths: - created_at - updated_at examples: - default: &495 + default: &498 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66435,17 +66737,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *492 + schema: *495 examples: - default: &496 + default: &499 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66502,8 +66804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -66526,7 +66828,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -66577,8 +66879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -66600,8 +66902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -66628,9 +66930,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -66651,8 +66953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -66685,16 +66987,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -66716,10 +67018,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -66768,8 +67070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *372 - - *373 + - *375 + - *376 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66825,9 +67127,9 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: &609 + default: &612 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66921,9 +67223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *372 - - *373 - - &494 + - *375 + - *376 + - &497 name: commit_sha description: The SHA of the commit. in: path @@ -66995,9 +67297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 - *17 - *19 responses: @@ -67007,9 +67309,9 @@ paths: application/json: schema: type: array - items: *492 + items: *495 examples: - default: *495 + default: *498 headers: Link: *39 x-github: @@ -67037,9 +67339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 requestBody: required: true content: @@ -67074,9 +67376,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: - default: *496 + default: *499 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67104,9 +67406,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: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 - *17 - *19 responses: @@ -67116,7 +67418,7 @@ paths: application/json: schema: type: array - items: &600 + items: &603 title: Pull Request Simple description: Pull Request Simple type: object @@ -67222,8 +67524,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true active_lock_reason: type: string @@ -67319,7 +67621,7 @@ paths: _links: type: object properties: - comments: &499 + comments: &502 title: Link description: Hypermedia Link type: object @@ -67328,13 +67630,13 @@ paths: type: string required: - href - commits: *499 - statuses: *499 - html: *499 - issue: *499 - review_comments: *499 - review_comment: *499 - self: *499 + commits: *502 + statuses: *502 + html: *502 + issue: *502 + review_comments: *502 + review_comment: *502 + self: *502 required: - comments - commits @@ -67345,7 +67647,7 @@ paths: - review_comment - self author_association: *141 - auto_merge: &602 + auto_merge: &605 title: Auto merge description: The status of auto merging a pull request. type: object @@ -67408,7 +67710,7 @@ paths: - author_association - auto_merge examples: - default: &601 + default: &604 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67945,11 +68247,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 - - &500 + - &503 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)" @@ -67964,9 +68266,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: - default: &587 + default: &590 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68079,11 +68381,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: - - *372 - - *373 - - *500 - - *501 - - *502 + - *375 + - *376 + - *503 + - *504 + - *505 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68117,9 +68419,9 @@ paths: type: integer check_runs: type: array - items: *445 + items: *448 examples: - default: *503 + default: *506 headers: Link: *39 x-github: @@ -68144,9 +68446,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: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68154,7 +68456,7 @@ paths: schema: type: integer example: 1 - - *501 + - *504 - *17 - *19 responses: @@ -68172,7 +68474,7 @@ paths: type: integer check_suites: type: array - items: *450 + items: *453 examples: default: value: @@ -68372,9 +68674,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: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - *17 - *19 responses: @@ -68572,9 +68874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - *17 - *19 responses: @@ -68584,7 +68886,7 @@ paths: application/json: schema: type: array - items: &663 + items: &666 title: Status description: The status of a commit. type: object @@ -68665,7 +68967,7 @@ paths: site_admin: false headers: Link: *39 - '301': *386 + '301': *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68693,8 +68995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -68723,20 +69025,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *504 - required: *505 + properties: *507 + required: *508 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &506 + properties: &509 url: type: string format: uri html_url: type: string format: uri - required: &507 + required: &510 - url - html_url nullable: true @@ -68750,26 +69052,26 @@ paths: contributing: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true readme: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true issue_template: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true pull_request_template: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true required: - code_of_conduct @@ -68896,8 +69198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 - name: basehead @@ -68940,8 +69242,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *493 - merge_base_commit: *493 + base_commit: *496 + merge_base_commit: *496 status: type: string enum: @@ -68961,10 +69263,10 @@ paths: example: 6 commits: type: array - items: *493 + items: *496 files: type: array - items: *508 + items: *511 required: - url - html_url @@ -69250,8 +69552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -69392,7 +69694,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &509 + response-if-content-is-a-file: &512 summary: Response if content is a file value: type: file @@ -69524,7 +69826,7 @@ paths: - size - type - url - - &614 + - &617 title: Content File description: Content File type: object @@ -69725,7 +70027,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *509 + response-if-content-is-a-file: *512 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69794,7 +70096,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *510 + '302': *513 '304': *37 x-github: githubCloudOnly: false @@ -69817,8 +70119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -69911,7 +70213,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &514 title: File Commit description: File Commit type: object @@ -70063,7 +70365,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *514 examples: example-for-creating-a-file: value: @@ -70117,7 +70419,7 @@ paths: schema: oneOf: - *3 - - &540 + - &543 description: Repository rule violation was detected type: object properties: @@ -70138,7 +70440,7 @@ paths: items: type: object properties: - placeholder_id: &655 + placeholder_id: &658 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70170,8 +70472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -70232,7 +70534,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *514 examples: default: value: @@ -70287,8 +70589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *372 - - *373 + - *375 + - *376 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70411,8 +70713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *247 - *248 - *249 @@ -70454,7 +70756,7 @@ paths: application/json: schema: type: array - items: &514 + items: &517 type: object description: A Dependabot alert. properties: @@ -70500,7 +70802,7 @@ paths: - unknown - direct - transitive - security_advisory: *512 + security_advisory: *515 security_vulnerability: *104 url: *105 html_url: *106 @@ -70531,7 +70833,7 @@ paths: nullable: true maxLength: 280 fixed_at: *110 - auto_dismissed_at: *513 + auto_dismissed_at: *516 required: - number - state @@ -70761,9 +71063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *372 - - *373 - - &515 + - *375 + - *376 + - &518 name: alert_number in: path description: |- @@ -70778,7 +71080,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -70891,9 +71193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *372 - - *373 - - *515 + - *375 + - *376 + - *518 requestBody: required: true content: @@ -70938,7 +71240,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -71067,8 +71369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -71086,7 +71388,7 @@ paths: type: integer secrets: type: array - items: &518 + items: &521 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71139,16 +71441,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71168,15 +71470,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *518 + schema: *521 examples: default: value: @@ -71202,8 +71504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -71256,8 +71558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -71280,8 +71582,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: - - *372 - - *373 + - *375 + - *376 - 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 @@ -71441,8 +71743,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -71681,8 +71983,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -71757,7 +72059,7 @@ paths: - version - url additionalProperties: false - metadata: &519 + metadata: &522 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71790,7 +72092,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *519 + metadata: *522 resolved: type: object description: A collection of resolved package dependencies. @@ -71803,7 +72105,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *519 + metadata: *522 relationship: type: string description: A notation of whether a dependency is requested @@ -71932,8 +72234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *372 - - *373 + - *375 + - *376 - name: sha description: The SHA recorded at creation time. in: query @@ -71973,9 +72275,9 @@ paths: application/json: schema: type: array - items: *520 + items: *523 examples: - default: *521 + default: *524 headers: Link: *39 x-github: @@ -72041,8 +72343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -72123,7 +72425,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *523 examples: simple-example: summary: Simple example @@ -72196,9 +72498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *372 - - *373 - - &522 + - *375 + - *376 + - &525 name: deployment_id description: deployment_id parameter in: path @@ -72210,7 +72512,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *523 examples: default: value: @@ -72275,9 +72577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 responses: '204': description: Response @@ -72299,9 +72601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 - *17 - *19 responses: @@ -72311,7 +72613,7 @@ paths: application/json: schema: type: array - items: &523 + items: &526 title: Deployment Status description: The status of a deployment. type: object @@ -72472,9 +72774,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 requestBody: required: true content: @@ -72549,9 +72851,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &524 + default: &527 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72607,9 +72909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 - name: status_id in: path required: true @@ -72620,9 +72922,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *524 + default: *527 '404': *6 x-github: githubCloudOnly: false @@ -72647,8 +72949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -72705,8 +73007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -72723,7 +73025,7 @@ paths: type: integer environments: type: array - items: &526 + items: &529 title: Environment description: Details of a deployment environment type: object @@ -72775,7 +73077,7 @@ paths: type: type: string example: wait_timer - wait_timer: &528 + wait_timer: &531 type: integer example: 30 description: The amount of time to delay a job after @@ -72812,7 +73114,7 @@ paths: items: type: object properties: - type: *525 + type: *528 reviewer: anyOf: - *4 @@ -72836,7 +73138,7 @@ paths: - id - node_id - type - deployment_branch_policy: &529 + deployment_branch_policy: &532 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72952,9 +73254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *372 - - *373 - - &527 + - *375 + - *376 + - &530 name: environment_name in: path required: true @@ -72967,9 +73269,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: - default: &530 + default: &533 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73053,9 +73355,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: false content: @@ -73064,7 +73366,7 @@ paths: type: object nullable: true properties: - wait_timer: *528 + wait_timer: *531 prevent_self_review: type: boolean example: false @@ -73081,13 +73383,13 @@ paths: items: type: object properties: - type: *525 + type: *528 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *529 + deployment_branch_policy: *532 additionalProperties: false examples: default: @@ -73107,9 +73409,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: - default: *530 + default: *533 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73133,9 +73435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 responses: '204': description: Default response @@ -73160,9 +73462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *17 - *19 responses: @@ -73180,7 +73482,7 @@ paths: example: 2 branch_policies: type: array - items: &531 + items: &534 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73237,9 +73539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: true content: @@ -73285,9 +73587,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - example-wildcard: &532 + example-wildcard: &535 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73329,10 +73631,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - &533 + - *375 + - *376 + - *530 + - &536 name: branch_policy_id in: path required: true @@ -73344,9 +73646,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73365,10 +73667,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - *533 + - *375 + - *376 + - *530 + - *536 requestBody: required: true content: @@ -73396,9 +73698,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73417,10 +73719,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - *533 + - *375 + - *376 + - *530 + - *536 responses: '204': description: Response @@ -73445,9 +73747,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 responses: '200': description: List of deployment protection rules @@ -73463,7 +73765,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &534 + items: &537 title: Deployment protection rule description: Deployment protection rule type: object @@ -73482,7 +73784,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &535 + app: &538 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73581,9 +73883,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 requestBody: content: application/json: @@ -73604,9 +73906,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *534 + schema: *537 examples: - default: &536 + default: &539 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73641,9 +73943,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 - *19 - *17 responses: @@ -73662,7 +73964,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *535 + items: *538 examples: default: value: @@ -73697,10 +73999,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: - - *372 - - *373 - - *527 - - &537 + - *375 + - *376 + - *530 + - &540 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73712,9 +74014,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *537 examples: - default: *536 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73735,10 +74037,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: - - *527 - - *373 - - *372 - - *537 + - *530 + - *376 + - *375 + - *540 responses: '204': description: Response @@ -73764,9 +74066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *17 - *19 responses: @@ -73784,9 +74086,9 @@ paths: type: integer secrets: type: array - items: *409 + items: *412 examples: - default: *410 + default: *413 headers: Link: *39 x-github: @@ -73811,17 +74113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 responses: '200': description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73843,18 +74145,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73876,9 +74178,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 requestBody: required: true @@ -73936,9 +74238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 responses: '204': @@ -73964,10 +74266,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *372 - - *373 - - *527 - - *396 + - *375 + - *376 + - *530 + - *399 - *19 responses: '200': @@ -73984,9 +74286,9 @@ paths: type: integer variables: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *39 x-github: @@ -74009,9 +74311,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: true content: @@ -74063,18 +74365,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *210 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *539 + default: *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74095,10 +74397,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 - - *527 + - *530 requestBody: required: true content: @@ -74140,10 +74442,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 - - *527 + - *530 responses: '204': description: Response @@ -74165,8 +74467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -74243,8 +74545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *372 - - *373 + - *375 + - *376 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74403,8 +74705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -74436,9 +74738,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 '400': *14 '422': *15 '403': *29 @@ -74459,8 +74761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -74520,7 +74822,7 @@ paths: schema: oneOf: - *180 - - *540 + - *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74545,8 +74847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *372 - - *373 + - *375 + - *376 - name: file_sha in: path required: true @@ -74645,8 +74947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -74755,7 +75057,7 @@ paths: description: Response content: application/json: - schema: &541 + schema: &544 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74969,15 +75271,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 responses: '200': description: Response content: application/json: - schema: *541 + schema: *544 examples: default: value: @@ -75033,9 +75335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *372 - - *373 - - &542 + - *375 + - *376 + - &545 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -75052,7 +75354,7 @@ paths: application/json: schema: type: array - items: &543 + items: &546 title: Git Reference description: Git references within a repository type: object @@ -75127,17 +75429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 responses: '200': description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: &544 + default: &547 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75166,8 +75468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75196,9 +75498,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: *544 + default: *547 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75224,9 +75526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 requestBody: required: true content: @@ -75255,9 +75557,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: *544 + default: *547 '422': *15 '409': *94 x-github: @@ -75275,9 +75577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 responses: '204': description: Response @@ -75330,8 +75632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75398,7 +75700,7 @@ paths: description: Response content: application/json: - schema: &546 + schema: &549 title: Git Tag description: Metadata for a Git tag type: object @@ -75449,7 +75751,7 @@ paths: - sha - type - url - verification: *545 + verification: *548 required: - sha - url @@ -75459,7 +75761,7 @@ paths: - tag - message examples: - default: &547 + default: &550 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75532,8 +75834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *372 - - *373 + - *375 + - *376 - name: tag_sha in: path required: true @@ -75544,9 +75846,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *547 + default: *550 '404': *6 '409': *94 x-github: @@ -75570,8 +75872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75644,7 +75946,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &551 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75756,8 +76058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *372 - - *373 + - *375 + - *376 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75780,7 +76082,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: default-response: summary: Default response @@ -75839,8 +76141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -75850,7 +76152,7 @@ paths: application/json: schema: type: array - items: &549 + items: &552 title: Webhook description: Webhooks for repositories. type: object @@ -75904,7 +76206,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &793 + last_response: &796 title: Hook Response type: object properties: @@ -75978,8 +76280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -76031,9 +76333,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: &550 + default: &553 value: type: Repository id: 12345678 @@ -76081,17 +76383,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '200': description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *550 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -76111,8 +76413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 requestBody: required: true @@ -76158,9 +76460,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *550 + default: *553 '422': *15 '404': *6 x-github: @@ -76181,8 +76483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76207,8 +76509,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: - - *372 - - *373 + - *375 + - *376 - *263 responses: '200': @@ -76236,8 +76538,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: - - *372 - - *373 + - *375 + - *376 - *263 requestBody: required: false @@ -76282,8 +76584,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 - *17 - *264 @@ -76315,8 +76617,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: - - *372 - - *373 + - *375 + - *376 - *263 - *16 responses: @@ -76345,8 +76647,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: - - *372 - - *373 + - *375 + - *376 - *263 - *16 responses: @@ -76370,8 +76672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76397,8 +76699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76457,14 +76759,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &551 + schema: &554 title: Import description: A repository import from an external source. type: object @@ -76563,7 +76865,7 @@ paths: - html_url - authors_url examples: - default: &554 + default: &557 value: vcs: subversion use_lfs: true @@ -76579,7 +76881,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &552 + '503': &555 description: Unavailable due to service under maintenance. content: application/json: @@ -76608,8 +76910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -76657,7 +76959,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: default: value: @@ -76682,7 +76984,7 @@ paths: type: string '422': *15 '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76710,8 +77012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -76760,7 +77062,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: example-1: summary: Example 1 @@ -76808,7 +77110,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76831,12 +77133,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76862,9 +77164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *372 - - *373 - - &739 + - *375 + - *376 + - &742 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76878,7 +77180,7 @@ paths: application/json: schema: type: array - items: &553 + items: &556 title: Porter Author description: Porter Author type: object @@ -76932,7 +77234,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76957,8 +77259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *372 - - *373 + - *375 + - *376 - name: author_id in: path required: true @@ -76988,7 +77290,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: default: value: @@ -77001,7 +77303,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77025,8 +77327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77067,7 +77369,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77095,8 +77397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -77123,11 +77425,11 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: - default: *554 + default: *557 '422': *15 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77150,8 +77452,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77159,8 +77461,8 @@ paths: application/json: schema: *22 examples: - default: *555 - '301': *386 + default: *558 + '301': *389 '404': *6 x-github: githubCloudOnly: false @@ -77180,8 +77482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77194,7 +77496,7 @@ paths: properties: {} additionalProperties: false examples: - default: &557 + default: &560 value: limit: collaborators_only origin: repository @@ -77219,13 +77521,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: application/json: - schema: *556 + schema: *559 examples: default: summary: Example request body @@ -77239,7 +77541,7 @@ paths: application/json: schema: *281 examples: - default: *557 + default: *560 '409': description: Response x-github: @@ -77261,8 +77563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -77285,8 +77587,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -77296,9 +77598,9 @@ paths: application/json: schema: type: array - items: *558 + items: *561 examples: - default: &732 + default: &735 value: - id: 1 repository: @@ -77429,8 +77731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *372 - - *373 + - *375 + - *376 - *285 requestBody: required: false @@ -77460,7 +77762,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: default: value: @@ -77591,8 +77893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *372 - - *373 + - *375 + - *376 - *285 responses: '204': @@ -77624,8 +77926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *372 - - *373 + - *375 + - *376 - 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 @@ -77653,6 +77955,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 @@ -77665,7 +77975,7 @@ paths: required: false schema: type: string - - *287 + - *290 - name: sort description: What to sort results by. in: query @@ -77690,7 +78000,7 @@ paths: type: array items: *154 examples: - default: &569 + default: &572 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77838,7 +78148,7 @@ paths: state_reason: completed headers: Link: *39 - '301': *386 + '301': *389 '422': *15 '404': *6 x-github: @@ -77867,8 +78177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -77926,6 +78236,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -77945,7 +78260,7 @@ paths: application/json: schema: *154 examples: - default: &564 + default: &567 value: id: 1 node_id: MDU6SXNzdWUx @@ -78101,7 +78416,7 @@ paths: '422': *15 '503': *132 '404': *6 - '410': *383 + '410': *386 x-github: triggersNotification: true githubCloudOnly: false @@ -78129,8 +78444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *164 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78151,9 +78466,9 @@ paths: application/json: schema: type: array - items: *559 + items: *562 examples: - default: &566 + default: &569 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78211,17 +78526,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: &560 + default: &563 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78275,8 +78590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -78299,9 +78614,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: *560 + default: *563 '422': *15 x-github: githubCloudOnly: false @@ -78319,8 +78634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -78341,8 +78656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -78369,9 +78684,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -78392,8 +78707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -78426,16 +78741,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -78457,10 +78772,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -78480,8 +78795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -78491,7 +78806,7 @@ paths: application/json: schema: type: array - items: &563 + items: &566 title: Issue Event description: Issue Event type: object @@ -78534,8 +78849,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *561 - required: *562 + properties: *564 + required: *565 nullable: true label: title: Issue Event Label @@ -78842,8 +79157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *372 - - *373 + - *375 + - *376 - name: event_id in: path required: true @@ -78854,7 +79169,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: default: value: @@ -79047,7 +79362,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *383 + '410': *386 '403': *29 x-github: githubCloudOnly: false @@ -79081,9 +79396,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *372 - - *373 - - &565 + - *375 + - *376 + - &568 name: issue_number description: The number that identifies the issue. in: path @@ -79097,10 +79412,10 @@ paths: application/json: schema: *154 examples: - default: *564 - '301': *386 + default: *567 + '301': *389 '404': *6 - '410': *383 + '410': *386 '304': *37 x-github: githubCloudOnly: false @@ -79125,9 +79440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -79206,6 +79521,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -79224,13 +79545,13 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 '422': *15 '503': *132 '403': *29 - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79248,9 +79569,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -79278,7 +79599,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79294,9 +79615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: content: application/json: @@ -79323,7 +79644,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79345,9 +79666,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: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - name: assignee in: path required: true @@ -79387,9 +79708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *144 - *17 - *19 @@ -79400,13 +79721,13 @@ paths: application/json: schema: type: array - items: *559 + items: *562 examples: - default: *566 + default: *569 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79435,9 +79756,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -79459,16 +79780,16 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: *560 + default: *563 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *383 + '410': *386 '422': *15 '404': *6 x-github: @@ -79488,9 +79809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -79504,7 +79825,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &570 + - &573 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79558,7 +79879,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &574 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79694,7 +80015,7 @@ paths: - performed_via_github_app - assignee - assigner - - &572 + - &575 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79745,7 +80066,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &576 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79796,7 +80117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &577 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79850,7 +80171,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &578 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79897,7 +80218,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &579 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79944,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &580 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80004,7 +80325,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &581 title: Locked Issue Event description: Locked Issue Event type: object @@ -80052,7 +80373,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &582 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80118,7 +80439,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &583 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80184,7 +80505,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &584 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80250,7 +80571,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &585 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80341,7 +80662,7 @@ paths: color: red headers: Link: *39 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80358,9 +80679,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -80370,7 +80691,7 @@ paths: application/json: schema: type: array - items: &567 + items: &570 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80417,7 +80738,7 @@ paths: - color - default examples: - default: &568 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80435,9 +80756,9 @@ paths: default: false headers: Link: *39 - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80454,9 +80775,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80515,12 +80836,12 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 - '301': *386 + default: *571 + '301': *389 '404': *6 - '410': *383 + '410': *386 '422': *15 x-github: githubCloudOnly: false @@ -80537,9 +80858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80599,12 +80920,12 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 - '301': *386 + default: *571 + '301': *389 '404': *6 - '410': *383 + '410': *386 '422': *15 x-github: githubCloudOnly: false @@ -80621,15 +80942,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 responses: '204': description: Response - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80648,9 +80969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - name: name in: path required: true @@ -80663,7 +80984,7 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: default: value: @@ -80674,9 +80995,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80696,9 +81017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80726,7 +81047,7 @@ paths: '204': description: Response '403': *29 - '410': *383 + '410': *386 '404': *6 '422': *15 x-github: @@ -80744,9 +81065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 responses: '204': description: Response @@ -80768,9 +81089,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - 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. @@ -80796,13 +81117,13 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80820,9 +81141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -80854,16 +81175,16 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -80885,10 +81206,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *372 - - *373 - - *565 - - *364 + - *375 + - *376 + - *568 + - *367 responses: '204': description: Response @@ -80917,9 +81238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -80943,7 +81264,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -80976,9 +81297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -80990,11 +81311,11 @@ paths: type: array items: *154 examples: - default: *569 + default: *572 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81022,9 +81343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -81053,14 +81374,14 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *383 + '410': *386 '422': *15 '404': *6 x-github: @@ -81080,9 +81401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -81115,7 +81436,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 '403': *29 '404': *6 '422': *7 @@ -81137,9 +81458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -81154,9 +81475,6 @@ paths: description: Timeline Event type: object anyOf: - - *570 - - *571 - - *572 - *573 - *574 - *575 @@ -81167,6 +81485,9 @@ paths: - *580 - *581 - *582 + - *583 + - *584 + - *585 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81471,7 +81792,7 @@ paths: type: string comments: type: array - items: &603 + items: &606 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81680,7 +82001,7 @@ paths: type: string comments: type: array - items: *492 + items: *495 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -81969,7 +82290,7 @@ paths: headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81986,8 +82307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -81997,7 +82318,7 @@ paths: application/json: schema: type: array - items: &583 + items: &586 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82062,8 +82383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82099,9 +82420,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: &584 + default: &587 value: id: 1 key: ssh-rsa AAA... @@ -82135,9 +82456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *372 - - *373 - - &585 + - *375 + - *376 + - &588 name: key_id description: The unique identifier of the key. in: path @@ -82149,9 +82470,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '404': *6 x-github: githubCloudOnly: false @@ -82169,9 +82490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *372 - - *373 - - *585 + - *375 + - *376 + - *588 responses: '204': description: Response @@ -82191,8 +82512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -82202,9 +82523,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 + default: *571 headers: Link: *39 '404': *6 @@ -82225,8 +82546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82262,9 +82583,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: &586 + default: &589 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82296,8 +82617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82308,9 +82629,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: *586 + default: *589 '404': *6 x-github: githubCloudOnly: false @@ -82327,8 +82648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82367,7 +82688,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -82393,8 +82714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82420,8 +82741,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -82457,8 +82778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '202': *95 '403': @@ -82486,8 +82807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -82513,9 +82834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *372 - - *373 - - *468 + - *375 + - *376 + - *471 responses: '200': description: Response @@ -82660,8 +82981,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82726,8 +83047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82761,9 +83082,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *493 + schema: *496 examples: - default: *587 + default: *590 '204': description: Response when already merged '404': @@ -82788,8 +83109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82830,12 +83151,12 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 examples: default: value: @@ -82891,8 +83212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82932,9 +83253,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &589 + default: &592 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -82993,9 +83314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *372 - - *373 - - &590 + - *375 + - *376 + - &593 name: milestone_number description: The number that identifies the milestone. in: path @@ -83007,9 +83328,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *589 + default: *592 '404': *6 x-github: githubCloudOnly: false @@ -83026,9 +83347,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 requestBody: required: false content: @@ -83066,9 +83387,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *589 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83084,9 +83405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 responses: '204': description: Response @@ -83107,9 +83428,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: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 - *17 - *19 responses: @@ -83119,9 +83440,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 + default: *571 headers: Link: *39 x-github: @@ -83140,12 +83461,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: - - *372 - - *373 - - *591 - - *592 + - *375 + - *376 + - *594 + - *595 - *144 - - *593 + - *596 - *17 - *19 responses: @@ -83157,7 +83478,7 @@ paths: type: array items: *167 examples: - default: *594 + default: *597 headers: Link: *39 x-github: @@ -83181,8 +83502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -83240,14 +83561,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &595 + schema: &598 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83372,7 +83693,7 @@ paths: - custom_404 - public examples: - default: &596 + default: &599 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83413,8 +83734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83468,9 +83789,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: *596 + default: *599 '422': *15 '409': *94 x-github: @@ -83493,8 +83814,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83601,8 +83922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -83628,8 +83949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -83639,7 +83960,7 @@ paths: application/json: schema: type: array - items: &597 + items: &600 title: Page Build description: Page Build type: object @@ -83733,8 +84054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -83779,16 +84100,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: &598 + default: &601 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83836,8 +84157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *372 - - *373 + - *375 + - *376 - name: build_id in: path required: true @@ -83848,9 +84169,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: *598 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83870,8 +84191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83976,9 +84297,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: - - *372 - - *373 - - &599 + - *375 + - *376 + - &602 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84036,9 +84357,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *372 - - *373 - - *599 + - *375 + - *376 + - *602 responses: '204': *118 '404': *6 @@ -84065,8 +84386,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -84324,8 +84645,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Private vulnerability reporting status @@ -84362,8 +84683,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: - - *372 - - *373 + - *375 + - *376 responses: '204': *118 '422': *14 @@ -84384,8 +84705,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: - - *372 - - *373 + - *375 + - *376 responses: '204': *118 '422': *14 @@ -84408,8 +84729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: Indicates the state of the projects to return. in: query @@ -84430,7 +84751,7 @@ paths: application/json: schema: type: array - items: *318 + items: *321 examples: default: value: @@ -84470,7 +84791,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -84493,8 +84814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84520,13 +84841,13 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *382 + default: *385 '401': *25 '403': *29 '404': *6 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -84549,8 +84870,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -84558,7 +84879,7 @@ paths: application/json: schema: type: array - items: *320 + items: *323 examples: default: value: @@ -84589,8 +84910,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84602,7 +84923,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *320 + items: *323 required: - properties examples: @@ -84652,8 +84973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84713,9 +85034,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 headers: Link: *39 '304': *37 @@ -84747,8 +85068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84813,7 +85134,7 @@ paths: description: Response content: application/json: - schema: &605 + schema: &608 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -84924,8 +85245,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true active_lock_reason: type: string @@ -84970,7 +85291,7 @@ paths: nullable: true requested_teams: type: array - items: *340 + items: *343 nullable: true head: type: object @@ -85009,14 +85330,14 @@ paths: _links: type: object properties: - comments: *499 - commits: *499 - statuses: *499 - html: *499 - issue: *499 - review_comments: *499 - review_comment: *499 - self: *499 + comments: *502 + commits: *502 + statuses: *502 + html: *502 + issue: *502 + review_comments: *502 + review_comment: *502 + self: *502 required: - comments - commits @@ -85027,7 +85348,7 @@ paths: - review_comment - self author_association: *141 - auto_merge: *602 + auto_merge: *605 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -85119,7 +85440,7 @@ paths: - merged_by - review_comments examples: - default: &606 + default: &609 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85646,8 +85967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - name: sort in: query required: false @@ -85676,9 +85997,9 @@ paths: application/json: schema: type: array - items: *603 + items: *606 examples: - default: &608 + default: &611 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85755,17 +86076,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: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: &604 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85840,8 +86161,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: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -85864,9 +86185,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: *604 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85882,8 +86203,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: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -85905,8 +86226,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: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -85933,9 +86254,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -85956,8 +86277,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: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -85990,16 +86311,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -86021,10 +86342,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -86067,9 +86388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *372 - - *373 - - &607 + - *375 + - *376 + - &610 name: pull_number description: The number that identifies the pull request. in: path @@ -86082,9 +86403,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *605 + schema: *608 examples: - default: *606 + default: *609 '304': *37 '404': *6 '406': @@ -86119,9 +86440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -86163,9 +86484,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *608 examples: - default: *606 + default: *609 '422': *15 '403': *29 x-github: @@ -86187,9 +86508,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -86249,17 +86570,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -86289,9 +86610,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *164 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86312,9 +86633,9 @@ paths: application/json: schema: type: array - items: *603 + items: *606 examples: - default: *608 + default: *611 headers: Link: *39 x-github: @@ -86347,9 +86668,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -86454,7 +86775,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: example-for-a-multi-line-comment: value: @@ -86542,9 +86863,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *153 requestBody: required: true @@ -86567,7 +86888,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: default: value: @@ -86653,9 +86974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -86665,9 +86986,9 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *609 + default: *612 headers: Link: *39 x-github: @@ -86697,9 +87018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -86709,7 +87030,7 @@ paths: application/json: schema: type: array - items: *508 + items: *511 examples: default: value: @@ -86747,9 +87068,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 responses: '204': description: Response if pull request has been merged @@ -86772,9 +87093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -86885,9 +87206,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 responses: '200': description: Response @@ -86962,9 +87283,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -87001,7 +87322,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -87537,9 +87858,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -87573,7 +87894,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -88078,9 +88399,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -88090,7 +88411,7 @@ paths: application/json: schema: type: array - items: &610 + items: &613 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88241,9 +88562,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -88329,9 +88650,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: &612 + default: &615 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88394,10 +88715,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: - - *372 - - *373 - - *607 - - &611 + - *375 + - *376 + - *610 + - &614 name: review_id description: The unique identifier of the review. in: path @@ -88409,9 +88730,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: &613 + default: &616 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88470,10 +88791,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88496,7 +88817,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -88558,18 +88879,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *612 + default: *615 '422': *7 '404': *6 x-github: @@ -88596,10 +88917,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 - *17 - *19 responses: @@ -88682,9 +89003,9 @@ paths: _links: type: object properties: - self: *499 - html: *499 - pull_request: *499 + self: *502 + html: *502 + pull_request: *502 required: - self - html @@ -88827,10 +89148,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88858,7 +89179,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -88921,10 +89242,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88959,9 +89280,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *613 + default: *616 '404': *6 '422': *7 '403': *29 @@ -88983,9 +89304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -89048,8 +89369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *372 - - *373 + - *375 + - *376 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89062,9 +89383,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: - default: &615 + default: &618 value: type: file encoding: base64 @@ -89106,8 +89427,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: - - *372 - - *373 + - *375 + - *376 - name: dir description: The alternate path to look for a README file in: path @@ -89127,9 +89448,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: - default: *615 + default: *618 '404': *6 '422': *15 x-github: @@ -89151,8 +89472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -89162,7 +89483,7 @@ paths: application/json: schema: type: array - items: &616 + items: &619 title: Release description: A release. type: object @@ -89225,7 +89546,7 @@ paths: author: *4 assets: type: array - items: &617 + items: &620 title: Release Asset description: Data related to a release. type: object @@ -89406,8 +89727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -89483,9 +89804,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: &620 + default: &623 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89588,9 +89909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *372 - - *373 - - &618 + - *375 + - *376 + - &621 name: asset_id description: The unique identifier of the asset. in: path @@ -89602,9 +89923,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *620 examples: - default: &619 + default: &622 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -89638,7 +89959,7 @@ paths: type: User site_admin: false '404': *6 - '302': *510 + '302': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89654,9 +89975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *372 - - *373 - - *618 + - *375 + - *376 + - *621 requestBody: required: false content: @@ -89684,9 +90005,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *620 examples: - default: *619 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89702,9 +90023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *372 - - *373 - - *618 + - *375 + - *376 + - *621 responses: '204': description: Response @@ -89728,8 +90049,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -89814,16 +90135,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89840,8 +90161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *372 - - *373 + - *375 + - *376 - name: tag description: tag parameter in: path @@ -89854,9 +90175,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -89878,9 +90199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *372 - - *373 - - &621 + - *375 + - *376 + - &624 name: release_id description: The unique identifier of the release. in: path @@ -89894,9 +90215,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: *616 + schema: *619 examples: - default: *620 + default: *623 '401': description: Unauthorized x-github: @@ -89914,9 +90235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 requestBody: required: false content: @@ -89980,9 +90301,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 '404': description: Not Found if the discussion category name is invalid content: @@ -90003,9 +90324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 responses: '204': description: Response @@ -90025,9 +90346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - *17 - *19 responses: @@ -90037,7 +90358,7 @@ paths: application/json: schema: type: array - items: *617 + items: *620 examples: default: value: @@ -90118,9 +90439,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: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - name: name in: query required: true @@ -90146,7 +90467,7 @@ paths: description: Response for successful upload content: application/json: - schema: *617 + schema: *620 examples: response-for-successful-upload: value: @@ -90200,9 +90521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - 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. @@ -90226,9 +90547,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -90249,9 +90570,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 requestBody: required: true content: @@ -90281,16 +90602,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -90312,10 +90633,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *372 - - *373 - - *621 - - *364 + - *375 + - *376 + - *624 + - *367 responses: '204': description: Response @@ -90339,9 +90660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 - *17 - *19 responses: @@ -90357,8 +90678,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *622 - - &624 + - *625 + - &627 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90377,54 +90698,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *623 - - *624 - - allOf: - - *625 - - *624 - allOf: - *626 - - *624 - - allOf: - *627 - - *624 - allOf: - *628 - - *624 + - *627 - allOf: - *629 - - *624 + - *627 - allOf: - *630 - - *624 + - *627 - allOf: - *631 - - *624 + - *627 - allOf: - *632 - - *624 + - *627 - allOf: - *633 - - *624 + - *627 - allOf: - *634 - - *624 + - *627 - allOf: - *635 - - *624 + - *627 - allOf: - *636 - - *624 + - *627 - allOf: - *637 - - *624 + - *627 - allOf: - *638 - - *624 + - *627 - allOf: - *639 - - *624 + - *627 + - allOf: + - *640 + - *627 + - allOf: + - *641 + - *627 + - allOf: + - *642 + - *627 examples: default: value: @@ -90463,8 +90784,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - name: includes_parents @@ -90475,7 +90796,7 @@ paths: schema: type: boolean default: true - - *640 + - *643 responses: '200': description: Response @@ -90530,8 +90851,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 requestBody: description: Request body required: true @@ -90593,7 +90914,7 @@ paths: application/json: schema: *128 examples: - default: &649 + default: &652 value: id: 42 name: super cool ruleset @@ -90640,12 +90961,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *372 - - *373 - - *641 + - *375 + - *376 + - *644 - *222 - - *642 - - *643 + - *645 + - *646 - *17 - *19 responses: @@ -90653,9 +90974,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 '500': *99 x-github: @@ -90676,17 +90997,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *372 - - *373 - - *646 + - *375 + - *376 + - *649 responses: '200': description: Response content: application/json: - schema: *647 + schema: *650 examples: - default: *648 + default: *651 '404': *6 '500': *99 x-github: @@ -90714,8 +91035,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90737,7 +91058,7 @@ paths: application/json: schema: *128 examples: - default: *649 + default: *652 '404': *6 '500': *99 put: @@ -90755,8 +91076,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90820,7 +91141,7 @@ paths: application/json: schema: *128 examples: - default: *649 + default: *652 '404': *6 '500': *99 delete: @@ -90838,8 +91159,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90862,8 +91183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - name: ruleset_id @@ -90881,7 +91202,7 @@ paths: type: array items: *131 examples: - default: *328 + default: *331 '404': *6 '500': *99 x-github: @@ -90900,8 +91221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90919,7 +91240,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -90974,20 +91295,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: - - *372 - - *373 - - *330 - - *331 - - *332 + - *375 + - *376 - *333 - - *86 - - *19 - - *17 - - *650 - - *651 - *334 - *335 - *336 + - *86 + - *19 + - *17 + - *653 + - *654 + - *337 + - *338 + - *339 responses: '200': description: Response @@ -90995,7 +91316,7 @@ paths: application/json: schema: type: array - items: &654 + items: &657 type: object properties: number: *100 @@ -91014,8 +91335,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *652 - resolution: *653 + state: *655 + resolution: *656 resolved_at: type: string format: date-time @@ -91233,15 +91554,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: Response content: application/json: - schema: *654 + schema: *657 examples: default: value: @@ -91293,9 +91614,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: true content: @@ -91303,8 +91624,8 @@ paths: schema: type: object properties: - state: *652 - resolution: *653 + state: *655 + resolution: *656 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -91322,7 +91643,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *657 examples: default: value: @@ -91397,9 +91718,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 - *19 - *17 responses: @@ -91410,7 +91731,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &814 + items: &817 type: object properties: type: @@ -91769,8 +92090,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -91778,14 +92099,14 @@ paths: schema: type: object properties: - reason: &656 + reason: &659 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *655 + placeholder_id: *658 required: - reason - placeholder_id @@ -91802,7 +92123,7 @@ paths: schema: type: object properties: - reason: *656 + reason: *659 expire_at: type: string format: date-time @@ -91845,8 +92166,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: - - *372 - - *373 + - *375 + - *376 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91861,7 +92182,7 @@ paths: properties: incremental_scans: type: array - items: &657 + items: &660 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91887,15 +92208,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *657 + items: *660 backfill_scans: type: array - items: *657 + items: *660 custom_pattern_backfill_scans: type: array items: allOf: - - *657 + - *660 - type: object properties: pattern_name: @@ -91965,8 +92286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *372 - - *373 + - *375 + - *376 - *86 - name: sort description: The property to sort the results by. @@ -92010,9 +92331,9 @@ paths: application/json: schema: type: array - items: *658 + items: *661 examples: - default: *659 + default: *662 '400': *14 '404': *6 x-github: @@ -92035,8 +92356,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -92109,7 +92430,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 required: - login - type @@ -92196,9 +92517,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: &661 + default: &664 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92431,8 +92752,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -92536,7 +92857,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: default: value: @@ -92683,17 +93004,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '200': description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: *661 + default: *664 '403': *29 '404': *6 x-github: @@ -92717,9 +93038,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 requestBody: required: true content: @@ -92792,7 +93113,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 required: - login - type @@ -92878,10 +93199,10 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: *661 - add_credit: *661 + default: *664 + add_credit: *664 '403': *29 '404': *6 '422': @@ -92919,9 +93240,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '202': *95 '400': *14 @@ -92948,17 +93269,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '202': description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 '400': *14 '422': *15 '403': *29 @@ -92984,8 +93305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93084,8 +93405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93094,7 +93415,7 @@ paths: application/json: schema: type: array - items: &662 + items: &665 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93127,8 +93448,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93204,8 +93525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93301,8 +93622,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93456,8 +93777,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93467,7 +93788,7 @@ paths: application/json: schema: type: array - items: *662 + items: *665 examples: default: value: @@ -93500,8 +93821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *372 - - *373 + - *375 + - *376 - name: sha in: path required: true @@ -93555,7 +93876,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: default: value: @@ -93609,8 +93930,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93622,7 +93943,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -93642,14 +93963,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &664 + schema: &667 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93717,8 +94038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -93744,7 +94065,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *667 examples: default: value: @@ -93771,8 +94092,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -93792,8 +94113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93872,8 +94193,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93881,7 +94202,7 @@ paths: application/json: schema: type: array - items: &665 + items: &668 title: Tag protection description: Tag protection type: object @@ -93933,8 +94254,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -93957,7 +94278,7 @@ paths: description: Response content: application/json: - schema: *665 + schema: *668 examples: default: value: @@ -93988,8 +94309,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: - - *372 - - *373 + - *375 + - *376 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94026,8 +94347,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *372 - - *373 + - *375 + - *376 - name: ref in: path required: true @@ -94063,8 +94384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -94076,7 +94397,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 headers: Link: *39 '404': *6 @@ -94096,8 +94417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 responses: @@ -94105,7 +94426,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &669 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94117,7 +94438,7 @@ paths: required: - names examples: - default: &667 + default: &670 value: names: - octocat @@ -94140,8 +94461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -94172,9 +94493,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *669 examples: - default: *667 + default: *670 '404': *6 '422': *7 x-github: @@ -94195,9 +94516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *372 - - *373 - - &668 + - *375 + - *376 + - &671 name: per description: The time frame to display results for. in: query @@ -94226,7 +94547,7 @@ paths: example: 128 clones: type: array - items: &669 + items: &672 title: Traffic type: object properties: @@ -94313,8 +94634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -94404,8 +94725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -94465,9 +94786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *372 - - *373 - - *668 + - *375 + - *376 + - *671 responses: '200': description: Response @@ -94486,7 +94807,7 @@ paths: example: 3782 views: type: array - items: *669 + items: *672 required: - uniques - count @@ -94563,8 +94884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -94838,8 +95159,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94862,8 +95183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -94885,8 +95206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -94912,8 +95233,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *372 - - *373 + - *375 + - *376 - name: ref in: path required: true @@ -95005,9 +95326,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95158,7 +95479,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &677 + - &680 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -95167,7 +95488,7 @@ paths: schema: type: string example: members - - &682 + - &685 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -95178,7 +95499,7 @@ paths: default: 1 format: int32 example: 1 - - &683 + - &686 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -95220,7 +95541,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &671 + items: &674 allOf: - type: object required: @@ -95295,7 +95616,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: &684 + meta: &687 type: object description: The metadata associated with the creation/updates to the user. @@ -95355,31 +95676,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &672 + '400': &675 description: Bad request content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '401': &673 + schema: *673 + '401': &676 description: Authorization failure - '403': &674 + '403': &677 description: Permission denied - '429': &675 + '429': &678 description: Too many requests content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '500': &676 + schema: *673 + '500': &679 description: Internal server error content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 + schema: *673 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95403,7 +95724,7 @@ paths: required: true content: application/json: - schema: &680 + schema: &683 type: object required: - schemas @@ -95459,9 +95780,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *671 + schema: *674 examples: - group: &678 + group: &681 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -95480,13 +95801,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': *672 - '401': *673 - '403': *674 - '409': &681 + '400': *675 + '401': *676 + '403': *677 + '409': &684 description: Duplicate record detected - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95503,7 +95824,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: - - &679 + - &682 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -95511,22 +95832,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *677 + - *680 - *40 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *671 + schema: *674 examples: - default: *678 - '400': *672 - '401': *673 - '403': *674 + default: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95545,13 +95866,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: - - *679 + - *682 - *40 requestBody: required: true content: application/json: - schema: *680 + schema: *683 examples: group: summary: Group @@ -95577,17 +95898,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *671 + schema: *674 examples: - group: *678 - groupWithMembers: *678 - '400': *672 - '401': *673 - '403': *674 + group: *681 + groupWithMembers: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95611,13 +95932,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: - - *679 + - *682 - *40 requestBody: required: true content: application/json: - schema: &691 + schema: &694 type: object required: - Operations @@ -95677,17 +95998,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *671 + schema: *674 examples: - updateGroup: *678 - addMembers: *678 - '400': *672 - '401': *673 - '403': *674 + updateGroup: *681 + addMembers: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95703,17 +96024,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: - - *679 + - *682 - *40 responses: '204': description: Group was deleted, no content - '400': *672 - '401': *673 - '403': *674 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95747,8 +96068,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *682 - - *683 + - *685 + - *686 - *40 responses: '200': @@ -95781,7 +96102,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &686 + items: &689 allOf: - type: object required: @@ -95860,7 +96181,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &685 + roles: &688 type: array description: The roles assigned to the user. items: @@ -95916,7 +96237,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *684 + meta: *687 startIndex: type: integer description: A starting index for the returned page @@ -95953,11 +96274,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *672 - '401': *673 - '403': *674 - '429': *675 - '500': *676 + '400': *675 + '401': *676 + '403': *677 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95981,7 +96302,7 @@ paths: required: true content: application/json: - schema: &689 + schema: &692 type: object required: - schemas @@ -96063,9 +96384,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *685 + roles: *688 examples: - user: &690 + user: &693 summary: User value: schemas: @@ -96112,9 +96433,9 @@ paths: description: User has been created content: application/scim+json: - schema: *686 + schema: *689 examples: - user: &687 + user: &690 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96140,13 +96461,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: *687 - '400': *672 - '401': *673 - '403': *674 - '409': *681 - '429': *675 - '500': *676 + enterpriseOwner: *690 + '400': *675 + '401': *676 + '403': *677 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96163,7 +96484,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: - - &688 + - &691 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -96176,15 +96497,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *686 + schema: *689 examples: - default: *687 - '400': *672 - '401': *673 - '403': *674 + default: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96206,30 +96527,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: - - *688 + - *691 - *40 requestBody: required: true content: application/json: - schema: *689 + schema: *692 examples: - user: *690 + user: *693 responses: '200': description: User was updated content: application/scim+json: - schema: *686 + schema: *689 examples: - user: *687 - '400': *672 - '401': *673 - '403': *674 + user: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96264,13 +96585,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: - - *688 + - *691 - *40 requestBody: required: true content: application/json: - schema: *691 + schema: *694 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -96310,18 +96631,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *686 - examples: - userMultiValuedProperties: *687 - userSingleValuedProperties: *687 - disableUser: *687 - '400': *672 - '401': *673 - '403': *674 + schema: *689 + examples: + userMultiValuedProperties: *690 + userSingleValuedProperties: *690 + disableUser: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96341,17 +96662,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: - - *688 + - *691 - *40 responses: '204': description: User was deleted, no content - '400': *672 - '401': *673 - '403': *674 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96438,7 +96759,7 @@ paths: example: 1 Resources: type: array - items: &692 + items: &695 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -96669,22 +96990,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &693 + '404': &696 description: Resource not found content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '403': &694 + schema: *673 + '403': &697 description: Forbidden content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '400': *672 - '429': *675 + schema: *673 + '400': *675 + '429': *678 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -96710,9 +97031,9 @@ paths: description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: &695 + default: &698 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96735,17 +97056,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *693 - '403': *694 - '500': *676 + '404': *696 + '403': *697 + '500': *679 '409': description: Conflict content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '400': *672 + schema: *673 + '400': *675 requestBody: required: true content: @@ -96838,17 +97159,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 - '404': *693 - '403': *694 + default: *698 + '404': *696 + '403': *697 '304': *37 x-github: githubCloudOnly: true @@ -96872,18 +97193,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 + default: *698 '304': *37 - '404': *693 - '403': *694 + '404': *696 + '403': *697 requestBody: required: true content: @@ -96992,19 +97313,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 + default: *698 '304': *37 - '404': *693 - '403': *694 - '400': *672 + '404': *696 + '403': *697 + '400': *675 '429': description: Response content: @@ -97095,12 +97416,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *171 - - *688 + - *691 responses: '204': description: Response - '404': *693 - '403': *694 + '404': *696 + '403': *697 '304': *37 x-github: githubCloudOnly: true @@ -97233,7 +97554,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &696 + text_matches: &699 title: Search Result Text Matches type: array items: @@ -97396,7 +97717,7 @@ paths: enum: - author-date - committer-date - - &697 + - &700 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 @@ -97467,7 +97788,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true comment_count: type: integer @@ -97487,7 +97808,7 @@ paths: url: type: string format: uri - verification: *545 + verification: *548 required: - author - committer @@ -97506,7 +97827,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true parents: type: array @@ -97524,7 +97845,7 @@ paths: type: number node_id: type: string - text_matches: *696 + text_matches: *699 required: - sha - node_id @@ -97707,7 +98028,7 @@ paths: - interactions - created - updated - - *697 + - *700 - *17 - *19 - name: advanced_search @@ -97834,8 +98155,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true comments: type: integer @@ -97849,7 +98170,7 @@ paths: type: string format: date-time nullable: true - text_matches: *696 + text_matches: *699 pull_request: type: object properties: @@ -97893,6 +98214,7 @@ paths: timeline_url: type: string format: uri + type: *287 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -98076,7 +98398,7 @@ paths: enum: - created - updated - - *697 + - *700 - *17 - *19 responses: @@ -98120,7 +98442,7 @@ paths: nullable: true score: type: number - text_matches: *696 + text_matches: *699 required: - id - node_id @@ -98206,7 +98528,7 @@ paths: - forks - help-wanted-issues - updated - - *697 + - *700 - *17 - *19 responses: @@ -98445,7 +98767,7 @@ paths: - admin - pull - push - text_matches: *696 + text_matches: *699 temp_clone_token: type: string allow_merge_commit: @@ -98746,7 +99068,7 @@ paths: type: string format: uri nullable: true - text_matches: *696 + text_matches: *699 related: type: array nullable: true @@ -98939,7 +99261,7 @@ paths: - followers - repositories - joined - - *697 + - *700 - *17 - *19 responses: @@ -99043,7 +99365,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *696 + text_matches: *699 blog: type: string nullable: true @@ -99122,7 +99444,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &698 + - &701 name: team_id description: The unique identifier of the team. in: path @@ -99134,9 +99456,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -99163,7 +99485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *698 + - *701 requestBody: required: true content: @@ -99226,16 +99548,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '201': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 '422': *15 '403': *29 @@ -99263,7 +99585,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *698 + - *701 responses: '204': description: Response @@ -99294,7 +99616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *698 + - *701 - *86 - *17 - *19 @@ -99305,9 +99627,9 @@ paths: application/json: schema: type: array - items: *355 + items: *358 examples: - default: *699 + default: *702 headers: Link: *39 x-github: @@ -99336,7 +99658,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *698 + - *701 requestBody: required: true content: @@ -99370,9 +99692,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: triggersNotification: true githubCloudOnly: false @@ -99399,16 +99721,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 responses: '200': description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99433,8 +99755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 requestBody: required: false content: @@ -99457,9 +99779,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *700 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99484,8 +99806,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 responses: '204': description: Response @@ -99514,8 +99836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *698 - - *357 + - *701 + - *360 - *86 - *17 - *19 @@ -99526,9 +99848,9 @@ paths: application/json: schema: type: array - items: *358 + items: *361 examples: - default: *701 + default: *704 headers: Link: *39 x-github: @@ -99557,8 +99879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 + - *360 requestBody: required: true content: @@ -99580,9 +99902,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: triggersNotification: true githubCloudOnly: false @@ -99609,17 +99931,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99644,9 +99966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 requestBody: required: true content: @@ -99668,9 +99990,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99695,9 +100017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 responses: '204': description: Response @@ -99726,9 +100048,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: - - *698 - - *357 + - *701 - *360 + - *363 - 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. @@ -99754,9 +100076,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -99785,9 +100107,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: - - *698 - - *357 + - *701 - *360 + - *363 requestBody: required: true content: @@ -99819,9 +100141,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99847,8 +100169,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: - - *698 - - *357 + - *701 + - *360 - 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. @@ -99874,9 +100196,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -99905,8 +100227,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: - - *698 - - *357 + - *701 + - *360 requestBody: required: true content: @@ -99938,9 +100260,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99964,7 +100286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100002,7 +100324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *698 + - *701 - name: role description: Filters members returned by their role in the team. in: query @@ -100025,7 +100347,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -100053,7 +100375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100090,7 +100412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100130,7 +100452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100167,16 +100489,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: - - *698 + - *701 - *219 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-user-is-a-team-maintainer: *703 + response-if-user-is-a-team-maintainer: *706 '404': *6 x-github: githubCloudOnly: false @@ -100209,7 +100531,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: - - *698 + - *701 - *219 requestBody: required: false @@ -100235,9 +100557,9 @@ paths: description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-users-membership-with-team-is-now-pending: *704 + response-if-users-membership-with-team-is-now-pending: *707 '403': description: Forbidden if team synchronization is set up '422': @@ -100271,7 +100593,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: - - *698 + - *701 - *219 responses: '204': @@ -100300,7 +100622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100310,9 +100632,9 @@ paths: application/json: schema: type: array - items: *370 + items: *373 examples: - default: *705 + default: *708 headers: Link: *39 '404': *6 @@ -100338,16 +100660,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: - - *698 - - *371 + - *701 + - *374 responses: '200': description: Response content: application/json: - schema: *370 + schema: *373 examples: - default: *706 + default: *709 '404': description: Not Found if project is not managed by this team x-github: @@ -100371,8 +100693,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: - - *698 - - *371 + - *701 + - *374 requestBody: required: false content: @@ -100439,8 +100761,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: - - *698 - - *371 + - *701 + - *374 responses: '204': description: Response @@ -100467,7 +100789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100479,7 +100801,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '404': *6 @@ -100509,15 +100831,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *707 + schema: *710 examples: alternative-response-with-extra-repository-information: value: @@ -100668,9 +100990,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 requestBody: required: false content: @@ -100720,9 +101042,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 responses: '204': description: Response @@ -100751,15 +101073,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: - - *698 + - *701 responses: '200': description: Response content: application/json: - schema: *374 + schema: *377 examples: - default: *375 + default: *378 '403': *29 '404': *6 x-github: @@ -100786,7 +101108,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: - - *698 + - *701 requestBody: required: true content: @@ -100843,7 +101165,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *377 examples: default: value: @@ -100874,7 +101196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100886,7 +101208,7 @@ paths: type: array items: *286 examples: - response-if-child-teams-exist: *708 + response-if-child-teams-exist: *711 headers: Link: *39 '404': *6 @@ -100919,7 +101241,7 @@ paths: application/json: schema: oneOf: - - &710 + - &713 title: Private User description: Private User type: object @@ -101122,7 +101444,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *709 + - *712 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101275,7 +101597,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: default: value: @@ -101354,7 +101676,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '304': *37 '404': *6 '403': *29 @@ -101478,9 +101800,9 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 '304': *37 '500': *99 '401': *25 @@ -101619,17 +101941,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -101673,7 +101995,7 @@ paths: type: integer secrets: type: array - items: &711 + items: &714 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -101713,7 +102035,7 @@ paths: - visibility - selected_repositories_url examples: - default: *485 + default: *488 headers: Link: *39 x-github: @@ -101789,7 +102111,7 @@ paths: description: Response content: application/json: - schema: *711 + schema: *714 examples: default: value: @@ -101935,7 +102257,7 @@ paths: type: array items: *197 examples: - default: *712 + default: *715 '401': *25 '403': *29 '404': *6 @@ -102079,15 +102401,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '304': *37 '500': *99 '401': *25 @@ -102113,7 +102435,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: - - *292 + - *295 requestBody: required: false content: @@ -102143,9 +102465,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -102167,7 +102489,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: - - *292 + - *295 responses: '202': *95 '304': *37 @@ -102196,13 +102518,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: - - *292 + - *295 responses: '202': description: Response content: application/json: - schema: &713 + schema: &716 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102243,7 +102565,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &714 + default: &717 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102275,7 +102597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *292 + - *295 - name: export_id in: path required: true @@ -102288,9 +102610,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *716 examples: - default: *714 + default: *717 '404': *6 x-github: githubCloudOnly: false @@ -102311,7 +102633,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *292 + - *295 responses: '200': description: Response @@ -102327,9 +102649,9 @@ paths: type: integer machines: type: array - items: *715 + items: *718 examples: - default: *716 + default: *719 '304': *37 '500': *99 '401': *25 @@ -102358,7 +102680,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: - - *292 + - *295 requestBody: required: true content: @@ -102408,13 +102730,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *385 + repository: *388 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *486 + required: *487 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -103188,15 +103510,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '304': *37 '500': *99 '400': *14 @@ -103228,15 +103550,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '500': *99 '401': *25 '403': *29 @@ -103266,9 +103588,9 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: &729 + default: &732 value: - id: 197 name: hello_docker @@ -103369,7 +103691,7 @@ paths: application/json: schema: type: array - items: &717 + items: &720 title: Email description: Email type: object @@ -103434,9 +103756,9 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: - default: &731 + default: &734 value: - email: octocat@github.com verified: true @@ -103511,7 +103833,7 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: default: value: @@ -103621,7 +103943,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '304': *37 @@ -103654,7 +103976,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '304': *37 @@ -103767,7 +104089,7 @@ paths: application/json: schema: type: array - items: &718 + items: &721 title: GPG Key description: A unique encryption key type: object @@ -103898,7 +104220,7 @@ paths: - subkeys - revoked examples: - default: &742 + default: &745 value: - id: 3 name: Octocat's GPG Key @@ -103983,9 +104305,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: - default: &719 + default: &722 value: id: 3 name: Octocat's GPG Key @@ -104042,7 +104364,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: - - &720 + - &723 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104054,9 +104376,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: - default: *719 + default: *722 '404': *6 '304': *37 '403': *29 @@ -104079,7 +104401,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: - - *720 + - *723 responses: '204': description: Response @@ -104270,7 +104592,7 @@ paths: type: array items: *63 examples: - default: *721 + default: *724 headers: Link: *39 '404': *6 @@ -104384,7 +104706,7 @@ paths: required: true content: application/json: - schema: *556 + schema: *559 examples: default: value: @@ -104476,7 +104798,7 @@ paths: - closed - all default: open - - *287 + - *290 - name: sort description: What to sort results by. in: query @@ -104501,7 +104823,7 @@ paths: type: array items: *154 examples: - default: *288 + default: *291 headers: Link: *39 '404': *6 @@ -104534,7 +104856,7 @@ paths: application/json: schema: type: array - items: &722 + items: &725 title: Key description: Key type: object @@ -104631,9 +104953,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *725 examples: - default: &723 + default: &726 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -104666,15 +104988,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: - - *585 + - *588 responses: '200': description: Response content: application/json: - schema: *722 + schema: *725 examples: - default: *723 + default: *726 '404': *6 '304': *37 '403': *29 @@ -104697,7 +105019,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: - - *585 + - *588 responses: '204': description: Response @@ -104730,7 +105052,7 @@ paths: application/json: schema: type: array - items: &724 + items: &727 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104798,7 +105120,7 @@ paths: - account - plan examples: - default: &725 + default: &728 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104860,9 +105182,9 @@ paths: application/json: schema: type: array - items: *724 + items: *727 examples: - default: *725 + default: *728 headers: Link: *39 '304': *37 @@ -104902,7 +105224,7 @@ paths: application/json: schema: type: array - items: *293 + items: *296 examples: default: value: @@ -105010,7 +105332,7 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: default: value: @@ -105093,7 +105415,7 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: default: value: @@ -105161,7 +105483,7 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: default: value: @@ -105414,7 +105736,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -105594,7 +105916,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *296 + - *299 - name: exclude in: query required: false @@ -105607,7 +105929,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -105801,7 +106123,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *296 + - *299 responses: '302': description: Response @@ -105827,7 +106149,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *296 + - *299 responses: '204': description: Response @@ -105856,8 +106178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *296 - - *726 + - *299 + - *729 responses: '204': description: Response @@ -105881,7 +106203,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *296 + - *299 - *17 - *19 responses: @@ -105893,7 +106215,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '404': *6 @@ -105930,7 +106252,7 @@ paths: type: array items: *58 examples: - default: *727 + default: *730 headers: Link: *39 '304': *37 @@ -105972,7 +106294,7 @@ paths: - docker - nuget - container - - *728 + - *731 - *19 - *17 responses: @@ -105982,10 +106304,10 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 - '400': *730 + default: *732 + '400': *733 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106005,16 +106327,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: - - *304 - - *305 + - *307 + - *308 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: - default: &743 + default: &746 value: id: 40201 name: octo-name @@ -106127,8 +106449,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: - - *304 - - *305 + - *307 + - *308 responses: '204': description: Response @@ -106158,8 +106480,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: - - *304 - - *305 + - *307 + - *308 - name: token description: package token schema: @@ -106191,8 +106513,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: - - *304 - - *305 + - *307 + - *308 - *19 - *17 - name: state @@ -106212,7 +106534,7 @@ paths: application/json: schema: type: array - items: *306 + items: *309 examples: default: value: @@ -106261,15 +106583,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '200': description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -106305,9 +106627,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '204': description: Response @@ -106337,9 +106659,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '204': description: Response @@ -106395,7 +106717,7 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: default: value: @@ -106467,9 +106789,9 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: - default: *731 + default: *734 headers: Link: *39 '304': *37 @@ -106582,7 +106904,7 @@ paths: type: array items: *63 examples: - default: &738 + default: &741 summary: Default response value: - id: 1296269 @@ -106884,9 +107206,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106924,9 +107246,9 @@ paths: application/json: schema: type: array - items: *558 + items: *561 examples: - default: *732 + default: *735 headers: Link: *39 '304': *37 @@ -107005,7 +107327,7 @@ paths: application/json: schema: type: array - items: &733 + items: &736 title: Social account description: Social media account type: object @@ -107020,7 +107342,7 @@ paths: - provider - url examples: - default: &734 + default: &737 value: - provider: twitter url: https://twitter.com/github @@ -107082,9 +107404,9 @@ paths: application/json: schema: type: array - items: *733 + items: *736 examples: - default: *734 + default: *737 '422': *15 '304': *37 '404': *6 @@ -107171,7 +107493,7 @@ paths: application/json: schema: type: array - items: &735 + items: &738 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107191,7 +107513,7 @@ paths: - title - created_at examples: - default: &744 + default: &747 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107257,9 +107579,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: &736 + default: &739 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107290,7 +107612,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: - - &737 + - &740 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107302,9 +107624,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *736 + default: *739 '404': *6 '304': *37 '403': *29 @@ -107327,7 +107649,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: - - *737 + - *740 responses: '204': description: Response @@ -107356,7 +107678,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: - - &745 + - &748 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 @@ -107381,11 +107703,11 @@ paths: type: array items: *63 examples: - default-response: *738 + default-response: *741 application/vnd.github.v3.star+json: schema: type: array - items: &746 + items: &749 title: Starred Repository description: Starred Repository type: object @@ -107541,8 +107863,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response if this repository is starred by you @@ -107570,8 +107892,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -107595,8 +107917,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -107631,7 +107953,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '304': *37 @@ -107668,7 +107990,7 @@ paths: application/json: schema: type: array - items: *353 + items: *356 examples: default: value: @@ -107754,10 +108076,10 @@ paths: application/json: schema: oneOf: - - *710 - - *709 + - *713 + - *712 examples: - default-response: &740 + default-response: &743 summary: Default response value: login: octocat @@ -107792,7 +108114,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &741 + response-with-git-hub-plan-information: &744 summary: Response with GitHub plan information value: login: octocat @@ -107852,7 +108174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *739 + - *742 - *17 responses: '200': @@ -107863,7 +108185,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: example: ; rel="next" @@ -107901,11 +108223,11 @@ paths: application/json: schema: oneOf: - - *710 - - *709 + - *713 + - *712 examples: - default-response: *740 - response-with-git-hub-plan-information: *741 + default-response: *743 + response-with-git-hub-plan-information: *744 '404': *6 x-github: githubCloudOnly: false @@ -107981,7 +108303,7 @@ paths: bundle_url: type: string examples: - default: *425 + default: *428 '201': description: Response content: @@ -108020,9 +108342,9 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 + default: *732 '403': *29 '401': *25 x-github: @@ -108305,7 +108627,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -108336,7 +108658,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -108426,9 +108748,9 @@ paths: application/json: schema: type: array - items: *718 + items: *721 examples: - default: *742 + default: *745 headers: Link: *39 x-github: @@ -108532,7 +108854,7 @@ paths: application/json: schema: *22 examples: - default: *555 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108610,7 +108932,7 @@ paths: type: array items: *58 examples: - default: *727 + default: *730 headers: Link: *39 x-github: @@ -108649,7 +108971,7 @@ paths: - docker - nuget - container - - *728 + - *731 - *219 - *19 - *17 @@ -108660,12 +108982,12 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 + default: *732 '403': *29 '401': *25 - '400': *730 + '400': *733 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108685,17 +109007,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: - default: *743 + default: *746 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108716,8 +109038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 responses: '204': @@ -108750,8 +109072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 - name: token description: package token @@ -108784,8 +109106,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: - - *304 - - *305 + - *307 + - *308 - *219 responses: '200': @@ -108794,7 +109116,7 @@ paths: application/json: schema: type: array - items: *306 + items: *309 examples: default: value: @@ -108852,16 +109174,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: - - *304 - - *305 - *307 + - *308 + - *310 - *219 responses: '200': description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -108896,10 +109218,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *304 - - *305 - - *219 - *307 + - *308 + - *219 + - *310 responses: '204': description: Response @@ -108931,10 +109253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *304 - - *305 - - *219 - *307 + - *308 + - *219 + - *310 responses: '204': description: Response @@ -108981,7 +109303,7 @@ paths: application/json: schema: type: array - items: *318 + items: *321 examples: default: value: @@ -109264,7 +109586,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -109294,9 +109616,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *342 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109324,9 +109646,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109354,9 +109676,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109384,9 +109706,9 @@ paths: application/json: schema: type: array - items: *733 + items: *736 examples: - default: *734 + default: *737 headers: Link: *39 x-github: @@ -109416,9 +109738,9 @@ paths: application/json: schema: type: array - items: *735 + items: *738 examples: - default: *744 + default: *747 headers: Link: *39 x-github: @@ -109443,7 +109765,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *219 - - *745 + - *748 - *86 - *17 - *19 @@ -109455,11 +109777,11 @@ paths: schema: anyOf: - type: array - items: *746 + items: *749 - type: array items: *63 examples: - default-response: *738 + default-response: *741 headers: Link: *39 x-github: @@ -109490,7 +109812,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -109618,7 +109940,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &747 + enterprise: &750 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109676,7 +109998,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &748 + installation: &751 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109695,7 +110017,7 @@ x-webhooks: required: - id - node_id - organization: &749 + organization: &752 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109755,13 +110077,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &750 + repository: &753 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &787 + properties: &790 id: description: Unique identifier of the repository example: 42 @@ -110444,7 +110766,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &788 + required: &791 - archive_url - assignees_url - blobs_url @@ -110595,10 +110917,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -110674,11 +110996,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: &751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: &754 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) @@ -110901,11 +111223,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: *751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: *754 sender: *4 required: - action @@ -111088,11 +111410,11 @@ x-webhooks: - everyone required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: *751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: *754 sender: *4 required: - action @@ -111165,7 +111487,7 @@ x-webhooks: required: true content: application/json: - schema: &754 + schema: &757 title: Exemption request cancellation event type: object properties: @@ -111173,11 +111495,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: &752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: &755 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -111402,7 +111724,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &753 + items: &756 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -111512,7 +111834,7 @@ x-webhooks: required: true content: application/json: - schema: &755 + schema: &758 title: Exemption request completed event type: object properties: @@ -111520,11 +111842,11 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 sender: *4 required: - action @@ -111596,7 +111918,7 @@ x-webhooks: required: true content: application/json: - schema: &756 + schema: &759 title: Exemption request created event type: object properties: @@ -111604,11 +111926,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 sender: *4 required: - action @@ -111680,7 +112002,7 @@ x-webhooks: required: true content: application/json: - schema: &757 + schema: &760 title: Exemption response dismissed event type: object properties: @@ -111688,12 +112010,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 - exemption_response: *753 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 + exemption_response: *756 sender: *4 required: - action @@ -111767,7 +112089,7 @@ x-webhooks: required: true content: application/json: - schema: &758 + schema: &761 title: Exemption response submitted event type: object properties: @@ -111775,12 +112097,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 - exemption_response: *753 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 + exemption_response: *756 sender: *4 required: - action @@ -111853,7 +112175,7 @@ x-webhooks: required: true content: application/json: - schema: *754 + schema: *757 responses: '200': description: Return a 200 status to indicate that the data was received @@ -111920,7 +112242,7 @@ x-webhooks: required: true content: application/json: - schema: *755 + schema: *758 responses: '200': description: Return a 200 status to indicate that the data was received @@ -111987,7 +112309,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112054,7 +112376,7 @@ x-webhooks: required: true content: application/json: - schema: *757 + schema: *760 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112122,7 +112444,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112200,7 +112522,7 @@ x-webhooks: type: string enum: - completed - check_run: &760 + check_run: &763 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112263,7 +112585,7 @@ x-webhooks: type: string pull_requests: type: array - items: *444 + items: *447 repository: *197 status: example: completed @@ -112301,7 +112623,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *759 + deployment: *762 details_url: example: https://example.com type: string @@ -112351,7 +112673,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *444 + items: *447 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -112386,9 +112708,9 @@ x-webhooks: - output - app - pull_requests - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -112781,10 +113103,10 @@ x-webhooks: type: string enum: - created - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -113180,10 +113502,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 requested_action: description: The action requested by the user. type: object @@ -113588,10 +113910,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -114568,10 +114890,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -115241,10 +115563,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -115908,10 +116230,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -116074,7 +116396,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116219,20 +116541,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &761 + commit_oid: &764 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *747 - installation: *748 - organization: *749 - ref: &762 + enterprise: *750 + installation: *751 + organization: *752 + ref: &765 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -116394,7 +116716,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116624,12 +116946,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -116724,7 +117046,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116892,12 +117214,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -117060,7 +117382,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117226,12 +117548,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -117328,7 +117650,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117496,16 +117818,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *750 + repository: *753 sender: *4 required: - action @@ -117599,7 +117921,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117739,12 +118061,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -118001,10 +118323,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -118084,18 +118406,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *749 - pusher_type: &763 + organization: *752 + pusher_type: &766 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &764 + ref: &767 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -118105,7 +118427,7 @@ x-webhooks: enum: - tag - branch - repository: *750 + repository: *753 sender: *4 required: - ref @@ -118188,9 +118510,9 @@ x-webhooks: enum: - created definition: *114 - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118275,9 +118597,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118355,9 +118677,9 @@ x-webhooks: enum: - updated definition: *114 - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118434,19 +118756,19 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - repository: *750 - organization: *749 + enterprise: *750 + installation: *751 + repository: *753 + organization: *752 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *320 + items: *323 old_property_values: type: array description: The old custom property values for the repository. - items: *320 + items: *323 required: - action - repository @@ -118522,18 +118844,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - pusher_type: *763 - ref: *764 + enterprise: *750 + installation: *751 + organization: *752 + pusher_type: *766 + ref: *767 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *750 + repository: *753 sender: *4 required: - ref @@ -118617,11 +118939,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118705,11 +119027,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118793,11 +119115,11 @@ x-webhooks: type: string enum: - created - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118879,11 +119201,11 @@ x-webhooks: type: string enum: - dismissed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118965,11 +119287,11 @@ x-webhooks: type: string enum: - fixed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119052,11 +119374,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119138,11 +119460,11 @@ x-webhooks: type: string enum: - reopened - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119219,9 +119541,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - key: &765 + enterprise: *750 + installation: *751 + key: &768 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119257,8 +119579,8 @@ x-webhooks: - verified - created_at - read_only - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -119335,11 +119657,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - key: *765 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + key: *768 + organization: *752 + repository: *753 sender: *4 required: - action @@ -119900,12 +120222,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: &769 + workflow: &772 title: Workflow type: object nullable: true @@ -120631,13 +120953,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *520 + deployment: *523 pull_requests: type: array - items: *605 - repository: *750 - organization: *749 - installation: *748 + items: *608 + repository: *753 + organization: *752 + installation: *751 sender: *4 responses: '200': @@ -120708,7 +121030,7 @@ x-webhooks: type: string enum: - approved - approver: &766 + approver: &769 type: object properties: avatar_url: @@ -120751,11 +121073,11 @@ x-webhooks: type: string comment: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - reviewers: &767 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + reviewers: &770 type: array items: type: object @@ -120834,7 +121156,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &768 + workflow_job_run: &771 type: object properties: conclusion: @@ -121565,18 +121887,18 @@ x-webhooks: type: string enum: - rejected - approver: *766 + approver: *769 comment: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - reviewers: *767 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + reviewers: *770 sender: *4 since: type: string - workflow_job_run: *768 + workflow_job_run: *771 workflow_job_runs: type: array items: @@ -122280,13 +122602,13 @@ x-webhooks: type: string enum: - requested - enterprise: *747 + enterprise: *750 environment: type: string - installation: *748 - organization: *749 - repository: *750 - requestor: &774 + installation: *751 + organization: *752 + repository: *753 + requestor: &777 title: User type: object nullable: true @@ -124185,12 +124507,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Deployment Workflow Run type: object @@ -124870,7 +125192,7 @@ x-webhooks: type: string enum: - answered - answer: &772 + answer: &775 type: object properties: author_association: @@ -125027,7 +125349,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &770 + discussion: &773 title: Discussion description: A Discussion in a repository. type: object @@ -125313,7 +125635,7 @@ x-webhooks: - id labels: type: array - items: *567 + items: *570 required: - repository_url - category @@ -125335,10 +125657,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125465,11 +125787,11 @@ x-webhooks: - from required: - category - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125552,11 +125874,11 @@ x-webhooks: type: string enum: - closed - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125638,7 +125960,7 @@ x-webhooks: type: string enum: - created - comment: &771 + comment: &774 type: object properties: author_association: @@ -125795,11 +126117,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125882,12 +126204,12 @@ x-webhooks: type: string enum: - deleted - comment: *771 - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + comment: *774 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125982,12 +126304,12 @@ x-webhooks: - from required: - body - comment: *771 - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + comment: *774 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126071,11 +126393,11 @@ x-webhooks: type: string enum: - created - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126157,11 +126479,11 @@ x-webhooks: type: string enum: - deleted - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126261,11 +126583,11 @@ x-webhooks: type: string required: - from - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126347,10 +126669,10 @@ x-webhooks: type: string enum: - labeled - discussion: *770 - enterprise: *747 - installation: *748 - label: &773 + discussion: *773 + enterprise: *750 + installation: *751 + label: &776 title: Label type: object properties: @@ -126382,8 +126704,8 @@ x-webhooks: - color - default - description - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126466,11 +126788,11 @@ x-webhooks: type: string enum: - locked - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126552,11 +126874,11 @@ x-webhooks: type: string enum: - pinned - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126638,11 +126960,11 @@ x-webhooks: type: string enum: - reopened - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126727,16 +127049,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *770 - new_repository: *750 + new_discussion: *773 + new_repository: *753 required: - new_discussion - new_repository - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126819,10 +127141,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *770 - old_answer: *772 - organization: *749 - repository: *750 + discussion: *773 + old_answer: *775 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126904,12 +127226,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *770 - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126992,11 +127314,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -127078,11 +127400,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -127154,7 +127476,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127220,7 +127542,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127286,7 +127608,7 @@ x-webhooks: required: true content: application/json: - schema: *754 + schema: *757 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127352,7 +127674,7 @@ x-webhooks: required: true content: application/json: - schema: *755 + schema: *758 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127418,7 +127740,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127484,7 +127806,7 @@ x-webhooks: required: true content: application/json: - schema: *757 + schema: *760 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127550,7 +127872,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127617,7 +127939,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *747 + enterprise: *750 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -128277,9 +128599,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - forkee @@ -128425,9 +128747,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pages: description: The pages that were updated. type: array @@ -128464,7 +128786,7 @@ x-webhooks: - action - sha - html_url - repository: *750 + repository: *753 sender: *4 required: - pages @@ -128540,10 +128862,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: &775 + organization: *752 + repositories: &778 description: An array of repository objects that the installation can access. type: array @@ -128569,8 +128891,8 @@ x-webhooks: - name - full_name - private - repository: *750 - requester: *774 + repository: *753 + requester: *777 sender: *4 required: - action @@ -128645,11 +128967,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -128725,11 +129047,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -128805,10 +129127,10 @@ x-webhooks: type: string enum: - added - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories_added: &776 + organization: *752 + repositories_added: &779 description: An array of repository objects, which were added to the installation. type: array @@ -128854,15 +129176,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *750 - repository_selection: &777 + repository: *753 + repository_selection: &780 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *774 + requester: *777 sender: *4 required: - action @@ -128941,10 +129263,10 @@ x-webhooks: type: string enum: - removed - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories_added: *776 + organization: *752 + repositories_added: *779 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128971,9 +129293,9 @@ x-webhooks: - name - full_name - private - repository: *750 - repository_selection: *777 - requester: *774 + repository: *753 + repository_selection: *780 + requester: *777 sender: *4 required: - action @@ -129052,11 +129374,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -129235,10 +129557,10 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 target_type: type: string @@ -129317,11 +129639,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -129573,8 +129895,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -130397,6 +130719,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -130729,8 +131052,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -130810,7 +131133,7 @@ x-webhooks: type: string enum: - deleted - comment: &778 + comment: &781 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -130975,8 +131298,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -131795,6 +132118,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -132129,8 +132453,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -132210,7 +132534,7 @@ x-webhooks: type: string enum: - edited - changes: &806 + changes: &809 description: The changes to the comment. type: object properties: @@ -132222,9 +132546,9 @@ x-webhooks: type: string required: - from - comment: *778 - enterprise: *747 - installation: *748 + comment: *781 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133046,6 +133370,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -133378,8 +133703,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -133461,10 +133786,10 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *747 - installation: *748 - issue: &781 + assignee: *777 + enterprise: *750 + installation: *751 + issue: &784 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -134282,6 +134607,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -134382,8 +134708,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -134463,8 +134789,8 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -135287,6 +135613,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -135522,8 +135849,8 @@ x-webhooks: required: - state - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -135602,8 +135929,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136415,6 +136742,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -136514,8 +136842,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -136594,8 +136922,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137431,6 +137759,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -137509,7 +137838,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &779 + milestone: &782 title: Milestone description: A collection of related issues and pull requests. type: object @@ -137647,8 +137976,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -137747,8 +138076,8 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -138563,6 +138892,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -138666,9 +138996,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *749 - repository: *750 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -138748,8 +139078,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139563,6 +139893,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -139666,9 +139997,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *749 - repository: *750 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -139748,8 +140079,8 @@ x-webhooks: type: string enum: - locked - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140587,6 +140918,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -140667,8 +140999,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -140747,8 +141079,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141583,6 +141915,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -141660,9 +141993,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *779 - organization: *749 - repository: *750 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -143123,8 +143456,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143942,6 +144275,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -144041,8 +144375,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -144122,9 +144456,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *747 - installation: *748 - issue: &780 + enterprise: *750 + installation: *751 + issue: &783 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -144936,6 +145270,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -145035,8 +145370,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -145115,8 +145450,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146033,8 +146368,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + type: *287 + organization: *752 + repository: *753 sender: *4 required: - action @@ -146929,6 +147265,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -147496,11 +147833,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *747 - installation: *748 - issue: *780 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *783 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147581,7 +147918,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &809 + assignee: &812 title: User type: object nullable: true @@ -147651,11 +147988,11 @@ x-webhooks: required: - login - id - enterprise: *747 - installation: *748 - issue: *781 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *784 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147734,12 +148071,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *747 - installation: *748 - issue: *781 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *784 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147819,8 +148156,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148659,6 +148996,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -148736,8 +149074,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148817,11 +149155,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *747 - installation: *748 - issue: *780 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *783 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148900,11 +149238,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148982,11 +149320,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -149096,11 +149434,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -149182,9 +149520,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: &782 + enterprise: *750 + installation: *751 + marketplace_purchase: &785 title: Marketplace Purchase type: object required: @@ -149267,8 +149605,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *749 - previous_marketplace_purchase: &783 + organization: *752 + previous_marketplace_purchase: &786 title: Marketplace Purchase type: object properties: @@ -149348,7 +149686,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149428,10 +149766,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149514,7 +149852,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149596,10 +149934,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149681,7 +150019,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149762,8 +150100,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 marketplace_purchase: title: Marketplace Purchase type: object @@ -149845,9 +150183,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *749 - previous_marketplace_purchase: *783 - repository: *750 + organization: *752 + previous_marketplace_purchase: *786 + repository: *753 sender: *4 required: - action @@ -149927,12 +150265,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 - previous_marketplace_purchase: *783 - repository: *750 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 + previous_marketplace_purchase: *786 + repository: *753 sender: *4 required: - action @@ -150034,11 +150372,11 @@ x-webhooks: type: string required: - to - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150138,11 +150476,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150221,11 +150559,11 @@ x-webhooks: type: string enum: - removed - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150303,11 +150641,11 @@ x-webhooks: type: string enum: - added - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150383,7 +150721,7 @@ x-webhooks: required: - login - id - team: &784 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -150573,11 +150911,11 @@ x-webhooks: type: string enum: - removed - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150654,7 +150992,7 @@ x-webhooks: required: - login - id - team: *784 + team: *787 required: - action - scope @@ -150736,8 +151074,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *748 - merge_group: &786 + installation: *751 + merge_group: &789 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150756,15 +151094,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *785 + head_commit: *788 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150850,10 +151188,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *748 - merge_group: *786 - organization: *749 - repository: *750 + installation: *751 + merge_group: *789 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150926,7 +151264,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 + enterprise: *750 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151034,16 +151372,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *748 - organization: *749 + installation: *751 + organization: *752 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -151124,11 +151462,11 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151207,9 +151545,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - milestone: &789 + enterprise: *750 + installation: *751 + milestone: &792 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151346,8 +151684,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151426,11 +151764,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151540,11 +151878,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151624,11 +151962,11 @@ x-webhooks: type: string enum: - opened - enterprise: *747 - installation: *748 - milestone: *789 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *792 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151707,11 +152045,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *774 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + blocked_user: *777 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151790,11 +152128,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *774 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + blocked_user: *777 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151873,9 +152211,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - membership: &790 + enterprise: *750 + installation: *751 + membership: &793 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151967,8 +152305,8 @@ x-webhooks: - role - organization_url - user - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152046,11 +152384,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152129,8 +152467,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -152246,10 +152584,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 - user: *774 + user: *777 required: - action - invitation @@ -152327,11 +152665,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152418,11 +152756,11 @@ x-webhooks: properties: from: type: string - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152498,9 +152836,9 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 package: description: Information about the package. type: object @@ -152999,7 +153337,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &791 + items: &794 title: Ruby Gems metadata type: object properties: @@ -153094,7 +153432,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -153170,9 +153508,9 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 package: description: Information about the package. type: object @@ -153525,7 +153863,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *794 source_url: type: string format: uri @@ -153595,7 +153933,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -153772,12 +154110,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *747 + enterprise: *750 id: type: integer - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - id @@ -153857,7 +154195,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &792 + personal_access_token_request: &795 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154003,10 +154341,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *747 - organization: *749 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154085,11 +154423,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *792 - enterprise: *747 - organization: *749 + personal_access_token_request: *795 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154167,11 +154505,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *792 - enterprise: *747 - organization: *749 + personal_access_token_request: *795 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154248,11 +154586,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *792 - organization: *749 - enterprise: *747 + personal_access_token_request: *795 + organization: *752 + enterprise: *750 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154356,7 +154694,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *793 + last_response: *796 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -154388,8 +154726,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 zen: description: Random string of GitHub zen. @@ -154634,10 +154972,10 @@ x-webhooks: - from required: - note - enterprise: *747 - installation: *748 - organization: *749 - project_card: &794 + enterprise: *750 + installation: *751 + organization: *752 + project_card: &797 title: Project Card type: object properties: @@ -154756,7 +155094,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -154837,11 +155175,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project_card: *794 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_card: *797 + repository: *753 sender: *4 required: - action @@ -154921,9 +155259,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 project_card: title: Project Card type: object @@ -155051,8 +155389,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -155146,11 +155484,11 @@ x-webhooks: - from required: - note - enterprise: *747 - installation: *748 - organization: *749 - project_card: *794 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_card: *797 + repository: *753 sender: *4 required: - action @@ -155244,9 +155582,9 @@ x-webhooks: - from required: - column_id - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 project_card: allOf: - title: Project Card @@ -155436,7 +155774,7 @@ x-webhooks: type: string required: - after_id - repository: *750 + repository: *753 sender: *4 required: - action @@ -155516,10 +155854,10 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - organization: *749 - project: &796 + enterprise: *750 + installation: *751 + organization: *752 + project: &799 title: Project type: object properties: @@ -155643,7 +155981,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -155723,10 +156061,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project_column: &795 + enterprise: *750 + installation: *751 + organization: *752 + project_column: &798 title: Project Column type: object properties: @@ -155765,7 +156103,7 @@ x-webhooks: - name - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -155844,18 +156182,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -155945,11 +156283,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 + repository: *753 sender: *4 required: - action @@ -156029,11 +156367,11 @@ x-webhooks: type: string enum: - moved - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 + repository: *753 sender: *4 required: - action @@ -156113,11 +156451,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156197,18 +156535,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - project: *796 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -156310,11 +156648,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156393,11 +156731,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156478,9 +156816,9 @@ x-webhooks: type: string enum: - closed - installation: *748 - organization: *749 - projects_v2: &797 + installation: *751 + organization: *752 + projects_v2: &800 title: Projects v2 Project description: A projects v2 project type: object @@ -156623,9 +156961,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156706,9 +157044,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156825,9 +157163,9 @@ x-webhooks: type: string to: type: string - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156910,7 +157248,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &804 type: object properties: archived_at: @@ -156924,9 +157262,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *748 - organization: *749 - projects_v2_item: &798 + installation: *751 + organization: *752 + projects_v2_item: &801 title: Projects v2 Item description: An item belonging to a project type: object @@ -157060,9 +157398,9 @@ x-webhooks: nullable: true to: type: string - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157144,9 +157482,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157227,9 +157565,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157335,7 +157673,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &802 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -157353,7 +157691,7 @@ x-webhooks: required: - id - name - - &800 + - &803 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -157376,8 +157714,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - - *800 + - *802 + - *803 required: - field_value - type: object @@ -157393,9 +157731,9 @@ x-webhooks: nullable: true required: - body - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157490,9 +157828,9 @@ x-webhooks: to: type: string nullable: true - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157575,10 +157913,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *748 - organization: *749 - projects_v2_item: *798 + changes: *804 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157660,9 +157998,9 @@ x-webhooks: type: string enum: - reopened - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -157743,9 +158081,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2_status_update: &802 + installation: *751 + organization: *752 + projects_v2_status_update: &805 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -157872,9 +158210,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2_status_update: *802 + installation: *751 + organization: *752 + projects_v2_status_update: *805 sender: *4 required: - action @@ -158010,9 +158348,9 @@ x-webhooks: type: string format: date nullable: true - installation: *748 - organization: *749 - projects_v2_status_update: *802 + installation: *751 + organization: *752 + projects_v2_status_update: *805 sender: *4 required: - action @@ -158083,10 +158421,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - repository @@ -158163,13 +158501,13 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *747 - installation: *748 - number: &803 + assignee: *777 + enterprise: *750 + installation: *751 + number: &806 description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -160452,7 +160790,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -160534,11 +160872,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -162816,7 +163154,7 @@ x-webhooks: - draft reason: type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -162898,11 +163236,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -165180,7 +165518,7 @@ x-webhooks: - draft reason: type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -165262,13 +165600,13 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: &804 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: &807 allOf: - - *605 + - *608 - type: object properties: allow_auto_merge: @@ -165330,7 +165668,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *750 + repository: *753 sender: *4 required: - action @@ -165411,12 +165749,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -165496,11 +165834,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *747 - milestone: *588 - number: *803 - organization: *749 - pull_request: &805 + enterprise: *750 + milestone: *591 + number: *806 + organization: *752 + pull_request: &808 title: Pull Request type: object properties: @@ -167763,7 +168101,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -167842,11 +168180,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -170128,7 +170466,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *750 + repository: *753 sender: *4 required: - action @@ -170252,12 +170590,12 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -170337,11 +170675,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -172608,7 +172946,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -172688,11 +173026,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *747 - installation: *748 - label: *773 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + label: *776 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -174974,7 +175312,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -175055,10 +175393,10 @@ x-webhooks: type: string enum: - locked - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -177338,7 +177676,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -177418,12 +177756,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *747 - milestone: *588 - number: *803 - organization: *749 - pull_request: *805 - repository: *750 + enterprise: *750 + milestone: *591 + number: *806 + organization: *752 + pull_request: *808 + repository: *753 sender: *4 required: - action @@ -177502,12 +177840,12 @@ x-webhooks: type: string enum: - opened - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -177588,12 +177926,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -177673,12 +178011,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -178044,9 +178382,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -180216,7 +180554,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -180296,7 +180634,7 @@ x-webhooks: type: string enum: - deleted - comment: &807 + comment: &810 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. @@ -180581,9 +180919,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -182741,7 +183079,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -182821,11 +183159,11 @@ x-webhooks: type: string enum: - edited - changes: *806 - comment: *807 - enterprise: *747 - installation: *748 - organization: *749 + changes: *809 + comment: *810 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -184986,7 +185324,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -185067,9 +185405,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -187242,7 +187580,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 review: description: The review that was affected. type: object @@ -187485,9 +187823,9 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -189541,8 +189879,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 - review: &808 + repository: *753 + review: &811 description: The review that was affected. type: object properties: @@ -189771,12 +190109,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -192059,7 +192397,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_reviewer: title: User type: object @@ -192143,12 +192481,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -194438,7 +194776,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194630,12 +194968,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -196920,7 +197258,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_reviewer: title: User type: object @@ -197005,12 +197343,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -199286,7 +199624,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199467,9 +199805,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -201644,8 +201982,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 - review: *808 + repository: *753 + review: *811 sender: *4 required: - action @@ -201725,9 +202063,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -203797,7 +204135,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 sender: *4 thread: type: object @@ -204180,9 +204518,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -206238,7 +206576,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 sender: *4 thread: type: object @@ -206624,10 +206962,10 @@ x-webhooks: type: string before: type: string - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -208898,7 +209236,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -208980,11 +209318,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *809 - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + assignee: *812 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -211267,7 +211605,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -211346,11 +211684,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *747 - installation: *748 - label: *773 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + label: *776 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -213623,7 +213961,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -213704,10 +214042,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -215972,7 +216310,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -216172,7 +216510,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *747 + enterprise: *750 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216264,8 +216602,8 @@ x-webhooks: - url - author - committer - installation: *748 - organization: *749 + installation: *751 + organization: *752 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216840,9 +217178,9 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 registry_package: type: object properties: @@ -217288,7 +217626,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *791 + items: *794 summary: type: string tag_name: @@ -217342,7 +217680,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -217420,9 +217758,9 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 registry_package: type: object properties: @@ -217730,7 +218068,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *794 summary: type: string tag_name: @@ -217779,7 +218117,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -217856,10 +218194,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - release: &810 + enterprise: *750 + installation: *751 + organization: *752 + release: &813 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -218164,7 +218502,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *750 + repository: *753 sender: *4 required: - action @@ -218241,11 +218579,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -218362,11 +218700,11 @@ x-webhooks: type: boolean required: - to - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -218444,9 +218782,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -218755,7 +219093,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *750 + repository: *753 sender: *4 required: - action @@ -218831,10 +219169,10 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - release: &811 + enterprise: *750 + installation: *751 + organization: *752 + release: &814 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -219140,7 +219478,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *750 + repository: *753 sender: *4 required: - action @@ -219216,11 +219554,11 @@ x-webhooks: type: string enum: - released - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -219296,11 +219634,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *747 - installation: *748 - organization: *749 - release: *811 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *814 + repository: *753 sender: *4 required: - action @@ -219376,11 +219714,11 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - repository_advisory: *658 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + repository_advisory: *661 sender: *4 required: - action @@ -219456,11 +219794,11 @@ x-webhooks: type: string enum: - reported - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - repository_advisory: *658 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + repository_advisory: *661 sender: *4 required: - action @@ -219536,10 +219874,10 @@ x-webhooks: type: string enum: - archived - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219616,10 +219954,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219697,10 +220035,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219784,10 +220122,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219899,10 +220237,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219974,10 +220312,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 status: type: string @@ -220058,10 +220396,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220138,10 +220476,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220235,10 +220573,10 @@ x-webhooks: - name required: - repository - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220318,10 +220656,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 sender: *4 required: @@ -220400,10 +220738,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 sender: *4 required: @@ -220482,10 +220820,10 @@ x-webhooks: type: string enum: - edited - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 changes: type: object @@ -220790,10 +221128,10 @@ x-webhooks: - from required: - owner - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220871,10 +221209,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220952,7 +221290,7 @@ x-webhooks: type: string enum: - create - alert: &812 + alert: &815 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221073,10 +221411,10 @@ x-webhooks: type: string enum: - open - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221282,10 +221620,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221363,11 +221701,11 @@ x-webhooks: type: string enum: - reopen - alert: *812 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221566,10 +221904,10 @@ x-webhooks: enum: - fixed - open - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221647,7 +221985,7 @@ x-webhooks: type: string enum: - created - alert: &813 + alert: &816 type: object properties: number: *100 @@ -221758,10 +222096,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221842,11 +222180,11 @@ x-webhooks: type: string enum: - created - alert: *813 - installation: *748 - location: *814 - organization: *749 - repository: *750 + alert: *816 + installation: *751 + location: *817 + organization: *752 + repository: *753 sender: *4 required: - location @@ -222084,11 +222422,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222166,11 +222504,11 @@ x-webhooks: type: string enum: - reopened - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222248,11 +222586,11 @@ x-webhooks: type: string enum: - resolved - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222330,11 +222668,11 @@ x-webhooks: type: string enum: - validated - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222460,10 +222798,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *750 - enterprise: *747 - installation: *748 - organization: *749 + repository: *753 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -222541,11 +222879,11 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - security_advisory: &815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + security_advisory: &818 description: The details of the security advisory, including summary, description, and severity. type: object @@ -222728,11 +223066,11 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - security_advisory: *815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + security_advisory: *818 sender: *4 required: - action @@ -222805,10 +223143,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -222992,11 +223330,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *323 - enterprise: *747 - installation: *748 - organization: *749 - repository: *385 + security_and_analysis: *326 + enterprise: *750 + installation: *751 + organization: *752 + repository: *388 sender: *4 required: - changes @@ -223074,12 +223412,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: &816 + sponsorship: &819 type: object properties: created_at: @@ -223380,12 +223718,12 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - sponsorship @@ -223473,12 +223811,12 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223555,17 +223893,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &817 + effective_date: &820 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - sponsorship @@ -223639,7 +223977,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &818 + changes: &821 type: object properties: tier: @@ -223683,13 +224021,13 @@ x-webhooks: - from required: - tier - effective_date: *817 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + effective_date: *820 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223766,13 +224104,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *818 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + changes: *821 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223846,10 +224184,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223932,10 +224270,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224355,15 +224693,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *747 + enterprise: *750 id: description: The unique identifier of the status. type: integer - installation: *748 + installation: *751 name: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 sha: description: The Commit SHA. @@ -224478,9 +224816,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224570,9 +224908,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224662,9 +225000,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224754,9 +225092,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224833,12 +225171,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - team: &819 + team: &822 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225028,9 +225366,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -225488,7 +225826,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -225564,9 +225902,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -226024,7 +226362,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -226101,9 +226439,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -226561,7 +226899,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -226705,9 +227043,9 @@ x-webhooks: - from required: - permissions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -227165,7 +227503,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - changes @@ -227243,9 +227581,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -227703,7 +228041,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -227779,10 +228117,10 @@ x-webhooks: type: string enum: - started - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -227855,16 +228193,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *747 + enterprise: *750 inputs: type: object nullable: true additionalProperties: true - installation: *748 - organization: *749 + installation: *751 + organization: *752 ref: type: string - repository: *750 + repository: *753 sender: *4 workflow: type: string @@ -227946,10 +228284,10 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: allOf: @@ -228186,7 +228524,7 @@ x-webhooks: type: string required: - conclusion - deployment: *520 + deployment: *523 required: - action - repository @@ -228265,10 +228603,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: allOf: @@ -228528,7 +228866,7 @@ x-webhooks: required: - status - steps - deployment: *520 + deployment: *523 required: - action - repository @@ -228607,10 +228945,10 @@ x-webhooks: type: string enum: - queued - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: type: object @@ -228745,7 +229083,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *523 required: - action - repository @@ -228824,10 +229162,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: type: object @@ -228963,7 +229301,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *523 required: - action - repository @@ -229043,12 +229381,12 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object @@ -230047,12 +230385,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object @@ -231036,12 +231374,12 @@ x-webhooks: type: string enum: - requested - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 09c2e8934a..3186fafe6c 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -4762,7 +4762,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" @@ -5702,7 +5702,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" @@ -6500,7 +6500,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" @@ -6929,7 +6929,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" @@ -8901,7 +8901,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" @@ -9896,7 +9896,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" @@ -10808,7 +10808,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" @@ -11431,7 +11431,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" @@ -36695,7 +36695,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" ], @@ -37534,6 +37534,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -50251,6 +50261,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -65332,6 +65402,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -71048,6 +71178,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -113447,6 +113637,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -119933,7 +120183,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" @@ -120888,7 +121138,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" @@ -122713,25 +122963,932 @@ } }, "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", + "nullable": true + }, + "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", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "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", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": [ { @@ -122744,243 +123901,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", - "nullable": true - }, - "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", - "example": "https://github.com/orgs/rails/teams/core" - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "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", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", - "type": "string" - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ], - "nullable": true - } + "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": { @@ -123014,7 +123975,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -123082,6 +124043,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.", @@ -124065,6 +125035,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -148506,7 +149536,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" ], @@ -149134,6 +150164,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -306349,6 +307389,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -321728,7 +322828,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" @@ -325160,6 +326260,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.", @@ -326170,6 +327279,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -327730,6 +328899,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -328677,6 +329852,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -334663,6 +335898,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -338336,6 +339631,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -341885,6 +343240,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -343424,6 +344839,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -344369,6 +345790,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -346879,6 +348360,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -349192,6 +350733,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -364865,6 +366466,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -367267,6 +368928,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -369645,6 +371366,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -372122,6 +373903,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -382788,6 +384629,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -492220,6 +494121,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -530954,7 +532915,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" @@ -534211,6 +536172,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -562994,6 +565015,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -565928,6 +568009,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -568864,6 +571005,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -572575,7 +574776,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" @@ -578141,6 +580342,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -581077,6 +583338,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -756533,7 +758854,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" @@ -759080,7 +761401,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" @@ -761534,7 +763855,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" @@ -763988,7 +766309,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" @@ -766574,7 +768895,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" @@ -769167,7 +771488,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" @@ -773383,7 +775704,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" @@ -777192,6 +779513,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -780886,6 +783267,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -784604,6 +787045,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -787859,6 +790360,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -790689,6 +793250,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -793708,6 +796329,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -796548,6 +799229,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -799557,6 +802298,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -802421,6 +805222,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -805311,6 +808172,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -808131,6 +811052,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -812937,6 +815918,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -815755,6 +818796,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -818703,6 +821804,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -821308,6 +824469,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -823217,6 +826438,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -826139,6 +829420,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -828964,6 +832305,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -831852,6 +835253,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -834647,6 +838108,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -1181907,6 +1185428,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1184695,6 +1188276,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1188311,6 +1191952,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1191099,6 +1194800,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1194715,6 +1198476,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1197503,6 +1201324,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1201119,6 +1205000,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -1203907,6 +1207848,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index b34e51456d..23c7cc53b8 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -855,7 +855,7 @@ paths: - subscriptions_url - type - url - type: &339 + type: &342 type: string description: The type of credit the user is receiving. enum: @@ -1021,7 +1021,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: - - &660 + - &663 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1712,7 +1712,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &670 + schema: &673 title: Scim Error description: Scim Error type: object @@ -2234,7 +2234,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 @@ -2849,7 +2849,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &321 + properties: &324 id: description: Unique identifier of the repository example: 42 @@ -3278,7 +3278,7 @@ paths: type: boolean description: Whether anonymous git access is enabled for this repository - required: &322 + required: &325 - archive_url - assignees_url - blobs_url @@ -11255,7 +11255,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &455 + instances_url: &458 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11290,7 +11290,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &456 + dismissed_reason: &459 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -11299,13 +11299,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &457 + dismissed_comment: &460 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &458 + rule: &461 type: object properties: id: @@ -11358,7 +11358,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &459 + tool: &462 type: object properties: name: *87 @@ -11368,15 +11368,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *88 - most_recent_instance: &460 + most_recent_instance: &463 type: object properties: - ref: &453 + ref: &456 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &470 + analysis_key: &473 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11387,7 +11387,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &471 + category: &474 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13635,7 +13635,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &299 + properties: &302 id: description: Unique identifier of the team type: integer @@ -13691,7 +13691,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &300 + required: &303 - id - node_id - url @@ -14769,7 +14769,7 @@ paths: - unknown - direct - transitive - security_advisory: &512 + security_advisory: &515 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15001,7 +15001,7 @@ paths: nullable: true maxLength: 280 fixed_at: *110 - auto_dismissed_at: &513 + auto_dismissed_at: &516 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -15493,7 +15493,7 @@ paths: - name - created_on examples: - default: &349 + default: &352 value: total_count: 2 network_configurations: @@ -15716,7 +15716,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: - *40 - - &350 + - &353 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -15728,7 +15728,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &354 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -15762,7 +15762,7 @@ paths: - subnet_id - region examples: - default: &352 + default: &355 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -15903,6 +15903,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 @@ -16075,7 +16079,7 @@ paths: required: true content: application/json: - schema: &319 + schema: &322 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16114,6 +16118,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type examples: @@ -16436,7 +16448,7 @@ paths: type: object description: A repository rule. oneOf: - - &622 + - &625 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16448,7 +16460,7 @@ paths: type: string enum: - creation - - &623 + - &626 title: update description: Only allow users with bypass permission to update matching refs. @@ -16469,7 +16481,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &625 + - &628 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -16481,7 +16493,7 @@ paths: type: string enum: - deletion - - &626 + - &629 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -16493,7 +16505,7 @@ paths: type: string enum: - required_linear_history - - &627 + - &630 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -16569,7 +16581,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &628 + - &631 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -16593,7 +16605,7 @@ paths: type: string required: - required_deployment_environments - - &629 + - &632 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -16605,7 +16617,7 @@ paths: type: string enum: - required_signatures - - &630 + - &633 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. @@ -16656,7 +16668,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &631 + - &634 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -16703,7 +16715,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &632 + - &635 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -16715,7 +16727,7 @@ paths: type: string enum: - non_fast_forward - - &633 + - &636 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -16751,7 +16763,7 @@ paths: required: - operator - pattern - - &634 + - &637 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -16787,7 +16799,7 @@ paths: required: - operator - pattern - - &635 + - &638 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -16823,7 +16835,7 @@ paths: required: - operator - pattern - - &636 + - &639 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -16859,7 +16871,7 @@ paths: required: - operator - pattern - - &637 + - &640 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -16985,7 +16997,7 @@ paths: maximum: 100 required: - max_file_size - - &638 + - &641 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17034,7 +17046,7 @@ paths: - repository_id required: - workflows - - &639 + - &642 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17191,7 +17203,7 @@ paths: nullable: true anyOf: - *121 - - &326 + - &329 title: Organization ruleset conditions type: object description: |- @@ -17472,7 +17484,7 @@ paths: type: string format: date-time examples: - default: &328 + default: &331 value: - version_id: 3 actor: @@ -17525,7 +17537,7 @@ paths: description: Response content: application/json: - schema: &329 + schema: &332 allOf: - *131 - type: object @@ -17580,7 +17592,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *40 - - &330 + - &333 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -17591,7 +17603,7 @@ paths: enum: - open - resolved - - &331 + - &334 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -17601,7 +17613,7 @@ paths: required: false schema: type: string - - &332 + - &335 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -17610,7 +17622,7 @@ paths: required: false schema: type: string - - &333 + - &336 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. @@ -17626,7 +17638,7 @@ paths: - *17 - *84 - *85 - - &334 + - &337 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -17635,7 +17647,7 @@ paths: required: false schema: type: string - - &335 + - &338 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -17644,7 +17656,7 @@ paths: schema: type: boolean default: false - - &336 + - &339 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -17660,7 +17672,7 @@ paths: application/json: schema: type: array - items: &337 + items: &340 type: object properties: number: *100 @@ -17679,14 +17691,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &652 + state: &655 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: &653 + resolution: &656 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -17788,7 +17800,7 @@ paths: is base64 encoded nullable: true examples: - default: &338 + default: &341 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18051,7 +18063,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &344 type: object properties: total_minutes_used: @@ -18121,7 +18133,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &342 + default: &345 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18159,7 +18171,7 @@ paths: description: Success content: application/json: - schema: &343 + schema: &346 type: object properties: total_advanced_security_committers: @@ -18214,7 +18226,7 @@ paths: required: - repositories examples: - default: &344 + default: &347 value: total_advanced_security_committers: 2 total_count: 2 @@ -18453,7 +18465,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &348 type: object properties: total_gigabytes_bandwidth_used: @@ -18471,7 +18483,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &346 + default: &349 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -18503,7 +18515,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &350 type: object properties: days_left_in_billing_cycle: @@ -18521,7 +18533,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &348 + default: &351 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -18776,7 +18788,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: - *40 - - &298 + - &301 name: team_slug description: The slug of the team name. in: path @@ -19033,7 +19045,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &561 + properties: &564 id: type: integer format: int64 @@ -19144,7 +19156,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &497 + properties: &500 url: type: string format: uri @@ -19214,7 +19226,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &498 + required: &501 - closed_issues - creator - description @@ -19293,6 +19305,55 @@ paths: timeline_url: type: string format: uri + type: &287 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *63 performed_via_github_app: title: GitHub app @@ -19369,7 +19430,7 @@ paths: - total - completed - percent_completed - required: &562 + required: &565 - assignee - closed_at - comments @@ -19391,7 +19452,7 @@ paths: - author_association - created_at - updated_at - comment: &559 + comment: &562 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -19958,7 +20019,7 @@ paths: url: type: string format: uri - user: &709 + user: &712 title: Public User description: Public User type: object @@ -21828,7 +21889,7 @@ paths: - closed - all default: open - - &287 + - &290 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -21879,7 +21940,7 @@ paths: type: array items: *154 examples: - default: &288 + default: &291 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23263,14 +23324,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: - - &372 + - &375 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &373 + - &376 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23341,7 +23402,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &386 + '301': &389 description: Moved permanently content: application/json: @@ -23363,7 +23424,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &591 + - &594 name: all description: If `true`, show notifications marked as read. in: query @@ -23371,7 +23432,7 @@ paths: schema: type: boolean default: false - - &592 + - &595 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -23381,7 +23442,7 @@ paths: type: boolean default: false - *144 - - &593 + - &596 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: @@ -23693,7 +23754,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &323 + security_and_analysis: &326 nullable: true type: object properties: @@ -23845,7 +23906,7 @@ paths: - url - subscription_url examples: - default: &594 + default: &597 value: - id: '1' repository: @@ -24391,7 +24452,7 @@ paths: type: array items: *58 examples: - default: &727 + default: &730 value: - login: github id: 1 @@ -25324,7 +25385,7 @@ paths: type: integer repository_cache_usages: type: array - items: &391 + items: &394 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25994,7 +26055,7 @@ paths: type: array items: *63 examples: - default: &721 + default: &724 value: total_count: 1 repositories: @@ -26813,7 +26874,7 @@ paths: type: array items: *197 examples: - default: &712 + default: &715 value: total_count: 1 repositories: @@ -27854,7 +27915,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &414 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27883,7 +27944,7 @@ paths: - key_id - key examples: - default: &412 + default: &415 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28296,7 +28357,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *171 - - &396 + - &399 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)." @@ -28909,7 +28970,7 @@ paths: bundle_url: type: string examples: - default: &425 + default: &428 value: attestations: - bundle: @@ -29078,7 +29139,7 @@ paths: type: array items: *4 examples: - default: &289 + default: &292 value: - login: octocat id: 1 @@ -29256,7 +29317,7 @@ paths: application/json: schema: type: array - items: &442 + items: &445 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -29381,7 +29442,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &443 + default: &446 value: - id: 21 number: 42 @@ -29494,7 +29555,7 @@ paths: be returned. in: query required: false - schema: &454 + schema: &457 type: string description: Severity of a code scanning alert. enum: @@ -30464,7 +30525,7 @@ paths: type: integer codespaces: type: array - items: &290 + items: &293 type: object title: Codespace description: A codespace. @@ -30494,7 +30555,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &483 + properties: &486 name: type: string description: The name of the machine. @@ -30536,7 +30597,7 @@ paths: - ready - in_progress nullable: true - required: &484 + required: &487 - name - display_name - operating_system @@ -30741,7 +30802,7 @@ paths: - pulls_url - recent_folders examples: - default: &291 + default: &294 value: total_count: 3 codespaces: @@ -31404,7 +31465,7 @@ paths: - updated_at - visibility examples: - default: &485 + default: &488 value: total_count: 2 secrets: @@ -31442,7 +31503,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &489 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -31471,7 +31532,7 @@ paths: - key_id - key examples: - default: &487 + default: &490 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31503,7 +31564,7 @@ paths: application/json: schema: *238 examples: - default: &489 + default: &492 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33252,7 +33313,7 @@ paths: description: Response content: application/json: - schema: &516 + schema: &519 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -33269,7 +33330,7 @@ paths: - key_id - key examples: - default: &517 + default: &520 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33596,7 +33657,7 @@ paths: application/json: schema: type: array - items: &302 + items: &305 title: Package description: A software package type: object @@ -33666,7 +33727,7 @@ paths: - created_at - updated_at examples: - default: &303 + default: &306 value: - id: 197 name: hello_docker @@ -33850,7 +33911,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &370 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -33931,7 +33992,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &368 + default: &371 value: group_id: '123' group_name: Octocat admins @@ -33986,7 +34047,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &368 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34023,7 +34084,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &366 + default: &369 value: groups: - group_id: '123' @@ -34181,7 +34242,7 @@ paths: application/json: schema: type: array - items: &324 + items: &327 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -34195,7 +34256,7 @@ paths: - name - description examples: - default: &325 + default: &328 value: - name: add_assignee description: Assign or remove a user @@ -35325,7 +35386,7 @@ paths: application/json: schema: *22 examples: - default: &555 + default: &558 value: id: 1 account: @@ -35550,7 +35611,7 @@ paths: required: true content: application/json: - schema: &556 + schema: &559 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -35843,7 +35904,7 @@ paths: type: array items: *286 examples: - default: &301 + default: &304 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -35866,6 +35927,237 @@ 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: + - *171 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *287 + 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: + - *171 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *287 + examples: + default: &288 + 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: + - *171 + - &289 + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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: *287 + examples: + default: *288 + '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: + - *171 + - *289 + 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 @@ -35918,7 +36210,13 @@ paths: - closed - all default: open - - *287 + - *290 + - 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 @@ -35943,7 +36241,7 @@ paths: type: array items: *154 examples: - default: *288 + default: *291 headers: Link: *39 '404': *6 @@ -36001,7 +36299,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '422': *15 @@ -36097,9 +36395,9 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 '304': *37 '500': *99 '401': *25 @@ -36126,7 +36424,7 @@ paths: parameters: - *171 - *219 - - &292 + - &295 name: codespace_name in: path required: true @@ -36161,15 +36459,15 @@ paths: parameters: - *171 - *219 - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: &482 + default: &485 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -36424,7 +36722,7 @@ paths: description: Response content: application/json: - schema: &293 + schema: &296 title: Org Membership description: Org Membership type: object @@ -36476,7 +36774,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &294 + response-if-user-has-an-active-admin-membership-with-organization: &297 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36573,9 +36871,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: - response-if-user-already-had-membership-with-organization: *294 + response-if-user-already-had-membership-with-organization: *297 '422': *15 '403': *29 x-github: @@ -36643,7 +36941,7 @@ paths: application/json: schema: type: array - items: &295 + items: &298 title: Migration description: A migration. type: object @@ -36972,7 +37270,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -37151,7 +37449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *171 - - &296 + - &299 name: migration_id description: The unique identifier of the migration. in: path @@ -37178,7 +37476,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -37348,7 +37646,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *171 - - *296 + - *299 responses: '302': description: Response @@ -37370,7 +37668,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *171 - - *296 + - *299 responses: '204': description: Response @@ -37394,8 +37692,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *171 - - *296 - - &726 + - *299 + - &729 name: repo_name description: repo_name parameter in: path @@ -37423,7 +37721,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *171 - - *296 + - *299 - *17 - *19 responses: @@ -37435,7 +37733,7 @@ paths: type: array items: *197 examples: - default: &308 + default: &311 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37644,7 +37942,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &297 + items: &300 title: Organization Role description: Organization roles type: object @@ -37851,7 +38149,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -37903,7 +38201,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -37929,7 +38227,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *171 - - *298 + - *301 - *244 responses: '204': @@ -37960,7 +38258,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *171 - - *298 + - *301 - *244 responses: '204': @@ -38081,7 +38379,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -38178,7 +38476,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -38336,8 +38634,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 nullable: true required: - id @@ -38352,7 +38650,7 @@ paths: - slug - parent examples: - default: *301 + default: *304 headers: Link: *39 '404': @@ -38410,13 +38708,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &340 + items: &343 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 name: nullable: true type: string @@ -38511,7 +38809,7 @@ paths: - type - url examples: - default: *289 + default: *292 headers: Link: *39 '404': @@ -38559,7 +38857,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -38701,7 +38999,7 @@ paths: - nuget - container - *171 - - &728 + - &731 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38737,12 +39035,12 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *303 + default: *306 '403': *29 '401': *25 - '400': &730 + '400': &733 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38764,7 +39062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &304 + - &307 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 @@ -38782,7 +39080,7 @@ paths: - docker - nuget - container - - &305 + - &308 name: package_name description: The name of the package. in: path @@ -38795,7 +39093,7 @@ paths: description: Response content: application/json: - schema: *302 + schema: *305 examples: default: value: @@ -38847,8 +39145,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *304 - - *305 + - *307 + - *308 - *171 responses: '204': @@ -38881,8 +39179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *304 - - *305 + - *307 + - *308 - *171 - name: token description: package token @@ -38915,8 +39213,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: - - *304 - - *305 + - *307 + - *308 - *171 - *19 - *17 @@ -38937,7 +39235,7 @@ paths: application/json: schema: type: array - items: &306 + items: &309 title: Package Version description: A version of a software package type: object @@ -39062,10 +39360,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: - - *304 - - *305 + - *307 + - *308 - *171 - - &307 + - &310 name: package_version_id description: Unique identifier of the package version. in: path @@ -39077,7 +39375,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -39113,10 +39411,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *304 - - *305 - - *171 - *307 + - *308 + - *171 + - *310 responses: '204': description: Response @@ -39148,10 +39446,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *304 - - *305 - - *171 - *307 + - *308 + - *171 + - *310 responses: '204': description: Response @@ -39181,7 +39479,7 @@ paths: - *171 - *17 - *19 - - &309 + - &312 name: sort description: The property by which to sort the results. in: query @@ -39192,7 +39490,7 @@ paths: - created_at default: created_at - *86 - - &310 + - &313 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39203,7 +39501,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &311 + - &314 name: repository description: The name of the repository to use to filter the results. in: query @@ -39211,7 +39509,7 @@ paths: schema: type: string example: Hello-World - - &312 + - &315 name: permission description: The permission to use to filter the results. in: query @@ -39219,7 +39517,7 @@ paths: schema: type: string example: issues_read - - &313 + - &316 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) @@ -39229,7 +39527,7 @@ paths: schema: type: string format: date-time - - &314 + - &317 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) @@ -39239,7 +39537,7 @@ paths: schema: type: string format: date-time - - &315 + - &318 name: token_id description: The ID of the token in: query @@ -39552,7 +39850,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -39578,14 +39876,14 @@ paths: - *171 - *17 - *19 - - *309 - - *86 - - *310 - - *311 - *312 + - *86 - *313 - *314 - *315 + - *316 + - *317 + - *318 responses: '500': *99 '422': *15 @@ -39867,7 +40165,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -39911,7 +40209,7 @@ paths: type: integer configurations: type: array - items: &316 + items: &319 title: Organization private registry description: Private registry configuration for an organization type: object @@ -40117,7 +40415,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &317 + org-private-registry-with-selected-visibility: &320 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40217,9 +40515,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 x-github: githubCloudOnly: false @@ -40369,7 +40667,7 @@ paths: application/json: schema: type: array - items: &318 + items: &321 title: Project description: Projects are a way to organize columns and cards of work. @@ -40542,7 +40840,7 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: default: value: @@ -40580,7 +40878,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &383 + '410': &386 description: Gone content: application/json: @@ -40630,6 +40928,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. @@ -40742,7 +41044,7 @@ paths: required: true content: application/json: - schema: *319 + schema: *322 examples: default: value: @@ -40845,7 +41147,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &320 + items: &323 title: Custom Property Value description: Custom property name and associated value type: object @@ -40932,7 +41234,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *320 + items: *323 required: - repository_names - properties @@ -40985,7 +41287,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -41125,7 +41427,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -41328,7 +41630,7 @@ paths: description: Response content: application/json: - schema: &385 + schema: &388 title: Full Repository description: Full Repository type: object @@ -41605,8 +41907,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *321 - required: *322 + properties: *324 + required: *325 nullable: true temp_clone_token: type: string @@ -41721,7 +42023,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &504 + properties: &507 url: type: string format: uri @@ -41737,12 +42039,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &505 + required: &508 - url - key - name - html_url - security_and_analysis: *323 + security_and_analysis: *326 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -41826,7 +42128,7 @@ paths: - network_count - subscribers_count examples: - default: &387 + default: &390 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42352,9 +42654,9 @@ paths: application/json: schema: type: array - items: *324 + items: *327 examples: - default: *325 + default: *328 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -42379,7 +42681,7 @@ paths: - *171 - *17 - *19 - - &640 + - &643 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42470,7 +42772,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *126 - conditions: *326 + conditions: *329 rules: type: array description: An array of rules within the ruleset. @@ -42514,7 +42816,7 @@ paths: application/json: schema: *128 examples: - default: &327 + default: &330 value: id: 21 name: super cool ruleset @@ -42569,7 +42871,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *171 - - &641 + - &644 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 @@ -42581,14 +42883,14 @@ paths: x-multi-segment: true - *226 - *222 - - &642 + - &645 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 - - &643 + - &646 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -42608,7 +42910,7 @@ paths: description: Response content: application/json: - schema: &644 + schema: &647 title: Rule Suites description: Response type: array @@ -42663,7 +42965,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &645 + default: &648 value: - id: 21 actor_id: 12 @@ -42707,7 +43009,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *171 - - &646 + - &649 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42723,7 +43025,7 @@ paths: description: Response content: application/json: - schema: &647 + schema: &650 title: Rule Suite description: Response type: object @@ -42822,7 +43124,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &648 + default: &651 value: id: 21 actor_id: 12 @@ -42897,7 +43199,7 @@ paths: application/json: schema: *128 examples: - default: *327 + default: *330 '404': *6 '500': *99 put: @@ -42946,7 +43248,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *126 - conditions: *326 + conditions: *329 rules: description: An array of rules within the ruleset. type: array @@ -42987,7 +43289,7 @@ paths: application/json: schema: *128 examples: - default: *327 + default: *330 '404': *6 '500': *99 delete: @@ -43046,7 +43348,7 @@ paths: type: array items: *131 examples: - default: *328 + default: *331 '404': *6 '500': *99 x-github: @@ -43083,7 +43385,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -43146,14 +43448,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *171 - - *330 - - *331 - - *332 - *333 + - *334 + - *335 + - *336 - *86 - *19 - *17 - - &650 + - &653 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 @@ -43163,7 +43465,7 @@ paths: required: false schema: type: string - - &651 + - &654 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 @@ -43173,9 +43475,9 @@ paths: required: false schema: type: string - - *334 - - *335 - - *336 + - *337 + - *338 + - *339 responses: '200': description: Response @@ -43183,9 +43485,9 @@ paths: application/json: schema: type: array - items: *337 + items: *340 examples: - default: *338 + default: *341 headers: Link: *39 '404': *6 @@ -43255,7 +43557,7 @@ paths: application/json: schema: type: array - items: &658 + items: &661 description: A repository security advisory. type: object properties: @@ -43475,7 +43777,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 credits_detailed: type: array nullable: true @@ -43485,7 +43787,7 @@ paths: type: object properties: user: *4 - type: *339 + type: *342 state: type: string description: The state of the user's acceptance of the @@ -43546,7 +43848,7 @@ paths: - private_fork additionalProperties: false examples: - default: &659 + default: &662 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43933,9 +44235,9 @@ paths: application/json: schema: type: array - items: *340 + items: *343 examples: - default: *301 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43959,7 +44261,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -43985,7 +44287,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -44020,9 +44322,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *342 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44054,9 +44356,9 @@ paths: description: Success content: application/json: - schema: *343 + schema: *346 examples: - default: *344 + default: *347 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44084,9 +44386,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44114,9 +44416,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -44156,7 +44458,7 @@ paths: type: array items: *111 examples: - default: *349 + default: *352 headers: Link: *39 x-github: @@ -44357,15 +44659,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: - *171 - - *350 + - *353 responses: '200': description: Response content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 headers: Link: *39 x-github: @@ -44403,7 +44705,7 @@ paths: description: Response content: application/json: - schema: &374 + schema: &377 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -44449,7 +44751,7 @@ paths: type: string nullable: true examples: - default: &375 + default: &378 value: groups: - group_id: '123' @@ -44495,7 +44797,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *171 - - *298 + - *301 - 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`). @@ -44568,7 +44870,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *171 - - *298 + - *301 - 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`). @@ -44636,7 +44938,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 headers: Link: *39 '403': *29 @@ -44730,7 +45032,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &356 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44793,8 +45095,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *299 - required: *300 + properties: *302 + required: *303 nullable: true members_count: type: integer @@ -45040,7 +45342,7 @@ paths: - repos_count - organization examples: - default: &354 + default: &357 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45111,15 +45413,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -45141,7 +45443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *171 - - *298 + - *301 requestBody: required: false content: @@ -45203,16 +45505,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '201': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 '422': *15 '403': *29 @@ -45238,7 +45540,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *171 - - *298 + - *301 responses: '204': description: Response @@ -45265,7 +45567,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *171 - - *298 + - *301 - *86 - *17 - *19 @@ -45282,7 +45584,7 @@ paths: application/json: schema: type: array - items: &355 + items: &358 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -45381,7 +45683,7 @@ paths: - updated_at - url examples: - default: &699 + default: &702 value: - author: login: octocat @@ -45456,7 +45758,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *171 - - *298 + - *301 requestBody: required: true content: @@ -45490,9 +45792,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &356 + default: &359 value: author: login: octocat @@ -45565,8 +45867,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *171 - - *298 - - &357 + - *301 + - &360 name: discussion_number description: The number that identifies the discussion. in: path @@ -45578,9 +45880,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45603,8 +45905,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: false content: @@ -45627,9 +45929,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: &700 + default: &703 value: author: login: octocat @@ -45700,8 +46002,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 responses: '204': description: Response @@ -45728,8 +46030,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *171 - - *298 - - *357 + - *301 + - *360 - *86 - *17 - *19 @@ -45740,7 +46042,7 @@ paths: application/json: schema: type: array - items: &358 + items: &361 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45812,7 +46114,7 @@ paths: - updated_at - url examples: - default: &701 + default: &704 value: - author: login: octocat @@ -45881,8 +46183,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: true content: @@ -45904,9 +46206,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: &359 + default: &362 value: author: login: octocat @@ -45973,9 +46275,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *171 - - *298 - - *357 - - &360 + - *301 + - *360 + - &363 name: comment_number description: The number that identifies the comment. in: path @@ -45987,9 +46289,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,9 +46314,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 requestBody: required: true content: @@ -46036,9 +46338,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: &702 + default: &705 value: author: login: octocat @@ -46103,9 +46405,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 responses: '204': description: Response @@ -46132,9 +46434,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 - 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. @@ -46160,7 +46462,7 @@ paths: application/json: schema: type: array - items: &361 + items: &364 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46203,7 +46505,7 @@ paths: - content - created_at examples: - default: &363 + default: &366 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46254,9 +46556,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *171 - - *298 - - *357 + - *301 - *360 + - *363 requestBody: required: true content: @@ -46289,9 +46591,9 @@ paths: team discussion comment content: application/json: - schema: *361 + schema: *364 examples: - default: &362 + default: &365 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46320,9 +46622,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46346,10 +46648,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *171 - - *298 - - *357 + - *301 - *360 - - &364 + - *363 + - &367 name: reaction_id description: The unique identifier of the reaction. in: path @@ -46382,8 +46684,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 - 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. @@ -46409,9 +46711,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -46438,8 +46740,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *171 - - *298 - - *357 + - *301 + - *360 requestBody: required: true content: @@ -46471,16 +46773,16 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -46504,9 +46806,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *171 - - *298 - - *357 - - *364 + - *301 + - *360 + - *367 responses: '204': description: Response @@ -46530,15 +46832,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: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *365 + schema: *368 examples: - default: *366 + default: *369 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -46558,7 +46860,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: - *171 - - *298 + - *301 requestBody: required: true content: @@ -46581,9 +46883,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -46603,7 +46905,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: - *171 - - *298 + - *301 responses: '204': description: Response @@ -46628,7 +46930,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -46663,7 +46965,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *171 - - *298 + - *301 - name: role description: Filters members returned by their role in the team. in: query @@ -46686,7 +46988,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -46717,14 +47019,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 responses: '200': description: Response content: application/json: - schema: &369 + schema: &372 title: Team Membership description: Team Membership type: object @@ -46751,7 +47053,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &703 + response-if-user-is-a-team-maintainer: &706 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46788,7 +47090,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 requestBody: required: false @@ -46814,9 +47116,9 @@ paths: description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-users-membership-with-team-is-now-pending: &704 + response-if-users-membership-with-team-is-now-pending: &707 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46852,7 +47154,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *171 - - *298 + - *301 - *219 responses: '204': @@ -46879,7 +47181,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -46889,7 +47191,7 @@ paths: application/json: schema: type: array - items: &370 + items: &373 title: Team Project description: A team's access to a project. type: object @@ -46957,7 +47259,7 @@ paths: - updated_at - permissions examples: - default: &705 + default: &708 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47021,8 +47323,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *171 - - *298 - - &371 + - *301 + - &374 name: project_id description: The unique identifier of the project. in: path @@ -47034,9 +47336,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *373 examples: - default: &706 + default: &709 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47099,8 +47401,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *171 - - *298 - - *371 + - *301 + - *374 requestBody: required: false content: @@ -47167,8 +47469,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *171 - - *298 - - *371 + - *301 + - *374 responses: '204': description: Response @@ -47196,7 +47498,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -47208,7 +47510,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -47238,15 +47540,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &707 + schema: &710 title: Team Repository description: A team's access to a repository. type: object @@ -47816,9 +48118,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 requestBody: required: false content: @@ -47864,9 +48166,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *171 - - *298 - - *372 - - *373 + - *301 + - *375 + - *376 responses: '204': description: Response @@ -47893,15 +48195,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *171 - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *374 + schema: *377 examples: - default: *375 + default: *378 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47924,7 +48226,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *171 - - *298 + - *301 requestBody: required: true content: @@ -47967,7 +48269,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *377 examples: default: value: @@ -48000,7 +48302,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *171 - - *298 + - *301 - *17 - *19 responses: @@ -48012,7 +48314,7 @@ paths: type: array items: *286 examples: - response-if-child-teams-exist: &708 + response-if-child-teams-exist: &711 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48139,7 +48441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &376 + - &379 name: card_id description: The unique identifier of the card. in: path @@ -48151,7 +48453,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &380 title: Project Card description: Project cards represent a scope of work. type: object @@ -48218,7 +48520,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -48274,7 +48576,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *376 + - *379 requestBody: required: false content: @@ -48301,9 +48603,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '304': *37 '403': *29 '401': *25 @@ -48330,7 +48632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *376 + - *379 responses: '204': description: Response @@ -48374,7 +48676,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *376 + - *379 requestBody: required: true content: @@ -48485,7 +48787,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &379 + - &382 name: column_id description: The unique identifier of the column. in: path @@ -48497,7 +48799,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &383 title: Project Column description: Project columns contain cards of work. type: object @@ -48543,7 +48845,7 @@ paths: - created_at - updated_at examples: - default: &381 + default: &384 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48578,7 +48880,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *379 + - *382 requestBody: required: true content: @@ -48602,9 +48904,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *383 examples: - default: *381 + default: *384 '304': *37 '403': *29 '401': *25 @@ -48629,7 +48931,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *379 + - *382 responses: '204': description: Response @@ -48658,7 +48960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *379 + - *382 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -48679,7 +48981,7 @@ paths: application/json: schema: type: array - items: *377 + items: *380 examples: default: value: @@ -48738,7 +49040,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *379 + - *382 requestBody: required: true content: @@ -48778,9 +49080,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '304': *37 '403': *29 '401': *25 @@ -48836,7 +49138,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *379 + - *382 requestBody: required: true content: @@ -48896,15 +49198,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *371 + - *374 responses: '200': description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: &382 + default: &385 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48961,7 +49263,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *371 + - *374 requestBody: required: false content: @@ -49007,9 +49309,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *382 + default: *385 '404': description: Not Found if the authenticated user does not have access to the project @@ -49030,7 +49332,7 @@ paths: items: type: string '401': *25 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -49053,7 +49355,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *371 + - *374 responses: '204': description: Delete Success @@ -49074,7 +49376,7 @@ paths: items: type: string '401': *25 - '410': *383 + '410': *386 '404': *6 x-github: githubCloudOnly: false @@ -49098,7 +49400,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *371 + - *374 - 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 @@ -49125,7 +49427,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -49155,7 +49457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *371 + - *374 - *219 requestBody: required: false @@ -49208,7 +49510,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *371 + - *374 - *219 responses: '204': @@ -49240,7 +49542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *371 + - *374 - *219 responses: '200': @@ -49314,7 +49616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *371 + - *374 - *17 - *19 responses: @@ -49324,7 +49626,7 @@ paths: application/json: schema: type: array - items: *380 + items: *383 examples: default: value: @@ -49362,7 +49664,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *371 + - *374 requestBody: required: true content: @@ -49385,7 +49687,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *383 examples: default: value: @@ -49449,7 +49751,7 @@ paths: resources: type: object properties: - core: &384 + core: &387 title: Rate Limit type: object properties: @@ -49466,20 +49768,20 @@ paths: - remaining - reset - used - graphql: *384 - search: *384 - code_search: *384 - source_import: *384 - integration_manifest: *384 - code_scanning_upload: *384 - actions_runner_registration: *384 - scim: *384 - dependency_snapshots: *384 - code_scanning_autofix: *384 + graphql: *387 + search: *387 + code_search: *387 + source_import: *387 + integration_manifest: *387 + code_scanning_upload: *387 + actions_runner_registration: *387 + scim: *387 + dependency_snapshots: *387 + code_scanning_autofix: *387 required: - core - search - rate: *384 + rate: *387 required: - rate - resources @@ -49583,14 +49885,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *385 + schema: *388 examples: default-response: summary: Default response @@ -50095,7 +50397,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *386 + '301': *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50113,8 +50415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -50360,10 +50662,10 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 - '307': &388 + default: *390 + '307': &391 description: Temporary Redirect content: application/json: @@ -50392,8 +50694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -50415,7 +50717,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': *388 + '307': *391 '404': *6 x-github: githubCloudOnly: false @@ -50438,11 +50740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - - &403 + - &406 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50465,7 +50767,7 @@ paths: type: integer artifacts: type: array - items: &389 + items: &392 title: Artifact description: An artifact type: object @@ -50543,7 +50845,7 @@ paths: - expires_at - updated_at examples: - default: &404 + default: &407 value: total_count: 2 artifacts: @@ -50604,9 +50906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *372 - - *373 - - &390 + - *375 + - *376 + - &393 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50618,7 +50920,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -50656,9 +50958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *372 - - *373 - - *390 + - *375 + - *376 + - *393 responses: '204': description: Response @@ -50682,9 +50984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *372 - - *373 - - *390 + - *375 + - *376 + - *393 - name: archive_format in: path required: true @@ -50698,7 +51000,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': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50721,14 +51023,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -50754,11 +51056,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: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - - &392 + - &395 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 @@ -50792,7 +51094,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &396 title: Repository actions caches description: Repository actions caches type: object @@ -50834,7 +51136,7 @@ paths: - total_count - actions_caches examples: - default: &394 + default: &397 value: total_count: 1 actions_caches: @@ -50866,23 +51168,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: - - *372 - - *373 + - *375 + - *376 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *392 + - *395 responses: '200': description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: *394 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50902,8 +51204,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: - - *372 - - *373 + - *375 + - *376 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50934,9 +51236,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: - - *372 - - *373 - - &395 + - *375 + - *376 + - &398 name: job_id description: The unique identifier of the job. in: path @@ -50948,7 +51250,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &410 title: Job description: Information of a job execution in a workflow run type: object @@ -51255,9 +51557,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: - - *372 - - *373 - - *395 + - *375 + - *376 + - *398 responses: '302': description: Response @@ -51285,9 +51587,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: - - *372 - - *373 - - *395 + - *375 + - *376 + - *398 requestBody: required: false content: @@ -51332,8 +51634,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Status response @@ -51383,8 +51685,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -51447,8 +51749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -51466,7 +51768,7 @@ paths: type: integer secrets: type: array - items: &409 + items: &412 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51486,7 +51788,7 @@ paths: - created_at - updated_at examples: - default: &410 + default: &413 value: total_count: 2 secrets: @@ -51519,9 +51821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *372 - - *373 - - *396 + - *375 + - *376 + - *399 - *19 responses: '200': @@ -51538,7 +51840,7 @@ paths: type: integer variables: type: array - items: &413 + items: &416 title: Actions Variable type: object properties: @@ -51568,7 +51870,7 @@ paths: - created_at - updated_at examples: - default: &414 + default: &417 value: total_count: 2 variables: @@ -51601,8 +51903,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51611,7 +51913,7 @@ paths: schema: type: object properties: - enabled: &397 + enabled: &400 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *48 @@ -51644,8 +51946,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -51656,7 +51958,7 @@ paths: schema: type: object properties: - enabled: *397 + enabled: *400 allowed_actions: *48 required: - enabled @@ -51687,14 +51989,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &398 + schema: &401 type: object properties: access_level: @@ -51712,7 +52014,7 @@ paths: required: - access_level examples: - default: &399 + default: &402 value: access_level: organization x-github: @@ -51737,15 +52039,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 responses: '204': description: Response @@ -51769,8 +52071,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51801,8 +52103,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -51834,8 +52136,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51864,8 +52166,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Success response @@ -51905,8 +52207,8 @@ paths: in: query schema: type: string - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -51950,8 +52252,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -51983,8 +52285,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -52058,8 +52360,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: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -52095,8 +52397,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: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -52126,8 +52428,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': @@ -52157,8 +52459,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '204': @@ -52184,8 +52486,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': *66 @@ -52210,8 +52512,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: - - *372 - - *373 + - *375 + - *376 - *60 requestBody: required: true @@ -52260,8 +52562,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: - - *372 - - *373 + - *375 + - *376 - *60 requestBody: required: true @@ -52311,8 +52613,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: - - *372 - - *373 + - *375 + - *376 - *60 responses: '200': *204 @@ -52342,8 +52644,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: - - *372 - - *373 + - *375 + - *376 - *60 - *205 responses: @@ -52373,9 +52675,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: - - *372 - - *373 - - &417 + - *375 + - *376 + - &420 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. @@ -52383,7 +52685,7 @@ paths: required: false schema: type: string - - &418 + - &421 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52391,7 +52693,7 @@ paths: required: false schema: type: string - - &419 + - &422 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52400,7 +52702,7 @@ paths: required: false schema: type: string - - &420 + - &423 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 @@ -52427,7 +52729,7 @@ paths: - pending - *17 - *19 - - &421 + - &424 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)." @@ -52436,7 +52738,7 @@ paths: schema: type: string format: date-time - - &400 + - &403 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52445,13 +52747,13 @@ paths: schema: type: boolean default: false - - &422 + - &425 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &423 + - &426 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52474,7 +52776,7 @@ paths: type: integer workflow_runs: type: array - items: &401 + items: &404 title: Workflow Run description: An invocation of a workflow type: object @@ -52569,7 +52871,7 @@ paths: that triggered the run. type: array nullable: true - items: &444 + items: &447 title: Pull Request Minimal type: object properties: @@ -52688,7 +52990,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &448 + properties: &451 id: type: string description: SHA for the commit @@ -52739,7 +53041,7 @@ paths: - name - email nullable: true - required: &449 + required: &452 - id - tree_id - message @@ -52786,7 +53088,7 @@ paths: - workflow_url - pull_requests examples: - default: &424 + default: &427 value: total_count: 1 workflow_runs: @@ -53022,24 +53324,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *372 - - *373 - - &402 + - *375 + - *376 + - &405 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *400 + - *403 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: id: 30433642 name: Build @@ -53280,9 +53582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '204': description: Response @@ -53305,9 +53607,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -53426,9 +53728,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '201': description: Response @@ -53461,12 +53763,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 - *17 - *19 - - *403 + - *406 responses: '200': description: Response @@ -53482,9 +53784,9 @@ paths: type: integer artifacts: type: array - items: *389 + items: *392 examples: - default: *404 + default: *407 headers: Link: *39 x-github: @@ -53508,25 +53810,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *372 - - *373 - - *402 - - &406 + - *375 + - *376 + - *405 + - &409 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *400 + - *403 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53549,10 +53851,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: - - *372 - - *373 - - *402 - - *406 + - *375 + - *376 + - *405 + - *409 - *17 - *19 responses: @@ -53570,9 +53872,9 @@ paths: type: integer jobs: type: array - items: *407 + items: *410 examples: - default: &408 + default: &411 value: total_count: 1 jobs: @@ -53685,10 +53987,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *372 - - *373 - - *402 - - *406 + - *375 + - *376 + - *405 + - *409 responses: '302': description: Response @@ -53716,9 +54018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '202': description: Response @@ -53751,9 +54053,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: true content: @@ -53820,9 +54122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '202': description: Response @@ -53855,9 +54157,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 - 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 @@ -53887,9 +54189,9 @@ paths: type: integer jobs: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *39 x-github: @@ -53914,9 +54216,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '302': description: Response @@ -53943,9 +54245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '204': description: Response @@ -53972,9 +54274,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -54034,7 +54336,7 @@ paths: items: type: object properties: - type: &525 + type: &528 type: string description: The type of reviewer. enum: @@ -54119,9 +54421,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: true content: @@ -54168,7 +54470,7 @@ paths: application/json: schema: type: array - items: &520 + items: &523 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54274,7 +54576,7 @@ paths: - created_at - updated_at examples: - default: &521 + default: &524 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54330,9 +54632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: false content: @@ -54376,9 +54678,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: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 requestBody: required: false content: @@ -54432,9 +54734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *372 - - *373 - - *402 + - *375 + - *376 + - *405 responses: '200': description: Response @@ -54571,8 +54873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -54590,9 +54892,9 @@ paths: type: integer secrets: type: array - items: *409 + items: *412 examples: - default: *410 + default: *413 headers: Link: *39 x-github: @@ -54617,16 +54919,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54648,17 +54950,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: &538 + default: &541 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54684,8 +54986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -54743,8 +55045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -54770,9 +55072,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *372 - - *373 - - *396 + - *375 + - *376 + - *399 - *19 responses: '200': @@ -54789,9 +55091,9 @@ paths: type: integer variables: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *39 x-github: @@ -54814,8 +55116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -54867,17 +55169,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: &539 + default: &542 value: name: USERNAME value: octocat @@ -54903,8 +55205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 requestBody: required: true @@ -54947,8 +55249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 responses: '204': @@ -54974,8 +55276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -54993,7 +55295,7 @@ paths: type: integer workflows: type: array - items: &415 + items: &418 title: Workflow description: A GitHub Actions workflow type: object @@ -55100,9 +55402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *372 - - *373 - - &416 + - *375 + - *376 + - &419 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55117,7 +55419,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: default: value: @@ -55150,9 +55452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55177,9 +55479,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55230,9 +55532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '204': description: Response @@ -55259,19 +55561,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: - - *372 - - *373 - - *416 - - *417 - - *418 + - *375 + - *376 - *419 - *420 - - *17 - - *19 - *421 - - *400 - *422 - *423 + - *17 + - *19 + - *424 + - *403 + - *425 + - *426 responses: '200': description: Response @@ -55287,9 +55589,9 @@ paths: type: integer workflow_runs: type: array - items: *401 + items: *404 examples: - default: *424 + default: *427 headers: Link: *39 x-github: @@ -55322,9 +55624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *372 - - *373 - - *416 + - *375 + - *376 + - *419 responses: '200': description: Response @@ -55385,8 +55687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *372 - - *373 + - *375 + - *376 - *86 - *17 - *84 @@ -55550,8 +55852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -55563,7 +55865,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -55588,8 +55890,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: - - *372 - - *373 + - *375 + - *376 - name: assignee in: path required: true @@ -55625,8 +55927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -55738,8 +56040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *84 - *85 @@ -55793,7 +56095,7 @@ paths: bundle_url: type: string examples: - default: *425 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55813,8 +56115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -55822,7 +56124,7 @@ paths: application/json: schema: type: array - items: &426 + items: &429 title: Autolink reference description: An autolink reference. type: object @@ -55872,8 +56174,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -55912,9 +56214,9 @@ paths: description: response content: application/json: - schema: *426 + schema: *429 examples: - default: &427 + default: &430 value: id: 1 key_prefix: TICKET- @@ -55945,9 +56247,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: - - *372 - - *373 - - &428 + - *375 + - *376 + - &431 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55959,9 +56261,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *429 examples: - default: *427 + default: *430 '404': *6 x-github: githubCloudOnly: false @@ -55981,9 +56283,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: - - *372 - - *373 - - *428 + - *375 + - *376 + - *431 responses: '204': description: Response @@ -56007,8 +56309,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response if Dependabot is enabled @@ -56056,8 +56358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -56078,8 +56380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -56099,8 +56401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *372 - - *373 + - *375 + - *376 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56138,7 +56440,7 @@ paths: - url protected: type: boolean - protection: &430 + protection: &433 title: Branch Protection description: Branch Protection type: object @@ -56180,7 +56482,7 @@ paths: required: - contexts - checks - enforce_admins: &433 + enforce_admins: &436 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56195,7 +56497,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &435 + required_pull_request_reviews: &438 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56271,7 +56573,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &432 + restrictions: &435 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56578,9 +56880,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *372 - - *373 - - &431 + - *375 + - *376 + - &434 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). @@ -56594,14 +56896,14 @@ paths: description: Response content: application/json: - schema: &441 + schema: &444 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &493 + commit: &496 title: Commit description: Commit type: object @@ -56635,7 +56937,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &429 + properties: &432 name: type: string example: '"Chris Wanstrath"' @@ -56650,7 +56952,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true message: type: string @@ -56671,7 +56973,7 @@ paths: required: - sha - url - verification: &545 + verification: &548 title: Verification type: object properties: @@ -56741,7 +57043,7 @@ paths: type: integer files: type: array - items: &508 + items: &511 title: Diff Entry description: Diff Entry type: object @@ -56824,7 +57126,7 @@ paths: - self protected: type: boolean - protection: *430 + protection: *433 protection_url: type: string format: uri @@ -56931,7 +57233,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *386 + '301': *389 '404': *6 x-github: githubCloudOnly: false @@ -56953,15 +57255,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *430 + schema: *433 examples: default: value: @@ -57155,9 +57457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -57412,7 +57714,7 @@ paths: url: type: string format: uri - required_status_checks: &438 + required_status_checks: &441 title: Status Check Policy description: Status Check Policy type: object @@ -57564,7 +57866,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *432 + restrictions: *435 required_conversation_resolution: type: object properties: @@ -57676,9 +57978,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -57703,17 +58005,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: &434 + default: &437 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57735,17 +58037,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: *434 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57764,9 +58066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -57791,17 +58093,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: - default: &436 + default: &439 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57897,9 +58199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -57997,9 +58299,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *438 examples: - default: *436 + default: *439 '422': *15 x-github: githubCloudOnly: false @@ -58020,9 +58322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58049,17 +58351,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: &437 + default: &440 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58082,17 +58384,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *433 + schema: *436 examples: - default: *437 + default: *440 '404': *6 x-github: githubCloudOnly: false @@ -58112,9 +58414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58139,17 +58441,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: &439 + default: &442 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58175,9 +58477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58229,9 +58531,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: *439 + default: *442 '404': *6 '422': *15 x-github: @@ -58253,9 +58555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58279,9 +58581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58315,9 +58617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58384,9 +58686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58450,9 +58752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: content: application/json: @@ -58518,15 +58820,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response content: application/json: - schema: *432 + schema: *435 examples: default: value: @@ -58617,9 +58919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '204': description: Response @@ -58642,9 +58944,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58654,7 +58956,7 @@ paths: type: array items: *5 examples: - default: &440 + default: &443 value: - id: 1 slug: octoapp @@ -58711,9 +59013,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58747,7 +59049,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58768,9 +59070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58804,7 +59106,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58825,9 +59127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -58861,7 +59163,7 @@ paths: type: array items: *5 examples: - default: *440 + default: *443 '422': *15 x-github: githubCloudOnly: false @@ -58883,9 +59185,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -58895,7 +59197,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '404': *6 x-github: githubCloudOnly: false @@ -58915,9 +59217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -58955,7 +59257,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -58976,9 +59278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: false content: @@ -59016,7 +59318,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -59037,9 +59339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: content: application/json: @@ -59076,7 +59378,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 '422': *15 x-github: githubCloudOnly: false @@ -59098,9 +59400,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: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 responses: '200': description: Response @@ -59110,7 +59412,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -59134,9 +59436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59169,7 +59471,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59194,9 +59496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59229,7 +59531,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59254,9 +59556,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59289,7 +59591,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '422': *15 x-github: githubCloudOnly: false @@ -59316,9 +59618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 requestBody: required: true content: @@ -59340,7 +59642,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *444 examples: default: value: @@ -59454,8 +59756,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *372 - - *373 + - *375 + - *376 - *220 - *221 - *222 @@ -59491,8 +59793,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59565,8 +59867,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - *220 - *221 - *222 @@ -59580,9 +59882,9 @@ paths: application/json: schema: type: array - items: *442 + items: *445 examples: - default: *443 + default: *446 '404': *6 '403': *29 '500': *99 @@ -59606,8 +59908,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59619,7 +59921,7 @@ paths: description: A single bypass request. content: application/json: - schema: *442 + schema: *445 examples: default: value: @@ -59677,8 +59979,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_request_number in: path required: true @@ -59749,8 +60051,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *372 - - *373 + - *375 + - *376 - name: bypass_response_id in: path required: true @@ -59783,8 +60085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -60063,7 +60365,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &448 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60182,8 +60484,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *444 - deployment: &759 + items: *447 + deployment: &762 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60463,9 +60765,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *372 - - *373 - - &446 + - *375 + - *376 + - &449 name: check_run_id description: The unique identifier of the check run. in: path @@ -60477,9 +60779,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: &447 + default: &450 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60579,9 +60881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 requestBody: required: true content: @@ -60821,9 +61123,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *447 + default: *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60843,9 +61145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 - *17 - *19 responses: @@ -60942,9 +61244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *372 - - *373 - - *446 + - *375 + - *376 + - *449 responses: '201': description: Response @@ -60988,8 +61290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -61011,7 +61313,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &450 + schema: &453 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61075,7 +61377,7 @@ paths: nullable: true pull_requests: type: array - items: *444 + items: *447 nullable: true app: title: GitHub app @@ -61097,12 +61399,12 @@ paths: type: string format: date-time nullable: true - head_commit: &785 + head_commit: &788 title: Simple Commit description: A commit. type: object - properties: *448 - required: *449 + properties: *451 + required: *452 latest_check_runs_count: type: integer check_runs_url: @@ -61130,7 +61432,7 @@ paths: - check_runs_url - pull_requests examples: - default: &451 + default: &454 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61421,9 +61723,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61442,8 +61744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -61752,9 +62054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *372 - - *373 - - &452 + - *375 + - *376 + - &455 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61766,9 +62068,9 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61791,17 +62093,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: - - *372 - - *373 - - *452 - - &501 + - *375 + - *376 + - *455 + - &504 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &502 + - &505 name: status description: Returns check runs with the specified `status`. in: query @@ -61840,9 +62142,9 @@ paths: type: integer check_runs: type: array - items: *445 + items: *448 examples: - default: &503 + default: &506 value: total_count: 1 check_runs: @@ -61944,9 +62246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *372 - - *373 - - *452 + - *375 + - *376 + - *455 responses: '201': description: Response @@ -61979,21 +62281,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: - - *372 - - *373 + - *375 + - *376 - *228 - *229 - *19 - *17 - - &468 + - &471 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: *453 - - &469 + schema: *456 + - &472 name: pr description: The number of the pull request for the results you want to list. in: query @@ -62024,7 +62326,7 @@ paths: be returned. in: query required: false - schema: *454 + schema: *457 responses: '200': description: Response @@ -62040,7 +62342,7 @@ paths: updated_at: *108 url: *105 html_url: *106 - instances_url: *455 + instances_url: *458 state: *89 fixed_at: *110 dismissed_by: @@ -62051,11 +62353,11 @@ paths: required: *21 nullable: true dismissed_at: *109 - dismissed_reason: *456 - dismissed_comment: *457 - rule: *458 - tool: *459 - most_recent_instance: *460 + dismissed_reason: *459 + dismissed_comment: *460 + rule: *461 + tool: *462 + most_recent_instance: *463 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62178,7 +62480,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &461 + '403': &464 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62205,9 +62507,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: - - *372 - - *373 - - &462 + - *375 + - *376 + - &465 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62221,7 +62523,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &466 type: object properties: number: *100 @@ -62229,7 +62531,7 @@ paths: updated_at: *108 url: *105 html_url: *106 - instances_url: *455 + instances_url: *458 state: *89 fixed_at: *110 dismissed_by: @@ -62240,8 +62542,8 @@ paths: required: *21 nullable: true dismissed_at: *109 - dismissed_reason: *456 - dismissed_comment: *457 + dismissed_reason: *459 + dismissed_comment: *460 rule: type: object properties: @@ -62295,8 +62597,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *459 - most_recent_instance: *460 + tool: *462 + most_recent_instance: *463 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62392,7 +62694,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62412,9 +62714,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: true content: @@ -62429,8 +62731,8 @@ paths: enum: - open - dismissed - dismissed_reason: *456 - dismissed_comment: *457 + dismissed_reason: *459 + dismissed_comment: *460 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62449,7 +62751,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -62525,7 +62827,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &467 + '403': &470 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62552,15 +62854,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 type: object properties: status: @@ -62586,13 +62888,13 @@ paths: - description - started_at examples: - default: &465 + default: &468 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &466 + '400': &469 description: Bad Request content: application/json: @@ -62603,7 +62905,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': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62628,29 +62930,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: OK content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '202': description: Accepted content: application/json: - schema: *464 + schema: *467 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *466 + '400': *469 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62682,9 +62984,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: false content: @@ -62729,8 +63031,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *466 - '403': *467 + '400': *469 + '403': *470 '404': *6 '422': description: Unprocessable Entity @@ -62754,13 +63056,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 - *19 - *17 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -62768,7 +63070,7 @@ paths: application/json: schema: type: array - items: *460 + items: *463 examples: default: value: @@ -62807,7 +63109,7 @@ paths: end_column: 50 classifications: - source - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -62841,25 +63143,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: - - *372 - - *373 + - *375 + - *376 - *228 - *229 - *19 - *17 - - *469 + - *472 - 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: *453 + schema: *456 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &472 + schema: &475 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -62880,23 +63182,23 @@ paths: application/json: schema: type: array - items: &473 + items: &476 type: object properties: - ref: *453 - commit_sha: &481 + ref: *456 + commit_sha: &484 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: *470 + analysis_key: *473 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *471 + category: *474 error: type: string example: error reading field xyz @@ -62920,8 +63222,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *472 - tool: *459 + sarif_id: *475 + tool: *462 deletable: type: boolean warning: @@ -62982,7 +63284,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63018,8 +63320,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: - - *372 - - *373 + - *375 + - *376 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63032,7 +63334,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: response: summary: application/json response @@ -63086,7 +63388,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63168,8 +63470,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: - - *372 - - *373 + - *375 + - *376 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63222,7 +63524,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': *467 + '403': *470 '404': *6 '503': *132 x-github: @@ -63244,8 +63546,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -63253,7 +63555,7 @@ paths: application/json: schema: type: array - items: &474 + items: &477 title: CodeQL Database description: A CodeQL database. type: object @@ -63364,7 +63666,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': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63393,8 +63695,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: - - *372 - - *373 + - *375 + - *376 - name: language in: path description: The language of the CodeQL database. @@ -63406,7 +63708,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: default: value: @@ -63438,9 +63740,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': &510 + '302': &513 description: Found - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -63462,8 +63764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *372 - - *373 + - *375 + - *376 - name: language in: path description: The language of the CodeQL database. @@ -63473,7 +63775,7 @@ paths: responses: '204': description: Response - '403': *467 + '403': *470 '404': *6 '503': *132 x-github: @@ -63501,8 +63803,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -63511,7 +63813,7 @@ paths: type: object additionalProperties: false properties: - language: &475 + language: &478 type: string description: The language targeted by the CodeQL query enum: @@ -63589,7 +63891,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &479 + schema: &482 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63599,7 +63901,7 @@ paths: description: The ID of the variant analysis. controller_repo: *96 actor: *4 - query_language: *475 + query_language: *478 query_pack_url: type: string description: The download url for the query pack. @@ -63646,7 +63948,7 @@ paths: items: type: object properties: - repository: &476 + repository: &479 title: Repository Identifier description: Repository Identifier type: object @@ -63682,7 +63984,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &480 + analysis_status: &483 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63714,7 +64016,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &477 + access_mismatch_repos: &480 type: object properties: repository_count: @@ -63728,7 +64030,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *476 + items: *479 required: - repository_count - repositories @@ -63750,8 +64052,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *477 - over_limit_repos: *477 + no_codeql_db_repos: *480 + over_limit_repos: *480 required: - access_mismatch_repos - not_found_repos @@ -63767,7 +64069,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &478 + value: &481 summary: Default response value: id: 1 @@ -63919,10 +64221,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *478 + value: *481 repository_lists: summary: Response for a successful variant analysis submission - value: *478 + value: *481 '404': *6 '422': description: Unable to process variant analysis submission @@ -63950,8 +64252,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: - - *372 - - *373 + - *375 + - *376 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63963,9 +64265,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *482 examples: - default: *478 + default: *481 '404': *6 '503': *132 x-github: @@ -63988,7 +64290,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: - - *372 + - *375 - name: repo in: path description: The name of the controller repository. @@ -64023,7 +64325,7 @@ paths: type: object properties: repository: *96 - analysis_status: *480 + analysis_status: *483 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64148,8 +64450,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64223,7 +64525,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *461 + '403': *464 '404': *6 '503': *132 x-github: @@ -64244,8 +64546,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -64327,7 +64629,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *467 + '403': *470 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64392,8 +64694,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -64401,7 +64703,7 @@ paths: schema: type: object properties: - commit_sha: *481 + commit_sha: *484 ref: type: string description: |- @@ -64459,7 +64761,7 @@ paths: schema: type: object properties: - id: *472 + id: *475 url: type: string description: The REST API URL for checking the status of the upload. @@ -64473,7 +64775,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': *467 + '403': *470 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64496,8 +64798,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: - - *372 - - *373 + - *375 + - *376 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64543,7 +64845,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': *461 + '403': *464 '404': description: Not Found if the sarif id does not match any upload '503': *132 @@ -64568,8 +64870,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64650,8 +64952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *372 - - *373 + - *375 + - *376 - 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 @@ -64771,8 +65073,8 @@ paths: parameters: - *17 - *19 - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -64788,7 +65090,7 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: default: value: @@ -65086,8 +65388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -65150,17 +65452,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '400': *14 '401': *25 '403': *29 @@ -65189,8 +65491,8 @@ paths: parameters: - *17 - *19 - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -65254,8 +65556,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: - - *372 - - *373 + - *375 + - *376 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65290,14 +65592,14 @@ paths: type: integer machines: type: array - items: &715 + items: &718 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *486 + required: *487 examples: - default: &716 + default: &719 value: total_count: 2 machines: @@ -65337,8 +65639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *372 - - *373 + - *375 + - *376 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65422,8 +65724,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: - - *372 - - *373 + - *375 + - *376 - 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 @@ -65489,8 +65791,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -65508,7 +65810,7 @@ paths: type: integer secrets: type: array - items: &488 + items: &491 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65528,7 +65830,7 @@ paths: - created_at - updated_at examples: - default: *485 + default: *488 headers: Link: *39 x-github: @@ -65551,16 +65853,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *486 + schema: *489 examples: - default: *487 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65580,17 +65882,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65610,8 +65912,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: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -65664,8 +65966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -65694,8 +65996,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *372 - - *373 + - *375 + - *376 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65737,7 +66039,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &490 + properties: &493 login: type: string example: octocat @@ -65830,7 +66132,7 @@ paths: user_view_type: type: string example: public - required: &491 + required: &494 - avatar_url - events_url - followers_url @@ -65904,8 +66206,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: - - *372 - - *373 + - *375 + - *376 - *219 responses: '204': @@ -65948,8 +66250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *372 - - *373 + - *375 + - *376 - *219 requestBody: required: false @@ -65976,7 +66278,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &558 + schema: &561 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66198,8 +66500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *372 - - *373 + - *375 + - *376 - *219 responses: '204': @@ -66229,8 +66531,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *372 - - *373 + - *375 + - *376 - *219 responses: '200': @@ -66251,8 +66553,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *490 - required: *491 + properties: *493 + required: *494 nullable: true required: - permission @@ -66307,8 +66609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -66318,7 +66620,7 @@ paths: application/json: schema: type: array - items: &492 + items: &495 title: Commit Comment description: Commit Comment type: object @@ -66376,7 +66678,7 @@ paths: - created_at - updated_at examples: - default: &495 + default: &498 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66435,17 +66737,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *492 + schema: *495 examples: - default: &496 + default: &499 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66502,8 +66804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -66526,7 +66828,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -66577,8 +66879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -66600,8 +66902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -66628,9 +66930,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -66651,8 +66953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -66685,16 +66987,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -66716,10 +67018,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -66768,8 +67070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *372 - - *373 + - *375 + - *376 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66825,9 +67127,9 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: &609 + default: &612 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66921,9 +67223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *372 - - *373 - - &494 + - *375 + - *376 + - &497 name: commit_sha description: The SHA of the commit. in: path @@ -66995,9 +67297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 - *17 - *19 responses: @@ -67007,9 +67309,9 @@ paths: application/json: schema: type: array - items: *492 + items: *495 examples: - default: *495 + default: *498 headers: Link: *39 x-github: @@ -67037,9 +67339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 requestBody: required: true content: @@ -67074,9 +67376,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: - default: *496 + default: *499 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67104,9 +67406,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: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 - *17 - *19 responses: @@ -67116,7 +67418,7 @@ paths: application/json: schema: type: array - items: &600 + items: &603 title: Pull Request Simple description: Pull Request Simple type: object @@ -67222,8 +67524,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true active_lock_reason: type: string @@ -67319,7 +67621,7 @@ paths: _links: type: object properties: - comments: &499 + comments: &502 title: Link description: Hypermedia Link type: object @@ -67328,13 +67630,13 @@ paths: type: string required: - href - commits: *499 - statuses: *499 - html: *499 - issue: *499 - review_comments: *499 - review_comment: *499 - self: *499 + commits: *502 + statuses: *502 + html: *502 + issue: *502 + review_comments: *502 + review_comment: *502 + self: *502 required: - comments - commits @@ -67345,7 +67647,7 @@ paths: - review_comment - self author_association: *141 - auto_merge: &602 + auto_merge: &605 title: Auto merge description: The status of auto merging a pull request. type: object @@ -67408,7 +67710,7 @@ paths: - author_association - auto_merge examples: - default: &601 + default: &604 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67945,11 +68247,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 - - &500 + - &503 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)" @@ -67964,9 +68266,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: - default: &587 + default: &590 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68079,11 +68381,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: - - *372 - - *373 - - *500 - - *501 - - *502 + - *375 + - *376 + - *503 + - *504 + - *505 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68117,9 +68419,9 @@ paths: type: integer check_runs: type: array - items: *445 + items: *448 examples: - default: *503 + default: *506 headers: Link: *39 x-github: @@ -68144,9 +68446,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: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68154,7 +68456,7 @@ paths: schema: type: integer example: 1 - - *501 + - *504 - *17 - *19 responses: @@ -68172,7 +68474,7 @@ paths: type: integer check_suites: type: array - items: *450 + items: *453 examples: default: value: @@ -68372,9 +68674,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: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - *17 - *19 responses: @@ -68572,9 +68874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *372 - - *373 - - *500 + - *375 + - *376 + - *503 - *17 - *19 responses: @@ -68584,7 +68886,7 @@ paths: application/json: schema: type: array - items: &663 + items: &666 title: Status description: The status of a commit. type: object @@ -68665,7 +68967,7 @@ paths: site_admin: false headers: Link: *39 - '301': *386 + '301': *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68693,8 +68995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -68723,20 +69025,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *504 - required: *505 + properties: *507 + required: *508 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &506 + properties: &509 url: type: string format: uri html_url: type: string format: uri - required: &507 + required: &510 - url - html_url nullable: true @@ -68750,26 +69052,26 @@ paths: contributing: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true readme: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true issue_template: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true pull_request_template: title: Community Health File type: object - properties: *506 - required: *507 + properties: *509 + required: *510 nullable: true required: - code_of_conduct @@ -68896,8 +69198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 - name: basehead @@ -68940,8 +69242,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *493 - merge_base_commit: *493 + base_commit: *496 + merge_base_commit: *496 status: type: string enum: @@ -68961,10 +69263,10 @@ paths: example: 6 commits: type: array - items: *493 + items: *496 files: type: array - items: *508 + items: *511 required: - url - html_url @@ -69250,8 +69552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -69392,7 +69694,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &509 + response-if-content-is-a-file: &512 summary: Response if content is a file value: type: file @@ -69524,7 +69826,7 @@ paths: - size - type - url - - &614 + - &617 title: Content File description: Content File type: object @@ -69725,7 +70027,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *509 + response-if-content-is-a-file: *512 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69794,7 +70096,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *510 + '302': *513 '304': *37 x-github: githubCloudOnly: false @@ -69817,8 +70119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -69911,7 +70213,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &514 title: File Commit description: File Commit type: object @@ -70063,7 +70365,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *514 examples: example-for-creating-a-file: value: @@ -70117,7 +70419,7 @@ paths: schema: oneOf: - *3 - - &540 + - &543 description: Repository rule violation was detected type: object properties: @@ -70138,7 +70440,7 @@ paths: items: type: object properties: - placeholder_id: &655 + placeholder_id: &658 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70170,8 +70472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *372 - - *373 + - *375 + - *376 - name: path description: path parameter in: path @@ -70232,7 +70534,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *514 examples: default: value: @@ -70287,8 +70589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *372 - - *373 + - *375 + - *376 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70411,8 +70713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *247 - *248 - *249 @@ -70454,7 +70756,7 @@ paths: application/json: schema: type: array - items: &514 + items: &517 type: object description: A Dependabot alert. properties: @@ -70500,7 +70802,7 @@ paths: - unknown - direct - transitive - security_advisory: *512 + security_advisory: *515 security_vulnerability: *104 url: *105 html_url: *106 @@ -70531,7 +70833,7 @@ paths: nullable: true maxLength: 280 fixed_at: *110 - auto_dismissed_at: *513 + auto_dismissed_at: *516 required: - number - state @@ -70761,9 +71063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *372 - - *373 - - &515 + - *375 + - *376 + - &518 name: alert_number in: path description: |- @@ -70778,7 +71080,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -70891,9 +71193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *372 - - *373 - - *515 + - *375 + - *376 + - *518 requestBody: required: true content: @@ -70938,7 +71240,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -71067,8 +71369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -71086,7 +71388,7 @@ paths: type: integer secrets: type: array - items: &518 + items: &521 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71139,16 +71441,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71168,15 +71470,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '200': description: Response content: application/json: - schema: *518 + schema: *521 examples: default: value: @@ -71202,8 +71504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 requestBody: required: true @@ -71256,8 +71558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *372 - - *373 + - *375 + - *376 - *207 responses: '204': @@ -71280,8 +71582,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: - - *372 - - *373 + - *375 + - *376 - 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 @@ -71441,8 +71743,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -71681,8 +71983,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -71757,7 +72059,7 @@ paths: - version - url additionalProperties: false - metadata: &519 + metadata: &522 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71790,7 +72092,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *519 + metadata: *522 resolved: type: object description: A collection of resolved package dependencies. @@ -71803,7 +72105,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *519 + metadata: *522 relationship: type: string description: A notation of whether a dependency is requested @@ -71932,8 +72234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *372 - - *373 + - *375 + - *376 - name: sha description: The SHA recorded at creation time. in: query @@ -71973,9 +72275,9 @@ paths: application/json: schema: type: array - items: *520 + items: *523 examples: - default: *521 + default: *524 headers: Link: *39 x-github: @@ -72041,8 +72343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -72123,7 +72425,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *523 examples: simple-example: summary: Simple example @@ -72196,9 +72498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *372 - - *373 - - &522 + - *375 + - *376 + - &525 name: deployment_id description: deployment_id parameter in: path @@ -72210,7 +72512,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *523 examples: default: value: @@ -72275,9 +72577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 responses: '204': description: Response @@ -72299,9 +72601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 - *17 - *19 responses: @@ -72311,7 +72613,7 @@ paths: application/json: schema: type: array - items: &523 + items: &526 title: Deployment Status description: The status of a deployment. type: object @@ -72472,9 +72774,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 requestBody: required: true content: @@ -72549,9 +72851,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &524 + default: &527 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72607,9 +72909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *372 - - *373 - - *522 + - *375 + - *376 + - *525 - name: status_id in: path required: true @@ -72620,9 +72922,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *524 + default: *527 '404': *6 x-github: githubCloudOnly: false @@ -72647,8 +72949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -72705,8 +73007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -72723,7 +73025,7 @@ paths: type: integer environments: type: array - items: &526 + items: &529 title: Environment description: Details of a deployment environment type: object @@ -72775,7 +73077,7 @@ paths: type: type: string example: wait_timer - wait_timer: &528 + wait_timer: &531 type: integer example: 30 description: The amount of time to delay a job after @@ -72812,7 +73114,7 @@ paths: items: type: object properties: - type: *525 + type: *528 reviewer: anyOf: - *4 @@ -72836,7 +73138,7 @@ paths: - id - node_id - type - deployment_branch_policy: &529 + deployment_branch_policy: &532 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72952,9 +73254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *372 - - *373 - - &527 + - *375 + - *376 + - &530 name: environment_name in: path required: true @@ -72967,9 +73269,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: - default: &530 + default: &533 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73053,9 +73355,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: false content: @@ -73064,7 +73366,7 @@ paths: type: object nullable: true properties: - wait_timer: *528 + wait_timer: *531 prevent_self_review: type: boolean example: false @@ -73081,13 +73383,13 @@ paths: items: type: object properties: - type: *525 + type: *528 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *529 + deployment_branch_policy: *532 additionalProperties: false examples: default: @@ -73107,9 +73409,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: - default: *530 + default: *533 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73133,9 +73435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 responses: '204': description: Default response @@ -73160,9 +73462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *17 - *19 responses: @@ -73180,7 +73482,7 @@ paths: example: 2 branch_policies: type: array - items: &531 + items: &534 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73237,9 +73539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: true content: @@ -73285,9 +73587,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - example-wildcard: &532 + example-wildcard: &535 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73329,10 +73631,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - &533 + - *375 + - *376 + - *530 + - &536 name: branch_policy_id in: path required: true @@ -73344,9 +73646,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73365,10 +73667,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - *533 + - *375 + - *376 + - *530 + - *536 requestBody: required: true content: @@ -73396,9 +73698,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73417,10 +73719,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *372 - - *373 - - *527 - - *533 + - *375 + - *376 + - *530 + - *536 responses: '204': description: Response @@ -73445,9 +73747,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 responses: '200': description: List of deployment protection rules @@ -73463,7 +73765,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &534 + items: &537 title: Deployment protection rule description: Deployment protection rule type: object @@ -73482,7 +73784,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &535 + app: &538 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73581,9 +73883,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 requestBody: content: application/json: @@ -73604,9 +73906,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *534 + schema: *537 examples: - default: &536 + default: &539 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73641,9 +73943,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: - - *527 - - *373 - - *372 + - *530 + - *376 + - *375 - *19 - *17 responses: @@ -73662,7 +73964,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *535 + items: *538 examples: default: value: @@ -73697,10 +73999,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: - - *372 - - *373 - - *527 - - &537 + - *375 + - *376 + - *530 + - &540 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73712,9 +74014,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *537 examples: - default: *536 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73735,10 +74037,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: - - *527 - - *373 - - *372 - - *537 + - *530 + - *376 + - *375 + - *540 responses: '204': description: Response @@ -73764,9 +74066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *17 - *19 responses: @@ -73784,9 +74086,9 @@ paths: type: integer secrets: type: array - items: *409 + items: *412 examples: - default: *410 + default: *413 headers: Link: *39 x-github: @@ -73811,17 +74113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 responses: '200': description: Response content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73843,18 +74145,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 responses: '200': description: Response content: application/json: - schema: *409 + schema: *412 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73876,9 +74178,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 requestBody: required: true @@ -73936,9 +74238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *207 responses: '204': @@ -73964,10 +74266,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *372 - - *373 - - *527 - - *396 + - *375 + - *376 + - *530 + - *399 - *19 responses: '200': @@ -73984,9 +74286,9 @@ paths: type: integer variables: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *39 x-github: @@ -74009,9 +74311,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 requestBody: required: true content: @@ -74063,18 +74365,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *372 - - *373 - - *527 + - *375 + - *376 + - *530 - *210 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *539 + default: *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74095,10 +74397,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 - - *527 + - *530 requestBody: required: true content: @@ -74140,10 +74442,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *372 - - *373 + - *375 + - *376 - *210 - - *527 + - *530 responses: '204': description: Response @@ -74165,8 +74467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -74243,8 +74545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *372 - - *373 + - *375 + - *376 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74403,8 +74705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -74436,9 +74738,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 '400': *14 '422': *15 '403': *29 @@ -74459,8 +74761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -74520,7 +74822,7 @@ paths: schema: oneOf: - *180 - - *540 + - *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74545,8 +74847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *372 - - *373 + - *375 + - *376 - name: file_sha in: path required: true @@ -74645,8 +74947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -74755,7 +75057,7 @@ paths: description: Response content: application/json: - schema: &541 + schema: &544 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74969,15 +75271,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *372 - - *373 - - *494 + - *375 + - *376 + - *497 responses: '200': description: Response content: application/json: - schema: *541 + schema: *544 examples: default: value: @@ -75033,9 +75335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *372 - - *373 - - &542 + - *375 + - *376 + - &545 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -75052,7 +75354,7 @@ paths: application/json: schema: type: array - items: &543 + items: &546 title: Git Reference description: Git references within a repository type: object @@ -75127,17 +75429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 responses: '200': description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: &544 + default: &547 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75166,8 +75468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75196,9 +75498,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: *544 + default: *547 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75224,9 +75526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 requestBody: required: true content: @@ -75255,9 +75557,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: - default: *544 + default: *547 '422': *15 '409': *94 x-github: @@ -75275,9 +75577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *372 - - *373 - - *542 + - *375 + - *376 + - *545 responses: '204': description: Response @@ -75330,8 +75632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75398,7 +75700,7 @@ paths: description: Response content: application/json: - schema: &546 + schema: &549 title: Git Tag description: Metadata for a Git tag type: object @@ -75449,7 +75751,7 @@ paths: - sha - type - url - verification: *545 + verification: *548 required: - sha - url @@ -75459,7 +75761,7 @@ paths: - tag - message examples: - default: &547 + default: &550 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75532,8 +75834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *372 - - *373 + - *375 + - *376 - name: tag_sha in: path required: true @@ -75544,9 +75846,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *547 + default: *550 '404': *6 '409': *94 x-github: @@ -75570,8 +75872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -75644,7 +75946,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &551 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75756,8 +76058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *372 - - *373 + - *375 + - *376 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75780,7 +76082,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: default-response: summary: Default response @@ -75839,8 +76141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -75850,7 +76152,7 @@ paths: application/json: schema: type: array - items: &549 + items: &552 title: Webhook description: Webhooks for repositories. type: object @@ -75904,7 +76206,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &793 + last_response: &796 title: Hook Response type: object properties: @@ -75978,8 +76280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -76031,9 +76333,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: &550 + default: &553 value: type: Repository id: 12345678 @@ -76081,17 +76383,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '200': description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *550 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -76111,8 +76413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 requestBody: required: true @@ -76158,9 +76460,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *550 + default: *553 '422': *15 '404': *6 x-github: @@ -76181,8 +76483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76207,8 +76509,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: - - *372 - - *373 + - *375 + - *376 - *263 responses: '200': @@ -76236,8 +76538,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: - - *372 - - *373 + - *375 + - *376 - *263 requestBody: required: false @@ -76282,8 +76584,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 - *17 - *264 @@ -76315,8 +76617,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: - - *372 - - *373 + - *375 + - *376 - *263 - *16 responses: @@ -76345,8 +76647,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: - - *372 - - *373 + - *375 + - *376 - *263 - *16 responses: @@ -76370,8 +76672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76397,8 +76699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *372 - - *373 + - *375 + - *376 - *263 responses: '204': @@ -76457,14 +76759,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &551 + schema: &554 title: Import description: A repository import from an external source. type: object @@ -76563,7 +76865,7 @@ paths: - html_url - authors_url examples: - default: &554 + default: &557 value: vcs: subversion use_lfs: true @@ -76579,7 +76881,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &552 + '503': &555 description: Unavailable due to service under maintenance. content: application/json: @@ -76608,8 +76910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -76657,7 +76959,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: default: value: @@ -76682,7 +76984,7 @@ paths: type: string '422': *15 '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76710,8 +77012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -76760,7 +77062,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: example-1: summary: Example 1 @@ -76808,7 +77110,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76831,12 +77133,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76862,9 +77164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *372 - - *373 - - &739 + - *375 + - *376 + - &742 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76878,7 +77180,7 @@ paths: application/json: schema: type: array - items: &553 + items: &556 title: Porter Author description: Porter Author type: object @@ -76932,7 +77234,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76957,8 +77259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *372 - - *373 + - *375 + - *376 - name: author_id in: path required: true @@ -76988,7 +77290,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: default: value: @@ -77001,7 +77303,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77025,8 +77327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77067,7 +77369,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77095,8 +77397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -77123,11 +77425,11 @@ paths: description: Response content: application/json: - schema: *551 + schema: *554 examples: - default: *554 + default: *557 '422': *15 - '503': *552 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77150,8 +77452,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77159,8 +77461,8 @@ paths: application/json: schema: *22 examples: - default: *555 - '301': *386 + default: *558 + '301': *389 '404': *6 x-github: githubCloudOnly: false @@ -77180,8 +77482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -77194,7 +77496,7 @@ paths: properties: {} additionalProperties: false examples: - default: &557 + default: &560 value: limit: collaborators_only origin: repository @@ -77219,13 +77521,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: application/json: - schema: *556 + schema: *559 examples: default: summary: Example request body @@ -77239,7 +77541,7 @@ paths: application/json: schema: *281 examples: - default: *557 + default: *560 '409': description: Response x-github: @@ -77261,8 +77563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -77285,8 +77587,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -77296,9 +77598,9 @@ paths: application/json: schema: type: array - items: *558 + items: *561 examples: - default: &732 + default: &735 value: - id: 1 repository: @@ -77429,8 +77731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *372 - - *373 + - *375 + - *376 - *285 requestBody: required: false @@ -77460,7 +77762,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: default: value: @@ -77591,8 +77893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *372 - - *373 + - *375 + - *376 - *285 responses: '204': @@ -77624,8 +77926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *372 - - *373 + - *375 + - *376 - 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 @@ -77653,6 +77955,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 @@ -77665,7 +77975,7 @@ paths: required: false schema: type: string - - *287 + - *290 - name: sort description: What to sort results by. in: query @@ -77690,7 +78000,7 @@ paths: type: array items: *154 examples: - default: &569 + default: &572 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77838,7 +78148,7 @@ paths: state_reason: completed headers: Link: *39 - '301': *386 + '301': *389 '422': *15 '404': *6 x-github: @@ -77867,8 +78177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -77926,6 +78236,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -77945,7 +78260,7 @@ paths: application/json: schema: *154 examples: - default: &564 + default: &567 value: id: 1 node_id: MDU6SXNzdWUx @@ -78101,7 +78416,7 @@ paths: '422': *15 '503': *132 '404': *6 - '410': *383 + '410': *386 x-github: triggersNotification: true githubCloudOnly: false @@ -78129,8 +78444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *164 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78151,9 +78466,9 @@ paths: application/json: schema: type: array - items: *559 + items: *562 examples: - default: &566 + default: &569 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78211,17 +78526,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: &560 + default: &563 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78275,8 +78590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -78299,9 +78614,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: *560 + default: *563 '422': *15 x-github: githubCloudOnly: false @@ -78319,8 +78634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -78341,8 +78656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -78369,9 +78684,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -78392,8 +78707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -78426,16 +78741,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -78457,10 +78772,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -78480,8 +78795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -78491,7 +78806,7 @@ paths: application/json: schema: type: array - items: &563 + items: &566 title: Issue Event description: Issue Event type: object @@ -78534,8 +78849,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *561 - required: *562 + properties: *564 + required: *565 nullable: true label: title: Issue Event Label @@ -78842,8 +79157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *372 - - *373 + - *375 + - *376 - name: event_id in: path required: true @@ -78854,7 +79169,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: default: value: @@ -79047,7 +79362,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *383 + '410': *386 '403': *29 x-github: githubCloudOnly: false @@ -79081,9 +79396,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *372 - - *373 - - &565 + - *375 + - *376 + - &568 name: issue_number description: The number that identifies the issue. in: path @@ -79097,10 +79412,10 @@ paths: application/json: schema: *154 examples: - default: *564 - '301': *386 + default: *567 + '301': *389 '404': *6 - '410': *383 + '410': *386 '304': *37 x-github: githubCloudOnly: false @@ -79125,9 +79440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -79206,6 +79521,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -79224,13 +79545,13 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 '422': *15 '503': *132 '403': *29 - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79248,9 +79569,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -79278,7 +79599,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79294,9 +79615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: content: application/json: @@ -79323,7 +79644,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79345,9 +79666,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: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - name: assignee in: path required: true @@ -79387,9 +79708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *144 - *17 - *19 @@ -79400,13 +79721,13 @@ paths: application/json: schema: type: array - items: *559 + items: *562 examples: - default: *566 + default: *569 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79435,9 +79756,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -79459,16 +79780,16 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: - default: *560 + default: *563 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *383 + '410': *386 '422': *15 '404': *6 x-github: @@ -79488,9 +79809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -79504,7 +79825,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &570 + - &573 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79558,7 +79879,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &574 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79694,7 +80015,7 @@ paths: - performed_via_github_app - assignee - assigner - - &572 + - &575 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79745,7 +80066,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &576 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79796,7 +80117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &577 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79850,7 +80171,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &578 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79897,7 +80218,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &579 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79944,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &580 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80004,7 +80325,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &581 title: Locked Issue Event description: Locked Issue Event type: object @@ -80052,7 +80373,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &582 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80118,7 +80439,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &583 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80184,7 +80505,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &584 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80250,7 +80571,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &585 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80341,7 +80662,7 @@ paths: color: red headers: Link: *39 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80358,9 +80679,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -80370,7 +80691,7 @@ paths: application/json: schema: type: array - items: &567 + items: &570 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80417,7 +80738,7 @@ paths: - color - default examples: - default: &568 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80435,9 +80756,9 @@ paths: default: false headers: Link: *39 - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80454,9 +80775,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80515,12 +80836,12 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 - '301': *386 + default: *571 + '301': *389 '404': *6 - '410': *383 + '410': *386 '422': *15 x-github: githubCloudOnly: false @@ -80537,9 +80858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80599,12 +80920,12 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 - '301': *386 + default: *571 + '301': *389 '404': *6 - '410': *383 + '410': *386 '422': *15 x-github: githubCloudOnly: false @@ -80621,15 +80942,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 responses: '204': description: Response - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80648,9 +80969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - name: name in: path required: true @@ -80663,7 +80984,7 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: default: value: @@ -80674,9 +80995,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *386 + '301': *389 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80696,9 +81017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: false content: @@ -80726,7 +81047,7 @@ paths: '204': description: Response '403': *29 - '410': *383 + '410': *386 '404': *6 '422': *15 x-github: @@ -80744,9 +81065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 responses: '204': description: Response @@ -80768,9 +81089,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - 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. @@ -80796,13 +81117,13 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80820,9 +81141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -80854,16 +81175,16 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -80885,10 +81206,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *372 - - *373 - - *565 - - *364 + - *375 + - *376 + - *568 + - *367 responses: '204': description: Response @@ -80917,9 +81238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -80943,7 +81264,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -80976,9 +81297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -80990,11 +81311,11 @@ paths: type: array items: *154 examples: - default: *569 + default: *572 headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81022,9 +81343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -81053,14 +81374,14 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *383 + '410': *386 '422': *15 '404': *6 x-github: @@ -81080,9 +81401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 requestBody: required: true content: @@ -81115,7 +81436,7 @@ paths: application/json: schema: *154 examples: - default: *564 + default: *567 '403': *29 '404': *6 '422': *7 @@ -81137,9 +81458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *372 - - *373 - - *565 + - *375 + - *376 + - *568 - *17 - *19 responses: @@ -81154,9 +81475,6 @@ paths: description: Timeline Event type: object anyOf: - - *570 - - *571 - - *572 - *573 - *574 - *575 @@ -81167,6 +81485,9 @@ paths: - *580 - *581 - *582 + - *583 + - *584 + - *585 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81471,7 +81792,7 @@ paths: type: string comments: type: array - items: &603 + items: &606 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81680,7 +82001,7 @@ paths: type: string comments: type: array - items: *492 + items: *495 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -81969,7 +82290,7 @@ paths: headers: Link: *39 '404': *6 - '410': *383 + '410': *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81986,8 +82307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -81997,7 +82318,7 @@ paths: application/json: schema: type: array - items: &583 + items: &586 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82062,8 +82383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82099,9 +82420,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: &584 + default: &587 value: id: 1 key: ssh-rsa AAA... @@ -82135,9 +82456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *372 - - *373 - - &585 + - *375 + - *376 + - &588 name: key_id description: The unique identifier of the key. in: path @@ -82149,9 +82470,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '404': *6 x-github: githubCloudOnly: false @@ -82169,9 +82490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *372 - - *373 - - *585 + - *375 + - *376 + - *588 responses: '204': description: Response @@ -82191,8 +82512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -82202,9 +82523,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 + default: *571 headers: Link: *39 '404': *6 @@ -82225,8 +82546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82262,9 +82583,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: &586 + default: &589 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82296,8 +82617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82308,9 +82629,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: *586 + default: *589 '404': *6 x-github: githubCloudOnly: false @@ -82327,8 +82648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82367,7 +82688,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -82393,8 +82714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *372 - - *373 + - *375 + - *376 - name: name in: path required: true @@ -82420,8 +82741,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -82457,8 +82778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '202': *95 '403': @@ -82486,8 +82807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -82513,9 +82834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *372 - - *373 - - *468 + - *375 + - *376 + - *471 responses: '200': description: Response @@ -82660,8 +82981,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82726,8 +83047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82761,9 +83082,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *493 + schema: *496 examples: - default: *587 + default: *590 '204': description: Response when already merged '404': @@ -82788,8 +83109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82830,12 +83151,12 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 examples: default: value: @@ -82891,8 +83212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -82932,9 +83253,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &589 + default: &592 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -82993,9 +83314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *372 - - *373 - - &590 + - *375 + - *376 + - &593 name: milestone_number description: The number that identifies the milestone. in: path @@ -83007,9 +83328,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *589 + default: *592 '404': *6 x-github: githubCloudOnly: false @@ -83026,9 +83347,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 requestBody: required: false content: @@ -83066,9 +83387,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *589 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83084,9 +83405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 responses: '204': description: Response @@ -83107,9 +83428,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: - - *372 - - *373 - - *590 + - *375 + - *376 + - *593 - *17 - *19 responses: @@ -83119,9 +83440,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *568 + default: *571 headers: Link: *39 x-github: @@ -83140,12 +83461,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: - - *372 - - *373 - - *591 - - *592 + - *375 + - *376 + - *594 + - *595 - *144 - - *593 + - *596 - *17 - *19 responses: @@ -83157,7 +83478,7 @@ paths: type: array items: *167 examples: - default: *594 + default: *597 headers: Link: *39 x-github: @@ -83181,8 +83502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -83240,14 +83561,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: &595 + schema: &598 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83372,7 +83693,7 @@ paths: - custom_404 - public examples: - default: &596 + default: &599 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83413,8 +83734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83468,9 +83789,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: *596 + default: *599 '422': *15 '409': *94 x-github: @@ -83493,8 +83814,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83601,8 +83922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -83628,8 +83949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -83639,7 +83960,7 @@ paths: application/json: schema: type: array - items: &597 + items: &600 title: Page Build description: Page Build type: object @@ -83733,8 +84054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *372 - - *373 + - *375 + - *376 responses: '201': description: Response @@ -83779,16 +84100,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: &598 + default: &601 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83836,8 +84157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *372 - - *373 + - *375 + - *376 - name: build_id in: path required: true @@ -83848,9 +84169,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: *598 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83870,8 +84191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -83976,9 +84297,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: - - *372 - - *373 - - &599 + - *375 + - *376 + - &602 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84036,9 +84357,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *372 - - *373 - - *599 + - *375 + - *376 + - *602 responses: '204': *118 '404': *6 @@ -84065,8 +84386,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -84324,8 +84645,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Private vulnerability reporting status @@ -84362,8 +84683,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: - - *372 - - *373 + - *375 + - *376 responses: '204': *118 '422': *14 @@ -84384,8 +84705,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: - - *372 - - *373 + - *375 + - *376 responses: '204': *118 '422': *14 @@ -84408,8 +84729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: Indicates the state of the projects to return. in: query @@ -84430,7 +84751,7 @@ paths: application/json: schema: type: array - items: *318 + items: *321 examples: default: value: @@ -84470,7 +84791,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -84493,8 +84814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84520,13 +84841,13 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *382 + default: *385 '401': *25 '403': *29 '404': *6 - '410': *383 + '410': *386 '422': *7 x-github: githubCloudOnly: false @@ -84549,8 +84870,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -84558,7 +84879,7 @@ paths: application/json: schema: type: array - items: *320 + items: *323 examples: default: value: @@ -84589,8 +84910,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84602,7 +84923,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *320 + items: *323 required: - properties examples: @@ -84652,8 +84973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *372 - - *373 + - *375 + - *376 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84713,9 +85034,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 headers: Link: *39 '304': *37 @@ -84747,8 +85068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -84813,7 +85134,7 @@ paths: description: Response content: application/json: - schema: &605 + schema: &608 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -84924,8 +85245,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true active_lock_reason: type: string @@ -84970,7 +85291,7 @@ paths: nullable: true requested_teams: type: array - items: *340 + items: *343 nullable: true head: type: object @@ -85009,14 +85330,14 @@ paths: _links: type: object properties: - comments: *499 - commits: *499 - statuses: *499 - html: *499 - issue: *499 - review_comments: *499 - review_comment: *499 - self: *499 + comments: *502 + commits: *502 + statuses: *502 + html: *502 + issue: *502 + review_comments: *502 + review_comment: *502 + self: *502 required: - comments - commits @@ -85027,7 +85348,7 @@ paths: - review_comment - self author_association: *141 - auto_merge: *602 + auto_merge: *605 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -85119,7 +85440,7 @@ paths: - merged_by - review_comments examples: - default: &606 + default: &609 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85646,8 +85967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *372 - - *373 + - *375 + - *376 - name: sort in: query required: false @@ -85676,9 +85997,9 @@ paths: application/json: schema: type: array - items: *603 + items: *606 examples: - default: &608 + default: &611 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85755,17 +86076,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: - - *372 - - *373 + - *375 + - *376 - *153 responses: '200': description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: &604 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85840,8 +86161,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: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -85864,9 +86185,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: - default: *604 + default: *607 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85882,8 +86203,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: - - *372 - - *373 + - *375 + - *376 - *153 responses: '204': @@ -85905,8 +86226,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: - - *372 - - *373 + - *375 + - *376 - *153 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -85933,9 +86254,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -85956,8 +86277,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: - - *372 - - *373 + - *375 + - *376 - *153 requestBody: required: true @@ -85990,16 +86311,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -86021,10 +86342,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *372 - - *373 + - *375 + - *376 - *153 - - *364 + - *367 responses: '204': description: Response @@ -86067,9 +86388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *372 - - *373 - - &607 + - *375 + - *376 + - &610 name: pull_number description: The number that identifies the pull request. in: path @@ -86082,9 +86403,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *605 + schema: *608 examples: - default: *606 + default: *609 '304': *37 '404': *6 '406': @@ -86119,9 +86440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -86163,9 +86484,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *608 examples: - default: *606 + default: *609 '422': *15 '403': *29 x-github: @@ -86187,9 +86508,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -86249,17 +86570,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -86289,9 +86610,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *164 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86312,9 +86633,9 @@ paths: application/json: schema: type: array - items: *603 + items: *606 examples: - default: *608 + default: *611 headers: Link: *39 x-github: @@ -86347,9 +86668,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -86454,7 +86775,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: example-for-a-multi-line-comment: value: @@ -86542,9 +86863,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *153 requestBody: required: true @@ -86567,7 +86888,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *606 examples: default: value: @@ -86653,9 +86974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -86665,9 +86986,9 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *609 + default: *612 headers: Link: *39 x-github: @@ -86697,9 +87018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -86709,7 +87030,7 @@ paths: application/json: schema: type: array - items: *508 + items: *511 examples: default: value: @@ -86747,9 +87068,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 responses: '204': description: Response if pull request has been merged @@ -86772,9 +87093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -86885,9 +87206,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 responses: '200': description: Response @@ -86962,9 +87283,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -87001,7 +87322,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -87537,9 +87858,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: true content: @@ -87573,7 +87894,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *603 examples: default: value: @@ -88078,9 +88399,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 - *17 - *19 responses: @@ -88090,7 +88411,7 @@ paths: application/json: schema: type: array - items: &610 + items: &613 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88241,9 +88562,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: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -88329,9 +88650,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: &612 + default: &615 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88394,10 +88715,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: - - *372 - - *373 - - *607 - - &611 + - *375 + - *376 + - *610 + - &614 name: review_id description: The unique identifier of the review. in: path @@ -88409,9 +88730,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: &613 + default: &616 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88470,10 +88791,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88496,7 +88817,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -88558,18 +88879,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *612 + default: *615 '422': *7 '404': *6 x-github: @@ -88596,10 +88917,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 - *17 - *19 responses: @@ -88682,9 +89003,9 @@ paths: _links: type: object properties: - self: *499 - html: *499 - pull_request: *499 + self: *502 + html: *502 + pull_request: *502 required: - self - html @@ -88827,10 +89148,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88858,7 +89179,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -88921,10 +89242,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: - - *372 - - *373 - - *607 - - *611 + - *375 + - *376 + - *610 + - *614 requestBody: required: true content: @@ -88959,9 +89280,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *613 + default: *616 '404': *6 '422': *7 '403': *29 @@ -88983,9 +89304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *372 - - *373 - - *607 + - *375 + - *376 + - *610 requestBody: required: false content: @@ -89048,8 +89369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *372 - - *373 + - *375 + - *376 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89062,9 +89383,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: - default: &615 + default: &618 value: type: file encoding: base64 @@ -89106,8 +89427,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: - - *372 - - *373 + - *375 + - *376 - name: dir description: The alternate path to look for a README file in: path @@ -89127,9 +89448,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: - default: *615 + default: *618 '404': *6 '422': *15 x-github: @@ -89151,8 +89472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -89162,7 +89483,7 @@ paths: application/json: schema: type: array - items: &616 + items: &619 title: Release description: A release. type: object @@ -89225,7 +89546,7 @@ paths: author: *4 assets: type: array - items: &617 + items: &620 title: Release Asset description: Data related to a release. type: object @@ -89406,8 +89727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -89483,9 +89804,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: &620 + default: &623 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89588,9 +89909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *372 - - *373 - - &618 + - *375 + - *376 + - &621 name: asset_id description: The unique identifier of the asset. in: path @@ -89602,9 +89923,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *620 examples: - default: &619 + default: &622 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -89638,7 +89959,7 @@ paths: type: User site_admin: false '404': *6 - '302': *510 + '302': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89654,9 +89975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *372 - - *373 - - *618 + - *375 + - *376 + - *621 requestBody: required: false content: @@ -89684,9 +90005,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *620 examples: - default: *619 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89702,9 +90023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *372 - - *373 - - *618 + - *375 + - *376 + - *621 responses: '204': description: Response @@ -89728,8 +90049,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -89814,16 +90135,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89840,8 +90161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *372 - - *373 + - *375 + - *376 - name: tag description: tag parameter in: path @@ -89854,9 +90175,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 '404': *6 x-github: githubCloudOnly: false @@ -89878,9 +90199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *372 - - *373 - - &621 + - *375 + - *376 + - &624 name: release_id description: The unique identifier of the release. in: path @@ -89894,9 +90215,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: *616 + schema: *619 examples: - default: *620 + default: *623 '401': description: Unauthorized x-github: @@ -89914,9 +90235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 requestBody: required: false content: @@ -89980,9 +90301,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *619 examples: - default: *620 + default: *623 '404': description: Not Found if the discussion category name is invalid content: @@ -90003,9 +90324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 responses: '204': description: Response @@ -90025,9 +90346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - *17 - *19 responses: @@ -90037,7 +90358,7 @@ paths: application/json: schema: type: array - items: *617 + items: *620 examples: default: value: @@ -90118,9 +90439,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: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - name: name in: query required: true @@ -90146,7 +90467,7 @@ paths: description: Response for successful upload content: application/json: - schema: *617 + schema: *620 examples: response-for-successful-upload: value: @@ -90200,9 +90521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 - 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. @@ -90226,9 +90547,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 '404': *6 @@ -90249,9 +90570,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *372 - - *373 - - *621 + - *375 + - *376 + - *624 requestBody: required: true content: @@ -90281,16 +90602,16 @@ paths: description: Reaction exists content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '201': description: Reaction created content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '422': *15 x-github: githubCloudOnly: false @@ -90312,10 +90633,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *372 - - *373 - - *621 - - *364 + - *375 + - *376 + - *624 + - *367 responses: '204': description: Response @@ -90339,9 +90660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *372 - - *373 - - *431 + - *375 + - *376 + - *434 - *17 - *19 responses: @@ -90357,8 +90678,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *622 - - &624 + - *625 + - &627 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90377,54 +90698,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *623 - - *624 - - allOf: - - *625 - - *624 - allOf: - *626 - - *624 - - allOf: - *627 - - *624 - allOf: - *628 - - *624 + - *627 - allOf: - *629 - - *624 + - *627 - allOf: - *630 - - *624 + - *627 - allOf: - *631 - - *624 + - *627 - allOf: - *632 - - *624 + - *627 - allOf: - *633 - - *624 + - *627 - allOf: - *634 - - *624 + - *627 - allOf: - *635 - - *624 + - *627 - allOf: - *636 - - *624 + - *627 - allOf: - *637 - - *624 + - *627 - allOf: - *638 - - *624 + - *627 - allOf: - *639 - - *624 + - *627 + - allOf: + - *640 + - *627 + - allOf: + - *641 + - *627 + - allOf: + - *642 + - *627 examples: default: value: @@ -90463,8 +90784,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - name: includes_parents @@ -90475,7 +90796,7 @@ paths: schema: type: boolean default: true - - *640 + - *643 responses: '200': description: Response @@ -90530,8 +90851,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 requestBody: description: Request body required: true @@ -90593,7 +90914,7 @@ paths: application/json: schema: *128 examples: - default: &649 + default: &652 value: id: 42 name: super cool ruleset @@ -90640,12 +90961,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *372 - - *373 - - *641 + - *375 + - *376 + - *644 - *222 - - *642 - - *643 + - *645 + - *646 - *17 - *19 responses: @@ -90653,9 +90974,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 '500': *99 x-github: @@ -90676,17 +90997,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *372 - - *373 - - *646 + - *375 + - *376 + - *649 responses: '200': description: Response content: application/json: - schema: *647 + schema: *650 examples: - default: *648 + default: *651 '404': *6 '500': *99 x-github: @@ -90714,8 +91035,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90737,7 +91058,7 @@ paths: application/json: schema: *128 examples: - default: *649 + default: *652 '404': *6 '500': *99 put: @@ -90755,8 +91076,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90820,7 +91141,7 @@ paths: application/json: schema: *128 examples: - default: *649 + default: *652 '404': *6 '500': *99 delete: @@ -90838,8 +91159,8 @@ paths: category: repos subcategory: rules parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90862,8 +91183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 - name: ruleset_id @@ -90881,7 +91202,7 @@ paths: type: array items: *131 examples: - default: *328 + default: *331 '404': *6 '500': *99 x-github: @@ -90900,8 +91221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *372 - - *373 + - *375 + - *376 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90919,7 +91240,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -90974,20 +91295,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: - - *372 - - *373 - - *330 - - *331 - - *332 + - *375 + - *376 - *333 - - *86 - - *19 - - *17 - - *650 - - *651 - *334 - *335 - *336 + - *86 + - *19 + - *17 + - *653 + - *654 + - *337 + - *338 + - *339 responses: '200': description: Response @@ -90995,7 +91316,7 @@ paths: application/json: schema: type: array - items: &654 + items: &657 type: object properties: number: *100 @@ -91014,8 +91335,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *652 - resolution: *653 + state: *655 + resolution: *656 resolved_at: type: string format: date-time @@ -91233,15 +91554,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 responses: '200': description: Response content: application/json: - schema: *654 + schema: *657 examples: default: value: @@ -91293,9 +91614,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 requestBody: required: true content: @@ -91303,8 +91624,8 @@ paths: schema: type: object properties: - state: *652 - resolution: *653 + state: *655 + resolution: *656 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -91322,7 +91643,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *657 examples: default: value: @@ -91397,9 +91718,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: - - *372 - - *373 - - *462 + - *375 + - *376 + - *465 - *19 - *17 responses: @@ -91410,7 +91731,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &814 + items: &817 type: object properties: type: @@ -91769,8 +92090,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -91778,14 +92099,14 @@ paths: schema: type: object properties: - reason: &656 + reason: &659 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *655 + placeholder_id: *658 required: - reason - placeholder_id @@ -91802,7 +92123,7 @@ paths: schema: type: object properties: - reason: *656 + reason: *659 expire_at: type: string format: date-time @@ -91845,8 +92166,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: - - *372 - - *373 + - *375 + - *376 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91861,7 +92182,7 @@ paths: properties: incremental_scans: type: array - items: &657 + items: &660 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91887,15 +92208,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *657 + items: *660 backfill_scans: type: array - items: *657 + items: *660 custom_pattern_backfill_scans: type: array items: allOf: - - *657 + - *660 - type: object properties: pattern_name: @@ -91965,8 +92286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *372 - - *373 + - *375 + - *376 - *86 - name: sort description: The property to sort the results by. @@ -92010,9 +92331,9 @@ paths: application/json: schema: type: array - items: *658 + items: *661 examples: - default: *659 + default: *662 '400': *14 '404': *6 x-github: @@ -92035,8 +92356,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -92109,7 +92430,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 required: - login - type @@ -92196,9 +92517,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: &661 + default: &664 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92431,8 +92752,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -92536,7 +92857,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: default: value: @@ -92683,17 +93004,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '200': description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: *661 + default: *664 '403': *29 '404': *6 x-github: @@ -92717,9 +93038,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 requestBody: required: true content: @@ -92792,7 +93113,7 @@ paths: login: type: string description: The username of the user credited. - type: *339 + type: *342 required: - login - type @@ -92878,10 +93199,10 @@ paths: description: Response content: application/json: - schema: *658 + schema: *661 examples: - default: *661 - add_credit: *661 + default: *664 + add_credit: *664 '403': *29 '404': *6 '422': @@ -92919,9 +93240,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '202': *95 '400': *14 @@ -92948,17 +93269,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: - - *372 - - *373 - - *660 + - *375 + - *376 + - *663 responses: '202': description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 '400': *14 '422': *15 '403': *29 @@ -92984,8 +93305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93084,8 +93405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93094,7 +93415,7 @@ paths: application/json: schema: type: array - items: &662 + items: &665 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93127,8 +93448,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93204,8 +93525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93301,8 +93622,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93456,8 +93777,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93467,7 +93788,7 @@ paths: application/json: schema: type: array - items: *662 + items: *665 examples: default: value: @@ -93500,8 +93821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *372 - - *373 + - *375 + - *376 - name: sha in: path required: true @@ -93555,7 +93876,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: default: value: @@ -93609,8 +93930,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93622,7 +93943,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -93642,14 +93963,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &664 + schema: &667 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93717,8 +94038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: false content: @@ -93744,7 +94065,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *667 examples: default: value: @@ -93771,8 +94092,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -93792,8 +94113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -93872,8 +94193,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: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -93881,7 +94202,7 @@ paths: application/json: schema: type: array - items: &665 + items: &668 title: Tag protection description: Tag protection type: object @@ -93933,8 +94254,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: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -93957,7 +94278,7 @@ paths: description: Response content: application/json: - schema: *665 + schema: *668 examples: default: value: @@ -93988,8 +94309,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: - - *372 - - *373 + - *375 + - *376 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94026,8 +94347,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *372 - - *373 + - *375 + - *376 - name: ref in: path required: true @@ -94063,8 +94384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *372 - - *373 + - *375 + - *376 - *17 - *19 responses: @@ -94076,7 +94397,7 @@ paths: type: array items: *286 examples: - default: *301 + default: *304 headers: Link: *39 '404': *6 @@ -94096,8 +94417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *372 - - *373 + - *375 + - *376 - *19 - *17 responses: @@ -94105,7 +94426,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &669 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94117,7 +94438,7 @@ paths: required: - names examples: - default: &667 + default: &670 value: names: - octocat @@ -94140,8 +94461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -94172,9 +94493,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *669 examples: - default: *667 + default: *670 '404': *6 '422': *7 x-github: @@ -94195,9 +94516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *372 - - *373 - - &668 + - *375 + - *376 + - &671 name: per description: The time frame to display results for. in: query @@ -94226,7 +94547,7 @@ paths: example: 128 clones: type: array - items: &669 + items: &672 title: Traffic type: object properties: @@ -94313,8 +94634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -94404,8 +94725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *372 - - *373 + - *375 + - *376 responses: '200': description: Response @@ -94465,9 +94786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *372 - - *373 - - *668 + - *375 + - *376 + - *671 responses: '200': description: Response @@ -94486,7 +94807,7 @@ paths: example: 3782 views: type: array - items: *669 + items: *672 required: - uniques - count @@ -94563,8 +94884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *372 - - *373 + - *375 + - *376 requestBody: required: true content: @@ -94838,8 +95159,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94862,8 +95183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -94885,8 +95206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -94912,8 +95233,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *372 - - *373 + - *375 + - *376 - name: ref in: path required: true @@ -95005,9 +95326,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95158,7 +95479,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &677 + - &680 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -95167,7 +95488,7 @@ paths: schema: type: string example: members - - &682 + - &685 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -95178,7 +95499,7 @@ paths: default: 1 format: int32 example: 1 - - &683 + - &686 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -95220,7 +95541,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &671 + items: &674 allOf: - type: object required: @@ -95295,7 +95616,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: &684 + meta: &687 type: object description: The metadata associated with the creation/updates to the user. @@ -95355,31 +95676,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &672 + '400': &675 description: Bad request content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '401': &673 + schema: *673 + '401': &676 description: Authorization failure - '403': &674 + '403': &677 description: Permission denied - '429': &675 + '429': &678 description: Too many requests content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '500': &676 + schema: *673 + '500': &679 description: Internal server error content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 + schema: *673 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95403,7 +95724,7 @@ paths: required: true content: application/json: - schema: &680 + schema: &683 type: object required: - schemas @@ -95459,9 +95780,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *671 + schema: *674 examples: - group: &678 + group: &681 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -95480,13 +95801,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': *672 - '401': *673 - '403': *674 - '409': &681 + '400': *675 + '401': *676 + '403': *677 + '409': &684 description: Duplicate record detected - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95503,7 +95824,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: - - &679 + - &682 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -95511,22 +95832,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *677 + - *680 - *40 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *671 + schema: *674 examples: - default: *678 - '400': *672 - '401': *673 - '403': *674 + default: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95545,13 +95866,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: - - *679 + - *682 - *40 requestBody: required: true content: application/json: - schema: *680 + schema: *683 examples: group: summary: Group @@ -95577,17 +95898,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *671 + schema: *674 examples: - group: *678 - groupWithMembers: *678 - '400': *672 - '401': *673 - '403': *674 + group: *681 + groupWithMembers: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95611,13 +95932,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: - - *679 + - *682 - *40 requestBody: required: true content: application/json: - schema: &691 + schema: &694 type: object required: - Operations @@ -95677,17 +95998,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *671 + schema: *674 examples: - updateGroup: *678 - addMembers: *678 - '400': *672 - '401': *673 - '403': *674 + updateGroup: *681 + addMembers: *681 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95703,17 +96024,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: - - *679 + - *682 - *40 responses: '204': description: Group was deleted, no content - '400': *672 - '401': *673 - '403': *674 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95747,8 +96068,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *682 - - *683 + - *685 + - *686 - *40 responses: '200': @@ -95781,7 +96102,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &686 + items: &689 allOf: - type: object required: @@ -95860,7 +96181,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &685 + roles: &688 type: array description: The roles assigned to the user. items: @@ -95916,7 +96237,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *684 + meta: *687 startIndex: type: integer description: A starting index for the returned page @@ -95953,11 +96274,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *672 - '401': *673 - '403': *674 - '429': *675 - '500': *676 + '400': *675 + '401': *676 + '403': *677 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -95981,7 +96302,7 @@ paths: required: true content: application/json: - schema: &689 + schema: &692 type: object required: - schemas @@ -96063,9 +96384,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *685 + roles: *688 examples: - user: &690 + user: &693 summary: User value: schemas: @@ -96112,9 +96433,9 @@ paths: description: User has been created content: application/scim+json: - schema: *686 + schema: *689 examples: - user: &687 + user: &690 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96140,13 +96461,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: *687 - '400': *672 - '401': *673 - '403': *674 - '409': *681 - '429': *675 - '500': *676 + enterpriseOwner: *690 + '400': *675 + '401': *676 + '403': *677 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96163,7 +96484,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: - - &688 + - &691 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -96176,15 +96497,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *686 + schema: *689 examples: - default: *687 - '400': *672 - '401': *673 - '403': *674 + default: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96206,30 +96527,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: - - *688 + - *691 - *40 requestBody: required: true content: application/json: - schema: *689 + schema: *692 examples: - user: *690 + user: *693 responses: '200': description: User was updated content: application/scim+json: - schema: *686 + schema: *689 examples: - user: *687 - '400': *672 - '401': *673 - '403': *674 + user: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96264,13 +96585,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: - - *688 + - *691 - *40 requestBody: required: true content: application/json: - schema: *691 + schema: *694 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -96310,18 +96631,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *686 - examples: - userMultiValuedProperties: *687 - userSingleValuedProperties: *687 - disableUser: *687 - '400': *672 - '401': *673 - '403': *674 + schema: *689 + examples: + userMultiValuedProperties: *690 + userSingleValuedProperties: *690 + disableUser: *690 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '409': *681 - '429': *675 - '500': *676 + '409': *684 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96341,17 +96662,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: - - *688 + - *691 - *40 responses: '204': description: User was deleted, no content - '400': *672 - '401': *673 - '403': *674 + '400': *675 + '401': *676 + '403': *677 '404': *6 - '429': *675 - '500': *676 + '429': *678 + '500': *679 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -96438,7 +96759,7 @@ paths: example: 1 Resources: type: array - items: &692 + items: &695 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -96669,22 +96990,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &693 + '404': &696 description: Resource not found content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '403': &694 + schema: *673 + '403': &697 description: Forbidden content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '400': *672 - '429': *675 + schema: *673 + '400': *675 + '429': *678 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -96710,9 +97031,9 @@ paths: description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: &695 + default: &698 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -96735,17 +97056,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *693 - '403': *694 - '500': *676 + '404': *696 + '403': *697 + '500': *679 '409': description: Conflict content: application/json: - schema: *670 + schema: *673 application/scim+json: - schema: *670 - '400': *672 + schema: *673 + '400': *675 requestBody: required: true content: @@ -96838,17 +97159,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 - '404': *693 - '403': *694 + default: *698 + '404': *696 + '403': *697 '304': *37 x-github: githubCloudOnly: true @@ -96872,18 +97193,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 + default: *698 '304': *37 - '404': *693 - '403': *694 + '404': *696 + '403': *697 requestBody: required: true content: @@ -96992,19 +97313,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *171 - - *688 + - *691 responses: '200': description: Response content: application/scim+json: - schema: *692 + schema: *695 examples: - default: *695 + default: *698 '304': *37 - '404': *693 - '403': *694 - '400': *672 + '404': *696 + '403': *697 + '400': *675 '429': description: Response content: @@ -97095,12 +97416,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *171 - - *688 + - *691 responses: '204': description: Response - '404': *693 - '403': *694 + '404': *696 + '403': *697 '304': *37 x-github: githubCloudOnly: true @@ -97233,7 +97554,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &696 + text_matches: &699 title: Search Result Text Matches type: array items: @@ -97396,7 +97717,7 @@ paths: enum: - author-date - committer-date - - &697 + - &700 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 @@ -97467,7 +97788,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true comment_count: type: integer @@ -97487,7 +97808,7 @@ paths: url: type: string format: uri - verification: *545 + verification: *548 required: - author - committer @@ -97506,7 +97827,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *429 + properties: *432 nullable: true parents: type: array @@ -97524,7 +97845,7 @@ paths: type: number node_id: type: string - text_matches: *696 + text_matches: *699 required: - sha - node_id @@ -97707,7 +98028,7 @@ paths: - interactions - created - updated - - *697 + - *700 - *17 - *19 - name: advanced_search @@ -97834,8 +98155,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *497 - required: *498 + properties: *500 + required: *501 nullable: true comments: type: integer @@ -97849,7 +98170,7 @@ paths: type: string format: date-time nullable: true - text_matches: *696 + text_matches: *699 pull_request: type: object properties: @@ -97893,6 +98214,7 @@ paths: timeline_url: type: string format: uri + type: *287 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -98076,7 +98398,7 @@ paths: enum: - created - updated - - *697 + - *700 - *17 - *19 responses: @@ -98120,7 +98442,7 @@ paths: nullable: true score: type: number - text_matches: *696 + text_matches: *699 required: - id - node_id @@ -98206,7 +98528,7 @@ paths: - forks - help-wanted-issues - updated - - *697 + - *700 - *17 - *19 responses: @@ -98445,7 +98767,7 @@ paths: - admin - pull - push - text_matches: *696 + text_matches: *699 temp_clone_token: type: string allow_merge_commit: @@ -98746,7 +99068,7 @@ paths: type: string format: uri nullable: true - text_matches: *696 + text_matches: *699 related: type: array nullable: true @@ -98939,7 +99261,7 @@ paths: - followers - repositories - joined - - *697 + - *700 - *17 - *19 responses: @@ -99043,7 +99365,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *696 + text_matches: *699 blog: type: string nullable: true @@ -99122,7 +99444,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &698 + - &701 name: team_id description: The unique identifier of the team. in: path @@ -99134,9 +99456,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -99163,7 +99485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *698 + - *701 requestBody: required: true content: @@ -99226,16 +99548,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '201': description: Response content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 '404': *6 '422': *15 '403': *29 @@ -99263,7 +99585,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *698 + - *701 responses: '204': description: Response @@ -99294,7 +99616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *698 + - *701 - *86 - *17 - *19 @@ -99305,9 +99627,9 @@ paths: application/json: schema: type: array - items: *355 + items: *358 examples: - default: *699 + default: *702 headers: Link: *39 x-github: @@ -99336,7 +99658,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *698 + - *701 requestBody: required: true content: @@ -99370,9 +99692,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: triggersNotification: true githubCloudOnly: false @@ -99399,16 +99721,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 responses: '200': description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99433,8 +99755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 requestBody: required: false content: @@ -99457,9 +99779,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *358 examples: - default: *700 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99484,8 +99806,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *698 - - *357 + - *701 + - *360 responses: '204': description: Response @@ -99514,8 +99836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *698 - - *357 + - *701 + - *360 - *86 - *17 - *19 @@ -99526,9 +99848,9 @@ paths: application/json: schema: type: array - items: *358 + items: *361 examples: - default: *701 + default: *704 headers: Link: *39 x-github: @@ -99557,8 +99879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 + - *360 requestBody: required: true content: @@ -99580,9 +99902,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: triggersNotification: true githubCloudOnly: false @@ -99609,17 +99931,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99644,9 +99966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 requestBody: required: true content: @@ -99668,9 +99990,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99695,9 +100017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *698 - - *357 + - *701 - *360 + - *363 responses: '204': description: Response @@ -99726,9 +100048,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: - - *698 - - *357 + - *701 - *360 + - *363 - 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. @@ -99754,9 +100076,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -99785,9 +100107,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: - - *698 - - *357 + - *701 - *360 + - *363 requestBody: required: true content: @@ -99819,9 +100141,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99847,8 +100169,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: - - *698 - - *357 + - *701 + - *360 - 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. @@ -99874,9 +100196,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *363 + default: *366 headers: Link: *39 x-github: @@ -99905,8 +100227,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: - - *698 - - *357 + - *701 + - *360 requestBody: required: true content: @@ -99938,9 +100260,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99964,7 +100286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100002,7 +100324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *698 + - *701 - name: role description: Filters members returned by their role in the team. in: query @@ -100025,7 +100347,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '404': *6 @@ -100053,7 +100375,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100090,7 +100412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100130,7 +100452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *698 + - *701 - *219 responses: '204': @@ -100167,16 +100489,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: - - *698 + - *701 - *219 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-user-is-a-team-maintainer: *703 + response-if-user-is-a-team-maintainer: *706 '404': *6 x-github: githubCloudOnly: false @@ -100209,7 +100531,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: - - *698 + - *701 - *219 requestBody: required: false @@ -100235,9 +100557,9 @@ paths: description: Response content: application/json: - schema: *369 + schema: *372 examples: - response-if-users-membership-with-team-is-now-pending: *704 + response-if-users-membership-with-team-is-now-pending: *707 '403': description: Forbidden if team synchronization is set up '422': @@ -100271,7 +100593,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: - - *698 + - *701 - *219 responses: '204': @@ -100300,7 +100622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100310,9 +100632,9 @@ paths: application/json: schema: type: array - items: *370 + items: *373 examples: - default: *705 + default: *708 headers: Link: *39 '404': *6 @@ -100338,16 +100660,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: - - *698 - - *371 + - *701 + - *374 responses: '200': description: Response content: application/json: - schema: *370 + schema: *373 examples: - default: *706 + default: *709 '404': description: Not Found if project is not managed by this team x-github: @@ -100371,8 +100693,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: - - *698 - - *371 + - *701 + - *374 requestBody: required: false content: @@ -100439,8 +100761,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: - - *698 - - *371 + - *701 + - *374 responses: '204': description: Response @@ -100467,7 +100789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100479,7 +100801,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '404': *6 @@ -100509,15 +100831,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *707 + schema: *710 examples: alternative-response-with-extra-repository-information: value: @@ -100668,9 +100990,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 requestBody: required: false content: @@ -100720,9 +101042,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: - - *698 - - *372 - - *373 + - *701 + - *375 + - *376 responses: '204': description: Response @@ -100751,15 +101073,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: - - *698 + - *701 responses: '200': description: Response content: application/json: - schema: *374 + schema: *377 examples: - default: *375 + default: *378 '403': *29 '404': *6 x-github: @@ -100786,7 +101108,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: - - *698 + - *701 requestBody: required: true content: @@ -100843,7 +101165,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *377 examples: default: value: @@ -100874,7 +101196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *698 + - *701 - *17 - *19 responses: @@ -100886,7 +101208,7 @@ paths: type: array items: *286 examples: - response-if-child-teams-exist: *708 + response-if-child-teams-exist: *711 headers: Link: *39 '404': *6 @@ -100919,7 +101241,7 @@ paths: application/json: schema: oneOf: - - &710 + - &713 title: Private User description: Private User type: object @@ -101122,7 +101444,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *709 + - *712 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101275,7 +101597,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: default: value: @@ -101354,7 +101676,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 '304': *37 '404': *6 '403': *29 @@ -101478,9 +101800,9 @@ paths: type: integer codespaces: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 '304': *37 '500': *99 '401': *25 @@ -101619,17 +101941,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -101673,7 +101995,7 @@ paths: type: integer secrets: type: array - items: &711 + items: &714 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -101713,7 +102035,7 @@ paths: - visibility - selected_repositories_url examples: - default: *485 + default: *488 headers: Link: *39 x-github: @@ -101789,7 +102111,7 @@ paths: description: Response content: application/json: - schema: *711 + schema: *714 examples: default: value: @@ -101935,7 +102257,7 @@ paths: type: array items: *197 examples: - default: *712 + default: *715 '401': *25 '403': *29 '404': *6 @@ -102079,15 +102401,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '304': *37 '500': *99 '401': *25 @@ -102113,7 +102435,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: - - *292 + - *295 requestBody: required: false content: @@ -102143,9 +102465,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '401': *25 '403': *29 '404': *6 @@ -102167,7 +102489,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: - - *292 + - *295 responses: '202': *95 '304': *37 @@ -102196,13 +102518,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: - - *292 + - *295 responses: '202': description: Response content: application/json: - schema: &713 + schema: &716 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102243,7 +102565,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &714 + default: &717 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102275,7 +102597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *292 + - *295 - name: export_id in: path required: true @@ -102288,9 +102610,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *716 examples: - default: *714 + default: *717 '404': *6 x-github: githubCloudOnly: false @@ -102311,7 +102633,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *292 + - *295 responses: '200': description: Response @@ -102327,9 +102649,9 @@ paths: type: integer machines: type: array - items: *715 + items: *718 examples: - default: *716 + default: *719 '304': *37 '500': *99 '401': *25 @@ -102358,7 +102680,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: - - *292 + - *295 requestBody: required: true content: @@ -102408,13 +102730,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *385 + repository: *388 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *486 + required: *487 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -103188,15 +103510,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '304': *37 '500': *99 '400': *14 @@ -103228,15 +103550,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: - - *292 + - *295 responses: '200': description: Response content: application/json: - schema: *290 + schema: *293 examples: - default: *482 + default: *485 '500': *99 '401': *25 '403': *29 @@ -103266,9 +103588,9 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: &729 + default: &732 value: - id: 197 name: hello_docker @@ -103369,7 +103691,7 @@ paths: application/json: schema: type: array - items: &717 + items: &720 title: Email description: Email type: object @@ -103434,9 +103756,9 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: - default: &731 + default: &734 value: - email: octocat@github.com verified: true @@ -103511,7 +103833,7 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: default: value: @@ -103621,7 +103943,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '304': *37 @@ -103654,7 +103976,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 '304': *37 @@ -103767,7 +104089,7 @@ paths: application/json: schema: type: array - items: &718 + items: &721 title: GPG Key description: A unique encryption key type: object @@ -103898,7 +104220,7 @@ paths: - subkeys - revoked examples: - default: &742 + default: &745 value: - id: 3 name: Octocat's GPG Key @@ -103983,9 +104305,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: - default: &719 + default: &722 value: id: 3 name: Octocat's GPG Key @@ -104042,7 +104364,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: - - &720 + - &723 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104054,9 +104376,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: - default: *719 + default: *722 '404': *6 '304': *37 '403': *29 @@ -104079,7 +104401,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: - - *720 + - *723 responses: '204': description: Response @@ -104270,7 +104592,7 @@ paths: type: array items: *63 examples: - default: *721 + default: *724 headers: Link: *39 '404': *6 @@ -104384,7 +104706,7 @@ paths: required: true content: application/json: - schema: *556 + schema: *559 examples: default: value: @@ -104476,7 +104798,7 @@ paths: - closed - all default: open - - *287 + - *290 - name: sort description: What to sort results by. in: query @@ -104501,7 +104823,7 @@ paths: type: array items: *154 examples: - default: *288 + default: *291 headers: Link: *39 '404': *6 @@ -104534,7 +104856,7 @@ paths: application/json: schema: type: array - items: &722 + items: &725 title: Key description: Key type: object @@ -104631,9 +104953,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *725 examples: - default: &723 + default: &726 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -104666,15 +104988,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: - - *585 + - *588 responses: '200': description: Response content: application/json: - schema: *722 + schema: *725 examples: - default: *723 + default: *726 '404': *6 '304': *37 '403': *29 @@ -104697,7 +105019,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: - - *585 + - *588 responses: '204': description: Response @@ -104730,7 +105052,7 @@ paths: application/json: schema: type: array - items: &724 + items: &727 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104798,7 +105120,7 @@ paths: - account - plan examples: - default: &725 + default: &728 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104860,9 +105182,9 @@ paths: application/json: schema: type: array - items: *724 + items: *727 examples: - default: *725 + default: *728 headers: Link: *39 '304': *37 @@ -104902,7 +105224,7 @@ paths: application/json: schema: type: array - items: *293 + items: *296 examples: default: value: @@ -105010,7 +105332,7 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: default: value: @@ -105093,7 +105415,7 @@ paths: description: Response content: application/json: - schema: *293 + schema: *296 examples: default: value: @@ -105161,7 +105483,7 @@ paths: application/json: schema: type: array - items: *295 + items: *298 examples: default: value: @@ -105414,7 +105736,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -105594,7 +105916,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *296 + - *299 - name: exclude in: query required: false @@ -105607,7 +105929,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *298 examples: default: value: @@ -105801,7 +106123,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *296 + - *299 responses: '302': description: Response @@ -105827,7 +106149,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *296 + - *299 responses: '204': description: Response @@ -105856,8 +106178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *296 - - *726 + - *299 + - *729 responses: '204': description: Response @@ -105881,7 +106203,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *296 + - *299 - *17 - *19 responses: @@ -105893,7 +106215,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '404': *6 @@ -105930,7 +106252,7 @@ paths: type: array items: *58 examples: - default: *727 + default: *730 headers: Link: *39 '304': *37 @@ -105972,7 +106294,7 @@ paths: - docker - nuget - container - - *728 + - *731 - *19 - *17 responses: @@ -105982,10 +106304,10 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 - '400': *730 + default: *732 + '400': *733 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106005,16 +106327,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: - - *304 - - *305 + - *307 + - *308 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: - default: &743 + default: &746 value: id: 40201 name: octo-name @@ -106127,8 +106449,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: - - *304 - - *305 + - *307 + - *308 responses: '204': description: Response @@ -106158,8 +106480,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: - - *304 - - *305 + - *307 + - *308 - name: token description: package token schema: @@ -106191,8 +106513,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: - - *304 - - *305 + - *307 + - *308 - *19 - *17 - name: state @@ -106212,7 +106534,7 @@ paths: application/json: schema: type: array - items: *306 + items: *309 examples: default: value: @@ -106261,15 +106583,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '200': description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -106305,9 +106627,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '204': description: Response @@ -106337,9 +106659,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: - - *304 - - *305 - *307 + - *308 + - *310 responses: '204': description: Response @@ -106395,7 +106717,7 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: default: value: @@ -106467,9 +106789,9 @@ paths: application/json: schema: type: array - items: *717 + items: *720 examples: - default: *731 + default: *734 headers: Link: *39 '304': *37 @@ -106582,7 +106904,7 @@ paths: type: array items: *63 examples: - default: &738 + default: &741 summary: Default response value: - id: 1296269 @@ -106884,9 +107206,9 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: - default: *387 + default: *390 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106924,9 +107246,9 @@ paths: application/json: schema: type: array - items: *558 + items: *561 examples: - default: *732 + default: *735 headers: Link: *39 '304': *37 @@ -107005,7 +107327,7 @@ paths: application/json: schema: type: array - items: &733 + items: &736 title: Social account description: Social media account type: object @@ -107020,7 +107342,7 @@ paths: - provider - url examples: - default: &734 + default: &737 value: - provider: twitter url: https://twitter.com/github @@ -107082,9 +107404,9 @@ paths: application/json: schema: type: array - items: *733 + items: *736 examples: - default: *734 + default: *737 '422': *15 '304': *37 '404': *6 @@ -107171,7 +107493,7 @@ paths: application/json: schema: type: array - items: &735 + items: &738 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107191,7 +107513,7 @@ paths: - title - created_at examples: - default: &744 + default: &747 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107257,9 +107579,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: &736 + default: &739 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107290,7 +107612,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: - - &737 + - &740 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107302,9 +107624,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *736 + default: *739 '404': *6 '304': *37 '403': *29 @@ -107327,7 +107649,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: - - *737 + - *740 responses: '204': description: Response @@ -107356,7 +107678,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: - - &745 + - &748 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 @@ -107381,11 +107703,11 @@ paths: type: array items: *63 examples: - default-response: *738 + default-response: *741 application/vnd.github.v3.star+json: schema: type: array - items: &746 + items: &749 title: Starred Repository description: Starred Repository type: object @@ -107541,8 +107863,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response if this repository is starred by you @@ -107570,8 +107892,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -107595,8 +107917,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: - - *372 - - *373 + - *375 + - *376 responses: '204': description: Response @@ -107631,7 +107953,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 '304': *37 @@ -107668,7 +107990,7 @@ paths: application/json: schema: type: array - items: *353 + items: *356 examples: default: value: @@ -107754,10 +108076,10 @@ paths: application/json: schema: oneOf: - - *710 - - *709 + - *713 + - *712 examples: - default-response: &740 + default-response: &743 summary: Default response value: login: octocat @@ -107792,7 +108114,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &741 + response-with-git-hub-plan-information: &744 summary: Response with GitHub plan information value: login: octocat @@ -107852,7 +108174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *739 + - *742 - *17 responses: '200': @@ -107863,7 +108185,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: example: ; rel="next" @@ -107901,11 +108223,11 @@ paths: application/json: schema: oneOf: - - *710 - - *709 + - *713 + - *712 examples: - default-response: *740 - response-with-git-hub-plan-information: *741 + default-response: *743 + response-with-git-hub-plan-information: *744 '404': *6 x-github: githubCloudOnly: false @@ -107981,7 +108303,7 @@ paths: bundle_url: type: string examples: - default: *425 + default: *428 '201': description: Response content: @@ -108020,9 +108342,9 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 + default: *732 '403': *29 '401': *25 x-github: @@ -108305,7 +108627,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -108336,7 +108658,7 @@ paths: type: array items: *4 examples: - default: *289 + default: *292 headers: Link: *39 x-github: @@ -108426,9 +108748,9 @@ paths: application/json: schema: type: array - items: *718 + items: *721 examples: - default: *742 + default: *745 headers: Link: *39 x-github: @@ -108532,7 +108854,7 @@ paths: application/json: schema: *22 examples: - default: *555 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108610,7 +108932,7 @@ paths: type: array items: *58 examples: - default: *727 + default: *730 headers: Link: *39 x-github: @@ -108649,7 +108971,7 @@ paths: - docker - nuget - container - - *728 + - *731 - *219 - *19 - *17 @@ -108660,12 +108982,12 @@ paths: application/json: schema: type: array - items: *302 + items: *305 examples: - default: *729 + default: *732 '403': *29 '401': *25 - '400': *730 + '400': *733 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108685,17 +109007,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 responses: '200': description: Response content: application/json: - schema: *302 + schema: *305 examples: - default: *743 + default: *746 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108716,8 +109038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 responses: '204': @@ -108750,8 +109072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *304 - - *305 + - *307 + - *308 - *219 - name: token description: package token @@ -108784,8 +109106,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: - - *304 - - *305 + - *307 + - *308 - *219 responses: '200': @@ -108794,7 +109116,7 @@ paths: application/json: schema: type: array - items: *306 + items: *309 examples: default: value: @@ -108852,16 +109174,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: - - *304 - - *305 - *307 + - *308 + - *310 - *219 responses: '200': description: Response content: application/json: - schema: *306 + schema: *309 examples: default: value: @@ -108896,10 +109218,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *304 - - *305 - - *219 - *307 + - *308 + - *219 + - *310 responses: '204': description: Response @@ -108931,10 +109253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *304 - - *305 - - *219 - *307 + - *308 + - *219 + - *310 responses: '204': description: Response @@ -108981,7 +109303,7 @@ paths: application/json: schema: type: array - items: *318 + items: *321 examples: default: value: @@ -109264,7 +109586,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -109294,9 +109616,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *342 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109324,9 +109646,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109354,9 +109676,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109384,9 +109706,9 @@ paths: application/json: schema: type: array - items: *733 + items: *736 examples: - default: *734 + default: *737 headers: Link: *39 x-github: @@ -109416,9 +109738,9 @@ paths: application/json: schema: type: array - items: *735 + items: *738 examples: - default: *744 + default: *747 headers: Link: *39 x-github: @@ -109443,7 +109765,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *219 - - *745 + - *748 - *86 - *17 - *19 @@ -109455,11 +109777,11 @@ paths: schema: anyOf: - type: array - items: *746 + items: *749 - type: array items: *63 examples: - default-response: *738 + default-response: *741 headers: Link: *39 x-github: @@ -109490,7 +109812,7 @@ paths: type: array items: *197 examples: - default: *308 + default: *311 headers: Link: *39 x-github: @@ -109618,7 +109940,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &747 + enterprise: &750 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109676,7 +109998,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &748 + installation: &751 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109695,7 +110017,7 @@ x-webhooks: required: - id - node_id - organization: &749 + organization: &752 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109755,13 +110077,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &750 + repository: &753 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &787 + properties: &790 id: description: Unique identifier of the repository example: 42 @@ -110444,7 +110766,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &788 + required: &791 - archive_url - assignees_url - blobs_url @@ -110595,10 +110917,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -110674,11 +110996,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: &751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: &754 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) @@ -110901,11 +111223,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: *751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: *754 sender: *4 required: - action @@ -111088,11 +111410,11 @@ x-webhooks: - everyone required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - rule: *751 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + rule: *754 sender: *4 required: - action @@ -111165,7 +111487,7 @@ x-webhooks: required: true content: application/json: - schema: &754 + schema: &757 title: Exemption request cancellation event type: object properties: @@ -111173,11 +111495,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: &752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: &755 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -111402,7 +111724,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &753 + items: &756 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -111512,7 +111834,7 @@ x-webhooks: required: true content: application/json: - schema: &755 + schema: &758 title: Exemption request completed event type: object properties: @@ -111520,11 +111842,11 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 sender: *4 required: - action @@ -111596,7 +111918,7 @@ x-webhooks: required: true content: application/json: - schema: &756 + schema: &759 title: Exemption request created event type: object properties: @@ -111604,11 +111926,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 sender: *4 required: - action @@ -111680,7 +112002,7 @@ x-webhooks: required: true content: application/json: - schema: &757 + schema: &760 title: Exemption response dismissed event type: object properties: @@ -111688,12 +112010,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 - exemption_response: *753 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 + exemption_response: *756 sender: *4 required: - action @@ -111767,7 +112089,7 @@ x-webhooks: required: true content: application/json: - schema: &758 + schema: &761 title: Exemption response submitted event type: object properties: @@ -111775,12 +112097,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - exemption_request: *752 - exemption_response: *753 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + exemption_request: *755 + exemption_response: *756 sender: *4 required: - action @@ -111853,7 +112175,7 @@ x-webhooks: required: true content: application/json: - schema: *754 + schema: *757 responses: '200': description: Return a 200 status to indicate that the data was received @@ -111920,7 +112242,7 @@ x-webhooks: required: true content: application/json: - schema: *755 + schema: *758 responses: '200': description: Return a 200 status to indicate that the data was received @@ -111987,7 +112309,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112054,7 +112376,7 @@ x-webhooks: required: true content: application/json: - schema: *757 + schema: *760 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112122,7 +112444,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -112200,7 +112522,7 @@ x-webhooks: type: string enum: - completed - check_run: &760 + check_run: &763 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112263,7 +112585,7 @@ x-webhooks: type: string pull_requests: type: array - items: *444 + items: *447 repository: *197 status: example: completed @@ -112301,7 +112623,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *759 + deployment: *762 details_url: example: https://example.com type: string @@ -112351,7 +112673,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *444 + items: *447 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -112386,9 +112708,9 @@ x-webhooks: - output - app - pull_requests - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -112781,10 +113103,10 @@ x-webhooks: type: string enum: - created - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -113180,10 +113502,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 requested_action: description: The action requested by the user. type: object @@ -113588,10 +113910,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *760 - installation: *748 - organization: *749 - repository: *750 + check_run: *763 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - check_run @@ -114568,10 +114890,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -115241,10 +115563,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -115908,10 +116230,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -116074,7 +116396,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116219,20 +116541,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &761 + commit_oid: &764 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *747 - installation: *748 - organization: *749 - ref: &762 + enterprise: *750 + installation: *751 + organization: *752 + ref: &765 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -116394,7 +116716,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116624,12 +116946,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -116724,7 +117046,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116892,12 +117214,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -117060,7 +117382,7 @@ x-webhooks: required: - login - id - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117226,12 +117548,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -117328,7 +117650,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117496,16 +117818,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *750 + repository: *753 sender: *4 required: - action @@ -117599,7 +117921,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *457 + dismissed_comment: *460 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117739,12 +118061,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *761 - enterprise: *747 - installation: *748 - organization: *749 - ref: *762 - repository: *750 + commit_oid: *764 + enterprise: *750 + installation: *751 + organization: *752 + ref: *765 + repository: *753 sender: *4 required: - action @@ -118001,10 +118323,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -118084,18 +118406,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *749 - pusher_type: &763 + organization: *752 + pusher_type: &766 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &764 + ref: &767 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -118105,7 +118427,7 @@ x-webhooks: enum: - tag - branch - repository: *750 + repository: *753 sender: *4 required: - ref @@ -118188,9 +118510,9 @@ x-webhooks: enum: - created definition: *114 - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118275,9 +118597,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118355,9 +118677,9 @@ x-webhooks: enum: - updated definition: *114 - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -118434,19 +118756,19 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - repository: *750 - organization: *749 + enterprise: *750 + installation: *751 + repository: *753 + organization: *752 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *320 + items: *323 old_property_values: type: array description: The old custom property values for the repository. - items: *320 + items: *323 required: - action - repository @@ -118522,18 +118844,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - pusher_type: *763 - ref: *764 + enterprise: *750 + installation: *751 + organization: *752 + pusher_type: *766 + ref: *767 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *750 + repository: *753 sender: *4 required: - ref @@ -118617,11 +118939,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118705,11 +119027,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118793,11 +119115,11 @@ x-webhooks: type: string enum: - created - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118879,11 +119201,11 @@ x-webhooks: type: string enum: - dismissed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -118965,11 +119287,11 @@ x-webhooks: type: string enum: - fixed - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119052,11 +119374,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119138,11 +119460,11 @@ x-webhooks: type: string enum: - reopened - alert: *514 - installation: *748 - organization: *749 - enterprise: *747 - repository: *750 + alert: *517 + installation: *751 + organization: *752 + enterprise: *750 + repository: *753 sender: *4 required: - action @@ -119219,9 +119541,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - key: &765 + enterprise: *750 + installation: *751 + key: &768 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119257,8 +119579,8 @@ x-webhooks: - verified - created_at - read_only - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -119335,11 +119657,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - key: *765 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + key: *768 + organization: *752 + repository: *753 sender: *4 required: - action @@ -119900,12 +120222,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: &769 + workflow: &772 title: Workflow type: object nullable: true @@ -120631,13 +120953,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *520 + deployment: *523 pull_requests: type: array - items: *605 - repository: *750 - organization: *749 - installation: *748 + items: *608 + repository: *753 + organization: *752 + installation: *751 sender: *4 responses: '200': @@ -120708,7 +121030,7 @@ x-webhooks: type: string enum: - approved - approver: &766 + approver: &769 type: object properties: avatar_url: @@ -120751,11 +121073,11 @@ x-webhooks: type: string comment: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - reviewers: &767 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + reviewers: &770 type: array items: type: object @@ -120834,7 +121156,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &768 + workflow_job_run: &771 type: object properties: conclusion: @@ -121565,18 +121887,18 @@ x-webhooks: type: string enum: - rejected - approver: *766 + approver: *769 comment: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - reviewers: *767 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + reviewers: *770 sender: *4 since: type: string - workflow_job_run: *768 + workflow_job_run: *771 workflow_job_runs: type: array items: @@ -122280,13 +122602,13 @@ x-webhooks: type: string enum: - requested - enterprise: *747 + enterprise: *750 environment: type: string - installation: *748 - organization: *749 - repository: *750 - requestor: &774 + installation: *751 + organization: *752 + repository: *753 + requestor: &777 title: User type: object nullable: true @@ -124185,12 +124507,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Deployment Workflow Run type: object @@ -124870,7 +125192,7 @@ x-webhooks: type: string enum: - answered - answer: &772 + answer: &775 type: object properties: author_association: @@ -125027,7 +125349,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &770 + discussion: &773 title: Discussion description: A Discussion in a repository. type: object @@ -125313,7 +125635,7 @@ x-webhooks: - id labels: type: array - items: *567 + items: *570 required: - repository_url - category @@ -125335,10 +125657,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125465,11 +125787,11 @@ x-webhooks: - from required: - category - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125552,11 +125874,11 @@ x-webhooks: type: string enum: - closed - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125638,7 +125960,7 @@ x-webhooks: type: string enum: - created - comment: &771 + comment: &774 type: object properties: author_association: @@ -125795,11 +126117,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125882,12 +126204,12 @@ x-webhooks: type: string enum: - deleted - comment: *771 - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + comment: *774 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -125982,12 +126304,12 @@ x-webhooks: - from required: - body - comment: *771 - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + comment: *774 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126071,11 +126393,11 @@ x-webhooks: type: string enum: - created - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126157,11 +126479,11 @@ x-webhooks: type: string enum: - deleted - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126261,11 +126583,11 @@ x-webhooks: type: string required: - from - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126347,10 +126669,10 @@ x-webhooks: type: string enum: - labeled - discussion: *770 - enterprise: *747 - installation: *748 - label: &773 + discussion: *773 + enterprise: *750 + installation: *751 + label: &776 title: Label type: object properties: @@ -126382,8 +126704,8 @@ x-webhooks: - color - default - description - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126466,11 +126788,11 @@ x-webhooks: type: string enum: - locked - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126552,11 +126874,11 @@ x-webhooks: type: string enum: - pinned - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126638,11 +126960,11 @@ x-webhooks: type: string enum: - reopened - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126727,16 +127049,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *770 - new_repository: *750 + new_discussion: *773 + new_repository: *753 required: - new_discussion - new_repository - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126819,10 +127141,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *770 - old_answer: *772 - organization: *749 - repository: *750 + discussion: *773 + old_answer: *775 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126904,12 +127226,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *770 - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -126992,11 +127314,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -127078,11 +127400,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *770 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + discussion: *773 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -127154,7 +127476,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127220,7 +127542,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127286,7 +127608,7 @@ x-webhooks: required: true content: application/json: - schema: *754 + schema: *757 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127352,7 +127674,7 @@ x-webhooks: required: true content: application/json: - schema: *755 + schema: *758 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127418,7 +127740,7 @@ x-webhooks: required: true content: application/json: - schema: *756 + schema: *759 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127484,7 +127806,7 @@ x-webhooks: required: true content: application/json: - schema: *757 + schema: *760 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127550,7 +127872,7 @@ x-webhooks: required: true content: application/json: - schema: *758 + schema: *761 responses: '200': description: Return a 200 status to indicate that the data was received @@ -127617,7 +127939,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *747 + enterprise: *750 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -128277,9 +128599,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - forkee @@ -128425,9 +128747,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pages: description: The pages that were updated. type: array @@ -128464,7 +128786,7 @@ x-webhooks: - action - sha - html_url - repository: *750 + repository: *753 sender: *4 required: - pages @@ -128540,10 +128862,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: &775 + organization: *752 + repositories: &778 description: An array of repository objects that the installation can access. type: array @@ -128569,8 +128891,8 @@ x-webhooks: - name - full_name - private - repository: *750 - requester: *774 + repository: *753 + requester: *777 sender: *4 required: - action @@ -128645,11 +128967,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -128725,11 +129047,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -128805,10 +129127,10 @@ x-webhooks: type: string enum: - added - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories_added: &776 + organization: *752 + repositories_added: &779 description: An array of repository objects, which were added to the installation. type: array @@ -128854,15 +129176,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *750 - repository_selection: &777 + repository: *753 + repository_selection: &780 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *774 + requester: *777 sender: *4 required: - action @@ -128941,10 +129263,10 @@ x-webhooks: type: string enum: - removed - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories_added: *776 + organization: *752 + repositories_added: *779 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128971,9 +129293,9 @@ x-webhooks: - name - full_name - private - repository: *750 - repository_selection: *777 - requester: *774 + repository: *753 + repository_selection: *780 + requester: *777 sender: *4 required: - action @@ -129052,11 +129374,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -129235,10 +129557,10 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 target_type: type: string @@ -129317,11 +129639,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *747 + enterprise: *750 installation: *22 - organization: *749 - repositories: *775 - repository: *750 + organization: *752 + repositories: *778 + repository: *753 requester: nullable: true sender: *4 @@ -129573,8 +129895,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -130397,6 +130719,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -130729,8 +131052,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -130810,7 +131133,7 @@ x-webhooks: type: string enum: - deleted - comment: &778 + comment: &781 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -130975,8 +131298,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -131795,6 +132118,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -132129,8 +132453,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -132210,7 +132534,7 @@ x-webhooks: type: string enum: - edited - changes: &806 + changes: &809 description: The changes to the comment. type: object properties: @@ -132222,9 +132546,9 @@ x-webhooks: type: string required: - from - comment: *778 - enterprise: *747 - installation: *748 + comment: *781 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133046,6 +133370,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -133378,8 +133703,8 @@ x-webhooks: - state - locked - assignee - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -133461,10 +133786,10 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *747 - installation: *748 - issue: &781 + assignee: *777 + enterprise: *750 + installation: *751 + issue: &784 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -134282,6 +134607,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -134382,8 +134708,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -134463,8 +134789,8 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -135287,6 +135613,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -135522,8 +135849,8 @@ x-webhooks: required: - state - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -135602,8 +135929,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -136415,6 +136742,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -136514,8 +136842,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -136594,8 +136922,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137431,6 +137759,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -137509,7 +137838,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &779 + milestone: &782 title: Milestone description: A collection of related issues and pull requests. type: object @@ -137647,8 +137976,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -137747,8 +138076,8 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -138563,6 +138892,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -138666,9 +138996,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *749 - repository: *750 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -138748,8 +139078,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139563,6 +139893,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -139666,9 +139997,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *749 - repository: *750 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -139748,8 +140079,8 @@ x-webhooks: type: string enum: - locked - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140587,6 +140918,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *287 title: description: Title of the issue type: string @@ -140667,8 +140999,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -140747,8 +141079,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141583,6 +141915,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -141660,9 +141993,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *779 - organization: *749 - repository: *750 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -143123,8 +143456,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143942,6 +144275,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -144041,8 +144375,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -144122,9 +144456,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *747 - installation: *748 - issue: &780 + enterprise: *750 + installation: *751 + issue: &783 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -144936,6 +145270,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -145035,8 +145370,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -145115,8 +145450,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -146033,8 +146368,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + type: *287 + organization: *752 + repository: *753 sender: *4 required: - action @@ -146929,6 +147265,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -147496,11 +147833,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *747 - installation: *748 - issue: *780 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *783 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147581,7 +147918,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &809 + assignee: &812 title: User type: object nullable: true @@ -147651,11 +147988,11 @@ x-webhooks: required: - login - id - enterprise: *747 - installation: *748 - issue: *781 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *784 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147734,12 +148071,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *747 - installation: *748 - issue: *781 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *784 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -147819,8 +148156,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -148659,6 +148996,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *287 updated_at: type: string format: date-time @@ -148736,8 +149074,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148817,11 +149155,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *747 - installation: *748 - issue: *780 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + issue: *783 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148900,11 +149238,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -148982,11 +149320,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -149096,11 +149434,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - label: *773 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + label: *776 + organization: *752 + repository: *753 sender: *4 required: - action @@ -149182,9 +149520,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: &782 + enterprise: *750 + installation: *751 + marketplace_purchase: &785 title: Marketplace Purchase type: object required: @@ -149267,8 +149605,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *749 - previous_marketplace_purchase: &783 + organization: *752 + previous_marketplace_purchase: &786 title: Marketplace Purchase type: object properties: @@ -149348,7 +149686,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149428,10 +149766,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149514,7 +149852,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149596,10 +149934,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149681,7 +150019,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *750 + repository: *753 sender: *4 required: - action @@ -149762,8 +150100,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 marketplace_purchase: title: Marketplace Purchase type: object @@ -149845,9 +150183,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *749 - previous_marketplace_purchase: *783 - repository: *750 + organization: *752 + previous_marketplace_purchase: *786 + repository: *753 sender: *4 required: - action @@ -149927,12 +150265,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *747 - installation: *748 - marketplace_purchase: *782 - organization: *749 - previous_marketplace_purchase: *783 - repository: *750 + enterprise: *750 + installation: *751 + marketplace_purchase: *785 + organization: *752 + previous_marketplace_purchase: *786 + repository: *753 sender: *4 required: - action @@ -150034,11 +150372,11 @@ x-webhooks: type: string required: - to - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150138,11 +150476,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150221,11 +150559,11 @@ x-webhooks: type: string enum: - removed - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150303,11 +150641,11 @@ x-webhooks: type: string enum: - added - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150383,7 +150721,7 @@ x-webhooks: required: - login - id - team: &784 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -150573,11 +150911,11 @@ x-webhooks: type: string enum: - removed - enterprise: *747 - installation: *748 - member: *774 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + member: *777 + organization: *752 + repository: *753 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150654,7 +150992,7 @@ x-webhooks: required: - login - id - team: *784 + team: *787 required: - action - scope @@ -150736,8 +151074,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *748 - merge_group: &786 + installation: *751 + merge_group: &789 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150756,15 +151094,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *785 + head_commit: *788 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150850,10 +151188,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *748 - merge_group: *786 - organization: *749 - repository: *750 + installation: *751 + merge_group: *789 + organization: *752 + repository: *753 sender: *4 required: - action @@ -150926,7 +151264,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 + enterprise: *750 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151034,16 +151372,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *748 - organization: *749 + installation: *751 + organization: *752 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -151124,11 +151462,11 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151207,9 +151545,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - milestone: &789 + enterprise: *750 + installation: *751 + milestone: &792 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151346,8 +151684,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151426,11 +151764,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151540,11 +151878,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - milestone: *779 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *782 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151624,11 +151962,11 @@ x-webhooks: type: string enum: - opened - enterprise: *747 - installation: *748 - milestone: *789 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + milestone: *792 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151707,11 +152045,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *774 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + blocked_user: *777 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151790,11 +152128,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *774 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + blocked_user: *777 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -151873,9 +152211,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - membership: &790 + enterprise: *750 + installation: *751 + membership: &793 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151967,8 +152305,8 @@ x-webhooks: - role - organization_url - user - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152046,11 +152384,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152129,8 +152467,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -152246,10 +152584,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 - user: *774 + user: *777 required: - action - invitation @@ -152327,11 +152665,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152418,11 +152756,11 @@ x-webhooks: properties: from: type: string - enterprise: *747 - installation: *748 - membership: *790 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + membership: *793 + organization: *752 + repository: *753 sender: *4 required: - action @@ -152498,9 +152836,9 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 package: description: Information about the package. type: object @@ -152999,7 +153337,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &791 + items: &794 title: Ruby Gems metadata type: object properties: @@ -153094,7 +153432,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -153170,9 +153508,9 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 package: description: Information about the package. type: object @@ -153525,7 +153863,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *794 source_url: type: string format: uri @@ -153595,7 +153933,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -153772,12 +154110,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *747 + enterprise: *750 id: type: integer - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - id @@ -153857,7 +154195,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &792 + personal_access_token_request: &795 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154003,10 +154341,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *747 - organization: *749 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154085,11 +154423,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *792 - enterprise: *747 - organization: *749 + personal_access_token_request: *795 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154167,11 +154505,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *792 - enterprise: *747 - organization: *749 + personal_access_token_request: *795 + enterprise: *750 + organization: *752 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154248,11 +154586,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *792 - organization: *749 - enterprise: *747 + personal_access_token_request: *795 + organization: *752 + enterprise: *750 sender: *4 - installation: *748 + installation: *751 required: - action - personal_access_token_request @@ -154356,7 +154694,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *793 + last_response: *796 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -154388,8 +154726,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 zen: description: Random string of GitHub zen. @@ -154634,10 +154972,10 @@ x-webhooks: - from required: - note - enterprise: *747 - installation: *748 - organization: *749 - project_card: &794 + enterprise: *750 + installation: *751 + organization: *752 + project_card: &797 title: Project Card type: object properties: @@ -154756,7 +155094,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -154837,11 +155175,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project_card: *794 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_card: *797 + repository: *753 sender: *4 required: - action @@ -154921,9 +155259,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 project_card: title: Project Card type: object @@ -155051,8 +155389,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -155146,11 +155484,11 @@ x-webhooks: - from required: - note - enterprise: *747 - installation: *748 - organization: *749 - project_card: *794 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_card: *797 + repository: *753 sender: *4 required: - action @@ -155244,9 +155582,9 @@ x-webhooks: - from required: - column_id - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 project_card: allOf: - title: Project Card @@ -155436,7 +155774,7 @@ x-webhooks: type: string required: - after_id - repository: *750 + repository: *753 sender: *4 required: - action @@ -155516,10 +155854,10 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - organization: *749 - project: &796 + enterprise: *750 + installation: *751 + organization: *752 + project: &799 title: Project type: object properties: @@ -155643,7 +155981,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -155723,10 +156061,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project_column: &795 + enterprise: *750 + installation: *751 + organization: *752 + project_column: &798 title: Project Column type: object properties: @@ -155765,7 +156103,7 @@ x-webhooks: - name - created_at - updated_at - repository: *750 + repository: *753 sender: *4 required: - action @@ -155844,18 +156182,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -155945,11 +156283,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 + repository: *753 sender: *4 required: - action @@ -156029,11 +156367,11 @@ x-webhooks: type: string enum: - moved - enterprise: *747 - installation: *748 - organization: *749 - project_column: *795 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project_column: *798 + repository: *753 sender: *4 required: - action @@ -156113,11 +156451,11 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156197,18 +156535,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - project: *796 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *790 + required: *791 nullable: true sender: *4 required: @@ -156310,11 +156648,11 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156393,11 +156731,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 - organization: *749 - project: *796 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + project: *799 + repository: *753 sender: *4 required: - action @@ -156478,9 +156816,9 @@ x-webhooks: type: string enum: - closed - installation: *748 - organization: *749 - projects_v2: &797 + installation: *751 + organization: *752 + projects_v2: &800 title: Projects v2 Project description: A projects v2 project type: object @@ -156623,9 +156961,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156706,9 +157044,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156825,9 +157163,9 @@ x-webhooks: type: string to: type: string - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -156910,7 +157248,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &804 type: object properties: archived_at: @@ -156924,9 +157262,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *748 - organization: *749 - projects_v2_item: &798 + installation: *751 + organization: *752 + projects_v2_item: &801 title: Projects v2 Item description: An item belonging to a project type: object @@ -157060,9 +157398,9 @@ x-webhooks: nullable: true to: type: string - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157144,9 +157482,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157227,9 +157565,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157335,7 +157673,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &802 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -157353,7 +157691,7 @@ x-webhooks: required: - id - name - - &800 + - &803 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -157376,8 +157714,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - - *800 + - *802 + - *803 required: - field_value - type: object @@ -157393,9 +157731,9 @@ x-webhooks: nullable: true required: - body - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157490,9 +157828,9 @@ x-webhooks: to: type: string nullable: true - installation: *748 - organization: *749 - projects_v2_item: *798 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157575,10 +157913,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *748 - organization: *749 - projects_v2_item: *798 + changes: *804 + installation: *751 + organization: *752 + projects_v2_item: *801 sender: *4 required: - action @@ -157660,9 +157998,9 @@ x-webhooks: type: string enum: - reopened - installation: *748 - organization: *749 - projects_v2: *797 + installation: *751 + organization: *752 + projects_v2: *800 sender: *4 required: - action @@ -157743,9 +158081,9 @@ x-webhooks: type: string enum: - created - installation: *748 - organization: *749 - projects_v2_status_update: &802 + installation: *751 + organization: *752 + projects_v2_status_update: &805 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -157872,9 +158210,9 @@ x-webhooks: type: string enum: - deleted - installation: *748 - organization: *749 - projects_v2_status_update: *802 + installation: *751 + organization: *752 + projects_v2_status_update: *805 sender: *4 required: - action @@ -158010,9 +158348,9 @@ x-webhooks: type: string format: date nullable: true - installation: *748 - organization: *749 - projects_v2_status_update: *802 + installation: *751 + organization: *752 + projects_v2_status_update: *805 sender: *4 required: - action @@ -158083,10 +158421,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - repository @@ -158163,13 +158501,13 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *747 - installation: *748 - number: &803 + assignee: *777 + enterprise: *750 + installation: *751 + number: &806 description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -160452,7 +160790,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -160534,11 +160872,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -162816,7 +163154,7 @@ x-webhooks: - draft reason: type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -162898,11 +163236,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -165180,7 +165518,7 @@ x-webhooks: - draft reason: type: string - repository: *750 + repository: *753 sender: *4 required: - action @@ -165262,13 +165600,13 @@ x-webhooks: type: string enum: - closed - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: &804 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: &807 allOf: - - *605 + - *608 - type: object properties: allow_auto_merge: @@ -165330,7 +165668,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *750 + repository: *753 sender: *4 required: - action @@ -165411,12 +165749,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -165496,11 +165834,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *747 - milestone: *588 - number: *803 - organization: *749 - pull_request: &805 + enterprise: *750 + milestone: *591 + number: *806 + organization: *752 + pull_request: &808 title: Pull Request type: object properties: @@ -167763,7 +168101,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -167842,11 +168180,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -170128,7 +170466,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *750 + repository: *753 sender: *4 required: - action @@ -170252,12 +170590,12 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -170337,11 +170675,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -172608,7 +172946,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -172688,11 +173026,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *747 - installation: *748 - label: *773 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + label: *776 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -174974,7 +175312,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -175055,10 +175393,10 @@ x-webhooks: type: string enum: - locked - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -177338,7 +177676,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -177418,12 +177756,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *747 - milestone: *588 - number: *803 - organization: *749 - pull_request: *805 - repository: *750 + enterprise: *750 + milestone: *591 + number: *806 + organization: *752 + pull_request: *808 + repository: *753 sender: *4 required: - action @@ -177502,12 +177840,12 @@ x-webhooks: type: string enum: - opened - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -177588,12 +177926,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -177673,12 +178011,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *747 - installation: *748 - number: *803 - organization: *749 - pull_request: *804 - repository: *750 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 + pull_request: *807 + repository: *753 sender: *4 required: - action @@ -178044,9 +178382,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -180216,7 +180554,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -180296,7 +180634,7 @@ x-webhooks: type: string enum: - deleted - comment: &807 + comment: &810 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. @@ -180581,9 +180919,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -182741,7 +183079,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -182821,11 +183159,11 @@ x-webhooks: type: string enum: - edited - changes: *806 - comment: *807 - enterprise: *747 - installation: *748 - organization: *749 + changes: *809 + comment: *810 + enterprise: *750 + installation: *751 + organization: *752 pull_request: type: object properties: @@ -184986,7 +185324,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *750 + repository: *753 sender: *4 required: - action @@ -185067,9 +185405,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -187242,7 +187580,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 review: description: The review that was affected. type: object @@ -187485,9 +187823,9 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -189541,8 +189879,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 - review: &808 + repository: *753 + review: &811 description: The review that was affected. type: object properties: @@ -189771,12 +190109,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -192059,7 +192397,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_reviewer: title: User type: object @@ -192143,12 +192481,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -194438,7 +194776,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194630,12 +194968,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -196920,7 +197258,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_reviewer: title: User type: object @@ -197005,12 +197343,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *747 - installation: *748 + enterprise: *750 + installation: *751 number: description: The pull request number. type: integer - organization: *749 + organization: *752 pull_request: title: Pull Request type: object @@ -199286,7 +199624,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199467,9 +199805,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -201644,8 +201982,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 - review: *808 + repository: *753 + review: *811 sender: *4 required: - action @@ -201725,9 +202063,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -203797,7 +204135,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 sender: *4 thread: type: object @@ -204180,9 +204518,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 pull_request: title: Simple Pull Request type: object @@ -206238,7 +206576,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *750 + repository: *753 sender: *4 thread: type: object @@ -206624,10 +206962,10 @@ x-webhooks: type: string before: type: string - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -208898,7 +209236,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -208980,11 +209318,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *809 - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + assignee: *812 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -211267,7 +211605,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -211346,11 +211684,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *747 - installation: *748 - label: *773 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + label: *776 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -213623,7 +213961,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -213704,10 +214042,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *747 - installation: *748 - number: *803 - organization: *749 + enterprise: *750 + installation: *751 + number: *806 + organization: *752 pull_request: title: Pull Request type: object @@ -215972,7 +216310,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *750 + repository: *753 sender: *4 required: - action @@ -216172,7 +216510,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *747 + enterprise: *750 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216264,8 +216602,8 @@ x-webhooks: - url - author - committer - installation: *748 - organization: *749 + installation: *751 + organization: *752 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216840,9 +217178,9 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 registry_package: type: object properties: @@ -217288,7 +217626,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *791 + items: *794 summary: type: string tag_name: @@ -217342,7 +217680,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -217420,9 +217758,9 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 registry_package: type: object properties: @@ -217730,7 +218068,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *794 summary: type: string tag_name: @@ -217779,7 +218117,7 @@ x-webhooks: - owner - package_version - registry - repository: *750 + repository: *753 sender: *4 required: - action @@ -217856,10 +218194,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - release: &810 + enterprise: *750 + installation: *751 + organization: *752 + release: &813 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -218164,7 +218502,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *750 + repository: *753 sender: *4 required: - action @@ -218241,11 +218579,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -218362,11 +218700,11 @@ x-webhooks: type: boolean required: - to - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -218444,9 +218782,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -218755,7 +219093,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *750 + repository: *753 sender: *4 required: - action @@ -218831,10 +219169,10 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - release: &811 + enterprise: *750 + installation: *751 + organization: *752 + release: &814 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -219140,7 +219478,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *750 + repository: *753 sender: *4 required: - action @@ -219216,11 +219554,11 @@ x-webhooks: type: string enum: - released - enterprise: *747 - installation: *748 - organization: *749 - release: *810 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *813 + repository: *753 sender: *4 required: - action @@ -219296,11 +219634,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *747 - installation: *748 - organization: *749 - release: *811 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + release: *814 + repository: *753 sender: *4 required: - action @@ -219376,11 +219714,11 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - repository_advisory: *658 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + repository_advisory: *661 sender: *4 required: - action @@ -219456,11 +219794,11 @@ x-webhooks: type: string enum: - reported - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - repository_advisory: *658 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + repository_advisory: *661 sender: *4 required: - action @@ -219536,10 +219874,10 @@ x-webhooks: type: string enum: - archived - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219616,10 +219954,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219697,10 +220035,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219784,10 +220122,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219899,10 +220237,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -219974,10 +220312,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 status: type: string @@ -220058,10 +220396,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220138,10 +220476,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220235,10 +220573,10 @@ x-webhooks: - name required: - repository - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220318,10 +220656,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 sender: *4 required: @@ -220400,10 +220738,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 sender: *4 required: @@ -220482,10 +220820,10 @@ x-webhooks: type: string enum: - edited - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 repository_ruleset: *128 changes: type: object @@ -220790,10 +221128,10 @@ x-webhooks: - from required: - owner - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220871,10 +221209,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -220952,7 +221290,7 @@ x-webhooks: type: string enum: - create - alert: &812 + alert: &815 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221073,10 +221411,10 @@ x-webhooks: type: string enum: - open - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221282,10 +221620,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221363,11 +221701,11 @@ x-webhooks: type: string enum: - reopen - alert: *812 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221566,10 +221904,10 @@ x-webhooks: enum: - fixed - open - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221647,7 +221985,7 @@ x-webhooks: type: string enum: - created - alert: &813 + alert: &816 type: object properties: number: *100 @@ -221758,10 +222096,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -221842,11 +222180,11 @@ x-webhooks: type: string enum: - created - alert: *813 - installation: *748 - location: *814 - organization: *749 - repository: *750 + alert: *816 + installation: *751 + location: *817 + organization: *752 + repository: *753 sender: *4 required: - location @@ -222084,11 +222422,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222166,11 +222504,11 @@ x-webhooks: type: string enum: - reopened - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222248,11 +222586,11 @@ x-webhooks: type: string enum: - resolved - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222330,11 +222668,11 @@ x-webhooks: type: string enum: - validated - alert: *813 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + alert: *816 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -222460,10 +222798,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *750 - enterprise: *747 - installation: *748 - organization: *749 + repository: *753 + enterprise: *750 + installation: *751 + organization: *752 sender: *4 required: - action @@ -222541,11 +222879,11 @@ x-webhooks: type: string enum: - published - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - security_advisory: &815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + security_advisory: &818 description: The details of the security advisory, including summary, description, and severity. type: object @@ -222728,11 +223066,11 @@ x-webhooks: type: string enum: - updated - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 - security_advisory: *815 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 + security_advisory: *818 sender: *4 required: - action @@ -222805,10 +223143,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -222992,11 +223330,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *323 - enterprise: *747 - installation: *748 - organization: *749 - repository: *385 + security_and_analysis: *326 + enterprise: *750 + installation: *751 + organization: *752 + repository: *388 sender: *4 required: - changes @@ -223074,12 +223412,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: &816 + sponsorship: &819 type: object properties: created_at: @@ -223380,12 +223718,12 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - sponsorship @@ -223473,12 +223811,12 @@ x-webhooks: type: string required: - from - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223555,17 +223893,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &817 + effective_date: &820 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - sponsorship @@ -223639,7 +223977,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &818 + changes: &821 type: object properties: tier: @@ -223683,13 +224021,13 @@ x-webhooks: - from required: - tier - effective_date: *817 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + effective_date: *820 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223766,13 +224104,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *818 - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + changes: *821 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - sponsorship: *816 + sponsorship: *819 required: - action - changes @@ -223846,10 +224184,10 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223932,10 +224270,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224355,15 +224693,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *747 + enterprise: *750 id: description: The unique identifier of the status. type: integer - installation: *748 + installation: *751 name: type: string - organization: *749 - repository: *750 + organization: *752 + repository: *753 sender: *4 sha: description: The Commit SHA. @@ -224478,9 +224816,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224570,9 +224908,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224662,9 +225000,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224754,9 +225092,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *154 - installation: *748 - organization: *749 - repository: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -224833,12 +225171,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - team: &819 + team: &822 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225028,9 +225366,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -225488,7 +225826,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -225564,9 +225902,9 @@ x-webhooks: type: string enum: - created - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -226024,7 +226362,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -226101,9 +226439,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -226561,7 +226899,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -226705,9 +227043,9 @@ x-webhooks: - from required: - permissions - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -227165,7 +227503,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - changes @@ -227243,9 +227581,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *747 - installation: *748 - organization: *749 + enterprise: *750 + installation: *751 + organization: *752 repository: title: Repository description: A git repository @@ -227703,7 +228041,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *819 + team: *822 required: - action - team @@ -227779,10 +228117,10 @@ x-webhooks: type: string enum: - started - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 required: - action @@ -227855,16 +228193,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *747 + enterprise: *750 inputs: type: object nullable: true additionalProperties: true - installation: *748 - organization: *749 + installation: *751 + organization: *752 ref: type: string - repository: *750 + repository: *753 sender: *4 workflow: type: string @@ -227946,10 +228284,10 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: allOf: @@ -228186,7 +228524,7 @@ x-webhooks: type: string required: - conclusion - deployment: *520 + deployment: *523 required: - action - repository @@ -228265,10 +228603,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: allOf: @@ -228528,7 +228866,7 @@ x-webhooks: required: - status - steps - deployment: *520 + deployment: *523 required: - action - repository @@ -228607,10 +228945,10 @@ x-webhooks: type: string enum: - queued - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: type: object @@ -228745,7 +229083,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *523 required: - action - repository @@ -228824,10 +229162,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 workflow_job: type: object @@ -228963,7 +229301,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *520 + deployment: *523 required: - action - repository @@ -229043,12 +229381,12 @@ x-webhooks: type: string enum: - completed - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object @@ -230047,12 +230385,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object @@ -231036,12 +231374,12 @@ x-webhooks: type: string enum: - requested - enterprise: *747 - installation: *748 - organization: *749 - repository: *750 + enterprise: *750 + installation: *751 + organization: *752 + repository: *753 sender: *4 - workflow: *769 + workflow: *772 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index a4ebcb43d6..80390a036b 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -7464,7 +7464,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" ], @@ -22957,6 +22957,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", @@ -23009,6 +23233,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.", @@ -26850,7 +27083,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" ], @@ -54429,6 +54662,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.", @@ -54613,6 +54855,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -55457,6 +55705,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -106859,7 +107113,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" @@ -113116,6 +113370,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -115191,6 +115455,66 @@ ], "nullable": true }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "nullable-integration": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -115617,6 +115941,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -120461,6 +120788,88 @@ "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -133421,6 +133830,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -140194,6 +140606,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "$ref": "#/components/schemas/nullable-integration" }, @@ -146570,6 +146985,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -147961,6 +148379,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -172207,6 +172628,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -173789,6 +174213,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -175380,6 +175807,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177005,6 +177435,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178446,6 +178879,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -179708,6 +180144,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -180959,6 +181398,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -182207,6 +182649,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -183481,6 +183926,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -184723,6 +185171,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -187771,6 +188222,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -189177,6 +189631,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -190287,6 +190744,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -192257,6 +192717,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -291185,6 +291648,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, @@ -315632,6 +316125,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/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index e2b6a66047..2100ec0f5b 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -5332,6 +5332,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 @@ -16613,6 +16617,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 @@ -16666,6 +16824,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 @@ -19489,6 +19653,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. @@ -39774,6 +39942,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 @@ -39908,6 +40084,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -40504,6 +40685,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -77343,7 +77530,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 @@ -82474,6 +82661,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type repository-rule-enforcement: @@ -84015,6 +84210,54 @@ components: - created_at - updated_at nullable: true + issue-type: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description nullable-integration: title: GitHub app description: GitHub apps are a new way to extend GitHub. They can be installed @@ -84341,6 +84584,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -88152,6 +88397,74 @@ 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -98315,6 +98628,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -103305,6 +103620,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: "$ref": "#/components/schemas/nullable-integration" reactions: @@ -108210,6 +108527,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -109259,6 +109578,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -127291,6 +127612,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128467,6 +128790,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129650,6 +129975,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -130858,6 +131185,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131926,6 +132255,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132882,6 +133213,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -133818,6 +134151,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -134759,6 +135094,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -135723,6 +136060,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -136659,6 +136998,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -138958,6 +139299,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -140020,6 +140363,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -140854,6 +141199,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -142343,6 +142690,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -218314,6 +218663,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 @@ -239395,6 +239766,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/ghec/ghec.json b/descriptions/ghec/ghec.json index a4ebcb43d6..80390a036b 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -7464,7 +7464,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" ], @@ -22957,6 +22957,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", @@ -23009,6 +23233,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.", @@ -26850,7 +27083,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" ], @@ -54429,6 +54662,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.", @@ -54613,6 +54855,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -55457,6 +55705,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -106859,7 +107113,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" @@ -113116,6 +113370,16 @@ "maxItems": 200, "nullable": true, "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", + "nullable": true, + "enum": [ + "org_actors", + "org_and_repo_actors" + ], + "example": "org_actors", + "description": "Who can edit the values of the property" } }, "required": [ @@ -115191,6 +115455,66 @@ ], "nullable": true }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "nullable-integration": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -115617,6 +115941,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -120461,6 +120788,88 @@ "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "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", + "nullable": true + }, + "color": { + "description": "Color for the issue type.", + "type": "string", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -133421,6 +133830,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -140194,6 +140606,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "$ref": "#/components/schemas/nullable-integration" }, @@ -146570,6 +146985,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -147961,6 +148379,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -172207,6 +172628,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -173789,6 +174213,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -175380,6 +175807,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177005,6 +177435,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178446,6 +178879,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -179708,6 +180144,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -180959,6 +181398,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -182207,6 +182649,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -183481,6 +183926,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -184723,6 +185171,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -187771,6 +188222,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -189177,6 +189631,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -190287,6 +190744,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -192257,6 +192717,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -291185,6 +291648,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, @@ -315632,6 +316125,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/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index e2b6a66047..2100ec0f5b 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -5332,6 +5332,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 @@ -16613,6 +16617,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 @@ -16666,6 +16824,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 @@ -19489,6 +19653,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. @@ -39774,6 +39942,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 @@ -39908,6 +40084,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -40504,6 +40685,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -77343,7 +77530,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 @@ -82474,6 +82661,14 @@ 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 + nullable: true + enum: + - org_actors + - org_and_repo_actors + example: org_actors + description: Who can edit the values of the property required: - value_type repository-rule-enforcement: @@ -84015,6 +84210,54 @@ components: - created_at - updated_at nullable: true + issue-type: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description nullable-integration: title: GitHub app description: GitHub apps are a new way to extend GitHub. They can be installed @@ -84341,6 +84584,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -88152,6 +88397,74 @@ 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + 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 + nullable: true + color: + description: Color for the issue type. + type: string + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -98315,6 +98628,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -103305,6 +103620,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: "$ref": "#/components/schemas/nullable-integration" reactions: @@ -108210,6 +108527,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -109259,6 +109578,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -127291,6 +127612,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128467,6 +128790,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129650,6 +129975,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -130858,6 +131185,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131926,6 +132255,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132882,6 +133213,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -133818,6 +134151,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -134759,6 +135094,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -135723,6 +136060,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -136659,6 +136998,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -138958,6 +139299,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -140020,6 +140363,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -140854,6 +141199,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -142343,6 +142690,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -218314,6 +218663,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 @@ -239395,6 +239766,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/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json index ca41759349..9d993ce58f 100644 --- a/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json +++ b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json @@ -4114,7 +4114,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" @@ -5346,7 +5346,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" @@ -6155,7 +6155,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" @@ -11093,7 +11093,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" @@ -12025,7 +12025,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" @@ -12815,7 +12815,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" @@ -13236,7 +13236,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" @@ -15959,7 +15959,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" @@ -16946,7 +16946,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" @@ -17850,7 +17850,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" @@ -18465,7 +18465,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" @@ -19979,7 +19979,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" @@ -20976,7 +20976,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" @@ -22042,7 +22042,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" @@ -22859,7 +22859,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" @@ -23903,7 +23903,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" @@ -24720,7 +24720,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" @@ -25642,7 +25642,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" @@ -26605,7 +26605,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" @@ -42847,6 +42847,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -57866,6 +57926,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -64070,6 +64190,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -89526,6 +89706,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -94377,7 +94617,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" @@ -95324,7 +95564,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" @@ -96004,6 +96244,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.", @@ -96987,6 +97236,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -244245,6 +244554,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -257584,7 +257953,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" @@ -260654,6 +261023,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.", @@ -261664,6 +262042,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -263220,6 +263658,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -264167,6 +264611,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -270137,6 +270641,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -273802,6 +274366,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -277343,6 +277967,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -278878,6 +279562,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -279823,6 +280513,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -282329,6 +283079,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -284638,6 +285448,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -308432,6 +309302,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -391239,6 +392169,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -411308,7 +412298,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" @@ -414270,6 +415260,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -440382,6 +441432,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -443308,6 +444418,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -446236,6 +447406,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -449936,7 +451166,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" @@ -455419,6 +456649,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -458347,6 +459637,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -599440,7 +600790,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" @@ -601990,7 +603340,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" @@ -604447,7 +605797,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" @@ -606904,7 +608254,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" @@ -609493,7 +610843,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" @@ -612089,7 +613439,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" @@ -616319,7 +617669,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" @@ -620127,6 +621477,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -623828,6 +625238,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -627553,6 +629023,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -630819,6 +632349,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -633660,6 +635250,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -636690,6 +638340,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -639541,6 +641251,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -642561,6 +644331,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -645436,6 +647266,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -648337,6 +650227,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -651168,6 +653118,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -655980,6 +657990,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -658809,6 +660879,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -661768,6 +663898,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -664384,6 +666574,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -666288,6 +668538,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -669221,6 +671531,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -672057,6 +674427,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -674956,6 +677386,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -677762,6 +680252,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml index 1e72161411..6b5f165919 100644 --- a/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml @@ -2475,7 +2475,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 @@ -14813,6 +14813,55 @@ paths: timeline_url: type: string format: uri + type: &558 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *84 performed_via_github_app: title: GitHub app @@ -15473,7 +15522,7 @@ paths: url: type: string format: uri - user: &572 + user: &573 title: Public User description: Public User type: object @@ -21175,7 +21224,7 @@ paths: type: array items: *70 examples: - default: &581 + default: &582 value: - login: github id: 1 @@ -22239,7 +22288,7 @@ paths: type: array items: *84 examples: - default: &578 + default: &579 value: total_count: 1 repositories: @@ -27231,6 +27280,12 @@ paths: - all default: open - *206 + - 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 @@ -28720,7 +28775,7 @@ paths: - nuget - container - *135 - - &582 + - &583 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28761,7 +28816,7 @@ paths: default: *214 '403': *43 '401': *41 - '400': &584 + '400': &585 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34188,7 +34243,7 @@ paths: - updated_at - url examples: - default: &562 + default: &563 value: - author: login: octocat @@ -34436,7 +34491,7 @@ paths: application/json: schema: *259 examples: - default: &563 + default: &564 value: author: login: octocat @@ -34619,7 +34674,7 @@ paths: - updated_at - url examples: - default: &564 + default: &565 value: - author: login: octocat @@ -34845,7 +34900,7 @@ paths: application/json: schema: *262 examples: - default: &565 + default: &566 value: author: login: octocat @@ -35522,7 +35577,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &566 + response-if-user-is-a-team-maintainer: &567 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -35587,7 +35642,7 @@ paths: application/json: schema: *273 examples: - response-if-users-membership-with-team-is-now-pending: &567 + response-if-users-membership-with-team-is-now-pending: &568 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -35729,7 +35784,7 @@ paths: - updated_at - permissions examples: - default: &568 + default: &569 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -35806,7 +35861,7 @@ paths: application/json: schema: *274 examples: - default: &569 + default: &570 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36009,7 +36064,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &570 + schema: &571 title: Team Repository description: A team's access to a repository. type: object @@ -36666,7 +36721,7 @@ paths: type: array items: *278 examples: - response-if-child-teams-exist: &571 + response-if-child-teams-exist: &572 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47946,7 +48001,7 @@ paths: check. type: array items: *345 - deployment: &605 + deployment: &606 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61064,7 +61119,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &635 + last_response: &636 title: Hook Response type: object properties: @@ -61686,7 +61741,7 @@ paths: - html_url - created_at examples: - default: &586 + default: &587 value: - id: 1 repository: @@ -62047,6 +62102,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 @@ -62320,6 +62383,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -63610,6 +63678,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -74970,7 +75044,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &653 + items: &654 type: object properties: type: @@ -79122,6 +79196,7 @@ paths: timeline_url: type: string format: uri + type: *558 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -80464,7 +80539,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &559 type: object properties: status: @@ -80484,7 +80559,7 @@ paths: - name - number examples: - default: &559 + default: &560 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -80529,9 +80604,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '401': description: Unauthorized requestBody: @@ -81095,7 +81170,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 type: object properties: key: @@ -81103,7 +81178,7 @@ paths: pretty-print: type: string examples: - default: &561 + default: &562 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 @@ -81146,9 +81221,9 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: - default: *561 + default: *562 '401': description: Unauthorized requestBody: @@ -81200,9 +81275,9 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: - default: *561 + default: *562 '401': description: Unauthorized requestBody: @@ -81532,7 +81607,7 @@ paths: type: array items: *259 examples: - default: *562 + default: *563 headers: Link: *6 x-github: @@ -81684,7 +81759,7 @@ paths: application/json: schema: *259 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81753,7 +81828,7 @@ paths: type: array items: *262 examples: - default: *564 + default: *565 headers: Link: *6 x-github: @@ -81895,7 +81970,7 @@ paths: application/json: schema: *262 examples: - default: *565 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82363,7 +82438,7 @@ paths: application/json: schema: *273 examples: - response-if-user-is-a-team-maintainer: *566 + response-if-user-is-a-team-maintainer: *567 '404': *26 x-github: githubCloudOnly: false @@ -82424,7 +82499,7 @@ paths: application/json: schema: *273 examples: - response-if-users-membership-with-team-is-now-pending: *567 + response-if-users-membership-with-team-is-now-pending: *568 '403': description: Forbidden if team synchronization is set up '422': @@ -82500,7 +82575,7 @@ paths: type: array items: *274 examples: - default: *568 + default: *569 headers: Link: *6 '404': *26 @@ -82536,7 +82611,7 @@ paths: application/json: schema: *274 examples: - default: *569 + default: *570 '404': description: Not Found if project is not managed by this team x-github: @@ -82708,7 +82783,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *570 + schema: *571 examples: alternative-response-with-extra-repository-information: value: @@ -82950,7 +83025,7 @@ paths: type: array items: *278 examples: - response-if-child-teams-exist: *571 + response-if-child-teams-exist: *572 headers: Link: *6 '404': *26 @@ -82983,7 +83058,7 @@ paths: application/json: schema: oneOf: - - &573 + - &574 title: Private User description: Private User type: object @@ -83186,7 +83261,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *572 + - *573 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -83337,7 +83412,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -83415,7 +83490,7 @@ paths: type: array items: *213 examples: - default: &583 + default: &584 value: - id: 197 name: hello_docker @@ -83502,7 +83577,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: Email description: Email type: object @@ -83527,7 +83602,7 @@ paths: - verified - visibility examples: - default: &585 + default: &586 value: - email: octocat@github.com verified: true @@ -83602,7 +83677,7 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: default: value: @@ -83858,7 +83933,7 @@ paths: application/json: schema: type: array - items: &575 + items: &576 title: GPG Key description: A unique encryption key type: object @@ -83989,7 +84064,7 @@ paths: - subkeys - revoked examples: - default: &595 + default: &596 value: - id: 3 name: Octocat's GPG Key @@ -84074,9 +84149,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &576 + default: &577 value: id: 3 name: Octocat's GPG Key @@ -84133,7 +84208,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: - - &577 + - &578 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -84145,9 +84220,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *26 '304': *42 '403': *43 @@ -84170,7 +84245,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: - - *577 + - *578 responses: '204': description: Response @@ -84361,7 +84436,7 @@ paths: type: array items: *84 examples: - default: *578 + default: *579 headers: Link: *6 '404': *26 @@ -84537,7 +84612,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Key description: Key type: object @@ -84634,9 +84709,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &580 + default: &581 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -84675,9 +84750,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 '404': *26 '304': *42 '403': *43 @@ -85520,7 +85595,7 @@ paths: type: array items: *70 examples: - default: *581 + default: *582 headers: Link: *6 '304': *42 @@ -85562,7 +85637,7 @@ paths: - docker - nuget - container - - *582 + - *583 - *5 - *4 responses: @@ -85574,8 +85649,8 @@ paths: type: array items: *213 examples: - default: *583 - '400': *584 + default: *584 + '400': *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85604,7 +85679,7 @@ paths: application/json: schema: *213 examples: - default: &596 + default: &597 value: id: 40201 name: octo-name @@ -86054,9 +86129,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *585 + default: *586 headers: Link: *6 '304': *42 @@ -86169,7 +86244,7 @@ paths: type: array items: *84 examples: - default: &592 + default: &593 summary: Default response value: - id: 1296269 @@ -86513,7 +86588,7 @@ paths: type: array items: *428 examples: - default: *586 + default: *587 headers: Link: *6 '304': *42 @@ -86592,7 +86667,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Social account description: Social media account type: object @@ -86607,7 +86682,7 @@ paths: - provider - url examples: - default: &588 + default: &589 value: - provider: twitter url: https://twitter.com/github @@ -86669,9 +86744,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *588 + default: *589 '422': *35 '304': *42 '404': *26 @@ -86758,7 +86833,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -86778,7 +86853,7 @@ paths: - title - created_at examples: - default: &597 + default: &598 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86844,9 +86919,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86877,7 +86952,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: - - &591 + - &592 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -86889,9 +86964,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *26 '304': *42 '403': *43 @@ -86914,7 +86989,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: - - *591 + - *592 responses: '204': description: Response @@ -86943,7 +87018,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: - - &598 + - &599 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 @@ -86968,11 +87043,11 @@ paths: type: array items: *84 examples: - default-response: *592 + default-response: *593 application/vnd.github.v3.star+json: schema: type: array - items: &599 + items: &600 title: Starred Repository description: Starred Repository type: object @@ -87342,10 +87417,10 @@ paths: application/json: schema: oneOf: + - *574 - *573 - - *572 examples: - default-response: &593 + default-response: &594 summary: Default response value: login: octocat @@ -87380,7 +87455,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &594 + response-with-git-hub-plan-information: &595 summary: Response with GitHub plan information value: login: octocat @@ -87492,11 +87567,11 @@ paths: application/json: schema: oneOf: + - *574 - *573 - - *572 examples: - default-response: *593 - response-with-git-hub-plan-information: *594 + default-response: *594 + response-with-git-hub-plan-information: *595 '404': *26 x-github: githubCloudOnly: false @@ -87527,7 +87602,7 @@ paths: type: array items: *213 examples: - default: *583 + default: *584 '403': *43 '401': *41 x-github: @@ -87931,9 +88006,9 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: - default: *595 + default: *596 headers: Link: *6 x-github: @@ -88115,7 +88190,7 @@ paths: type: array items: *70 examples: - default: *581 + default: *582 headers: Link: *6 x-github: @@ -88154,7 +88229,7 @@ paths: - docker - nuget - container - - *582 + - *583 - *8 - *5 - *4 @@ -88167,10 +88242,10 @@ paths: type: array items: *213 examples: - default: *583 + default: *584 '403': *43 '401': *41 - '400': *584 + '400': *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88200,7 +88275,7 @@ paths: application/json: schema: *213 examples: - default: *596 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88833,9 +88908,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *588 + default: *589 headers: Link: *6 x-github: @@ -88865,9 +88940,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: *597 + default: *598 headers: Link: *6 x-github: @@ -88892,7 +88967,7 @@ paths: url: https://docs.github.com/enterprise-server@3.12/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *598 + - *599 - *9 - *4 - *5 @@ -88904,11 +88979,11 @@ paths: schema: anyOf: - type: array - items: *599 + items: *600 - type: array items: *84 examples: - default-response: *592 + default-response: *593 headers: Link: *6 x-github: @@ -89118,7 +89193,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &600 + enterprise: &601 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -89176,7 +89251,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &601 + installation: &602 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -89195,7 +89270,7 @@ x-webhooks: required: - id - node_id - organization: &602 + organization: &603 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -89255,13 +89330,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &603 + repository: &604 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &629 + properties: &630 id: description: Unique identifier of the repository example: 42 @@ -89938,7 +90013,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &630 + required: &631 - archive_url - assignees_url - blobs_url @@ -90089,10 +90164,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -90178,11 +90253,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: &604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: &605 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) @@ -90399,11 +90474,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: *604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: *605 sender: *19 required: - action @@ -90577,11 +90652,11 @@ x-webhooks: - everyone required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: *604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: *605 sender: *19 required: - action @@ -90666,12 +90741,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 ref: type: string - repository: *603 + repository: *604 sender: *19 required: - cache_location @@ -90765,7 +90840,7 @@ x-webhooks: type: string enum: - completed - check_run: &606 + check_run: &607 title: CheckRun description: A check performed on the code of a given code change type: object @@ -90866,7 +90941,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *605 + deployment: *606 details_url: example: https://example.com type: string @@ -90951,9 +91026,9 @@ x-webhooks: - output - app - pull_requests - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -91356,10 +91431,10 @@ x-webhooks: type: string enum: - created - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -91765,10 +91840,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 requested_action: description: The action requested by the user. type: object @@ -92183,10 +92258,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -93173,10 +93248,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -93856,10 +93931,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -94533,10 +94608,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -94854,20 +94929,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &607 + commit_oid: &608 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: *600 - installation: *601 - organization: *602 - ref: &608 + enterprise: *601 + installation: *602 + organization: *603 + ref: &609 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: *603 + repository: *604 sender: *19 required: - action @@ -95269,12 +95344,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -95547,12 +95622,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -95891,12 +95966,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -96171,16 +96246,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *603 + repository: *604 sender: *19 required: - action @@ -96424,12 +96499,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -96696,10 +96771,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -96789,18 +96864,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *602 - pusher_type: &609 + organization: *603 + pusher_type: &610 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &610 + ref: &611 description: The [`git ref`](https://docs.github.com/enterprise-server@3.12/rest/git/refs#get-a-reference) resource. type: string @@ -96810,7 +96885,7 @@ x-webhooks: enum: - tag - branch - repository: *603 + repository: *604 sender: *19 required: - ref @@ -96899,18 +96974,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - pusher_type: *609 - ref: *610 + enterprise: *601 + installation: *602 + organization: *603 + pusher_type: *610 + ref: *611 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *603 + repository: *604 sender: *19 required: - ref @@ -97005,10 +97080,10 @@ x-webhooks: enum: - auto_dismissed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97103,10 +97178,10 @@ x-webhooks: enum: - auto_reopened alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97201,10 +97276,10 @@ x-webhooks: enum: - created alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97297,10 +97372,10 @@ x-webhooks: enum: - dismissed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97393,10 +97468,10 @@ x-webhooks: enum: - fixed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97490,10 +97565,10 @@ x-webhooks: enum: - reintroduced alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97586,10 +97661,10 @@ x-webhooks: enum: - reopened alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97676,9 +97751,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - key: &611 + enterprise: *601 + installation: *602 + key: &612 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.12/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -97712,8 +97787,8 @@ x-webhooks: - verified - created_at - read_only - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -97800,11 +97875,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - key: *611 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + key: *612 + organization: *603 + repository: *604 sender: *19 required: - action @@ -98375,12 +98450,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: &615 + workflow: &616 title: Workflow type: object nullable: true @@ -99120,9 +99195,9 @@ x-webhooks: pull_requests: type: array items: *477 - repository: *603 - organization: *602 - installation: *601 + repository: *604 + organization: *603 + installation: *602 sender: *19 responses: '200': @@ -99203,7 +99278,7 @@ x-webhooks: type: string enum: - approved - approver: &612 + approver: &613 type: object properties: avatar_url: @@ -99246,11 +99321,11 @@ x-webhooks: type: string comment: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - reviewers: &613 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + reviewers: &614 type: array items: type: object @@ -99329,7 +99404,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &614 + workflow_job_run: &615 type: object properties: conclusion: @@ -100070,18 +100145,18 @@ x-webhooks: type: string enum: - rejected - approver: *612 + approver: *613 comment: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - reviewers: *613 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + reviewers: *614 sender: *19 since: type: string - workflow_job_run: *614 + workflow_job_run: *615 workflow_job_runs: type: array items: @@ -100795,13 +100870,13 @@ x-webhooks: type: string enum: - requested - enterprise: *600 + enterprise: *601 environment: type: string - installation: *601 - organization: *602 - repository: *603 - requestor: &620 + installation: *602 + organization: *603 + repository: *604 + requestor: &621 title: User type: object nullable: true @@ -102710,12 +102785,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Deployment Workflow Run type: object @@ -103405,7 +103480,7 @@ x-webhooks: type: string enum: - answered - answer: &618 + answer: &619 type: object properties: author_association: @@ -103562,7 +103637,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &616 + discussion: &617 title: Discussion description: A Discussion in a repository. type: object @@ -103870,10 +103945,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104010,11 +104085,11 @@ x-webhooks: - from required: - category - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104107,11 +104182,11 @@ x-webhooks: type: string enum: - closed - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104203,7 +104278,7 @@ x-webhooks: type: string enum: - created - comment: &617 + comment: &618 type: object properties: author_association: @@ -104360,11 +104435,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104457,12 +104532,12 @@ x-webhooks: type: string enum: - deleted - comment: *617 - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + comment: *618 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104567,12 +104642,12 @@ x-webhooks: - from required: - body - comment: *617 - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + comment: *618 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104666,11 +104741,11 @@ x-webhooks: type: string enum: - created - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104762,11 +104837,11 @@ x-webhooks: type: string enum: - deleted - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104876,11 +104951,11 @@ x-webhooks: type: string required: - from - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104972,10 +105047,10 @@ x-webhooks: type: string enum: - labeled - discussion: *616 - enterprise: *600 - installation: *601 - label: &619 + discussion: *617 + enterprise: *601 + installation: *602 + label: &620 title: Label type: object properties: @@ -105007,8 +105082,8 @@ x-webhooks: - color - default - description - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105101,11 +105176,11 @@ x-webhooks: type: string enum: - locked - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105197,11 +105272,11 @@ x-webhooks: type: string enum: - pinned - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105293,11 +105368,11 @@ x-webhooks: type: string enum: - reopened - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105392,16 +105467,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *616 - new_repository: *603 + new_discussion: *617 + new_repository: *604 required: - new_discussion - new_repository - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105494,10 +105569,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *616 - old_answer: *618 - organization: *602 - repository: *603 + discussion: *617 + old_answer: *619 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105589,12 +105664,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *616 - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105687,11 +105762,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105783,11 +105858,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -106028,7 +106103,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *600 + enterprise: *601 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.12/rest/repos/repos#get-a-repository) resource. @@ -106688,9 +106763,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - forkee @@ -106856,9 +106931,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pages: description: The pages that were updated. type: array @@ -106895,7 +106970,7 @@ x-webhooks: - action - sha - html_url - repository: *603 + repository: *604 sender: *19 required: - pages @@ -106981,10 +107056,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: &621 + organization: *603 + repositories: &622 description: An array of repository objects that the installation can access. type: array @@ -107010,8 +107085,8 @@ x-webhooks: - name - full_name - private - repository: *603 - requester: *620 + repository: *604 + requester: *621 sender: *19 required: - action @@ -107096,11 +107171,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107186,11 +107261,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107276,10 +107351,10 @@ x-webhooks: type: string enum: - added - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories_added: &622 + organization: *603 + repositories_added: &623 description: An array of repository objects, which were added to the installation. type: array @@ -107325,15 +107400,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *603 - repository_selection: &623 + repository: *604 + repository_selection: &624 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *620 + requester: *621 sender: *19 required: - action @@ -107422,10 +107497,10 @@ x-webhooks: type: string enum: - removed - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories_added: *622 + organization: *603 + repositories_added: *623 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -107452,9 +107527,9 @@ x-webhooks: - name - full_name - private - repository: *603 - repository_selection: *623 - requester: *620 + repository: *604 + repository_selection: *624 + requester: *621 sender: *19 required: - action @@ -107543,11 +107618,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107736,10 +107811,10 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 target_type: type: string @@ -107828,11 +107903,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -108094,8 +108169,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -108918,6 +108993,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -109250,8 +109326,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -109341,7 +109417,7 @@ x-webhooks: type: string enum: - deleted - comment: &624 + comment: &625 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.12/rest/issues/comments#get-an-issue-comment) itself. @@ -109506,8 +109582,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -110326,6 +110402,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -110660,8 +110737,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -110751,7 +110828,7 @@ x-webhooks: type: string enum: - edited - changes: &645 + changes: &646 description: The changes to the comment. type: object properties: @@ -110763,9 +110840,9 @@ x-webhooks: type: string required: - from - comment: *624 - enterprise: *600 - installation: *601 + comment: *625 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111587,6 +111664,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -111919,8 +111997,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -112012,10 +112090,10 @@ x-webhooks: type: string enum: - assigned - assignee: *620 - enterprise: *600 - installation: *601 - issue: &627 + assignee: *621 + enterprise: *601 + installation: *602 + issue: &628 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -112833,6 +112911,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -112933,8 +113012,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -113024,8 +113103,8 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -113848,6 +113927,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -114083,8 +114163,8 @@ x-webhooks: required: - state - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -114173,8 +114253,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -114986,6 +115066,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -115085,8 +115166,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -115175,8 +115256,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -116012,6 +116093,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -116090,7 +116172,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &625 + milestone: &626 title: Milestone description: A collection of related issues and pull requests. type: object @@ -116228,8 +116310,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -116338,8 +116420,8 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -117154,6 +117236,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -117257,9 +117340,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *619 - organization: *602 - repository: *603 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -117349,8 +117432,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -118164,6 +118247,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -118267,9 +118351,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *619 - organization: *602 - repository: *603 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -118359,8 +118443,8 @@ x-webhooks: type: string enum: - locked - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -119198,6 +119282,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -119278,8 +119363,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -119368,8 +119453,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -120204,6 +120289,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -120281,9 +120367,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *625 - organization: *602 - repository: *603 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -121748,8 +121834,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -122567,6 +122653,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -122666,8 +122753,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -122757,9 +122844,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *600 - installation: *601 - issue: &626 + enterprise: *601 + installation: *602 + issue: &627 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -123571,6 +123658,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -123670,8 +123758,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -123760,8 +123848,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -124678,8 +124766,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + type: *558 + organization: *603 + repository: *604 sender: *19 required: - action @@ -125584,6 +125673,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -126145,11 +126235,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *600 - installation: *601 - issue: *626 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *627 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126240,7 +126330,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &648 + assignee: &649 title: User type: object nullable: true @@ -126310,11 +126400,11 @@ x-webhooks: required: - login - id - enterprise: *600 - installation: *601 - issue: *627 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *628 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126403,12 +126493,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *600 - installation: *601 - issue: *627 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *628 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126498,8 +126588,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -127338,6 +127428,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -127415,8 +127506,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127506,11 +127597,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *600 - installation: *601 - issue: *626 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *627 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127599,11 +127690,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127691,11 +127782,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127815,11 +127906,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127920,11 +128011,11 @@ x-webhooks: - read required: - to - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128034,11 +128125,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128127,11 +128218,11 @@ x-webhooks: type: string enum: - removed - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128219,11 +128310,11 @@ x-webhooks: type: string enum: - added - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 scope: description: The scope of the membership. Currently, can only be `team`. @@ -128299,7 +128390,7 @@ x-webhooks: required: - login - id - team: &628 + team: &629 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -128499,11 +128590,11 @@ x-webhooks: type: string enum: - removed - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 scope: description: The scope of the membership. Currently, can only be `team`. @@ -128580,7 +128671,7 @@ x-webhooks: required: - login - id - team: *628 + team: *629 required: - action - scope @@ -128668,7 +128759,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 + enterprise: *601 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -128776,16 +128867,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *601 - organization: *602 + installation: *602 + organization: *603 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -128876,11 +128967,11 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128969,9 +129060,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - milestone: &631 + enterprise: *601 + installation: *602 + milestone: &632 title: Milestone description: A collection of related issues and pull requests. type: object @@ -129108,8 +129199,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129198,11 +129289,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129322,11 +129413,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129416,11 +129507,11 @@ x-webhooks: type: string enum: - opened - enterprise: *600 - installation: *601 - milestone: *631 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *632 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129509,9 +129600,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - membership: &632 + enterprise: *601 + installation: *602 + membership: &633 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -129603,8 +129694,8 @@ x-webhooks: - role - organization_url - user - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129692,11 +129783,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129785,8 +129876,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -129902,10 +129993,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action - invitation @@ -129993,11 +130084,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -130094,11 +130185,11 @@ x-webhooks: properties: from: type: string - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -130184,9 +130275,9 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 package: description: Information about the package. type: object @@ -130685,7 +130776,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &633 + items: &634 title: Ruby Gems metadata type: object properties: @@ -130780,7 +130871,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -130866,9 +130957,9 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 package: description: Information about the package. type: object @@ -131221,7 +131312,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *633 + items: *634 source_url: type: string format: uri @@ -131291,7 +131382,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -131478,12 +131569,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *600 + enterprise: *601 id: type: integer - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - id @@ -131563,7 +131654,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &634 + personal_access_token_request: &635 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -131709,10 +131800,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *600 - organization: *602 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131791,11 +131882,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *634 - enterprise: *600 - organization: *602 + personal_access_token_request: *635 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131873,11 +131964,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *634 - enterprise: *600 - organization: *602 + personal_access_token_request: *635 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131954,11 +132045,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *634 - organization: *602 - enterprise: *600 + personal_access_token_request: *635 + organization: *603 + enterprise: *601 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -132072,7 +132163,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *635 + last_response: *636 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -132104,8 +132195,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 zen: description: Random string of GitHub zen. @@ -132360,10 +132451,10 @@ x-webhooks: - from required: - note - enterprise: *600 - installation: *601 - organization: *602 - project_card: &636 + enterprise: *601 + installation: *602 + organization: *603 + project_card: &637 title: Project Card type: object properties: @@ -132482,7 +132573,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -132573,11 +132664,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project_card: *636 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_card: *637 + repository: *604 sender: *19 required: - action @@ -132667,9 +132758,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 project_card: title: Project Card type: object @@ -132797,8 +132888,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -132902,11 +132993,11 @@ x-webhooks: - from required: - note - enterprise: *600 - installation: *601 - organization: *602 - project_card: *636 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_card: *637 + repository: *604 sender: *19 required: - action @@ -133010,9 +133101,9 @@ x-webhooks: - from required: - column_id - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 project_card: allOf: - title: Project Card @@ -133202,7 +133293,7 @@ x-webhooks: type: string required: - after_id - repository: *603 + repository: *604 sender: *19 required: - action @@ -133292,10 +133383,10 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - organization: *602 - project: &638 + enterprise: *601 + installation: *602 + organization: *603 + project: &639 title: Project type: object properties: @@ -133419,7 +133510,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -133509,10 +133600,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project_column: &637 + enterprise: *601 + installation: *602 + organization: *603 + project_column: &638 title: Project Column type: object properties: @@ -133551,7 +133642,7 @@ x-webhooks: - name - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -133640,18 +133731,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -133751,11 +133842,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 + repository: *604 sender: *19 required: - action @@ -133845,11 +133936,11 @@ x-webhooks: type: string enum: - moved - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 + repository: *604 sender: *19 required: - action @@ -133939,11 +134030,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134033,18 +134124,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - project: *638 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -134156,11 +134247,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134249,11 +134340,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134344,9 +134435,9 @@ x-webhooks: type: string enum: - closed - installation: *601 - organization: *602 - projects_v2: &639 + installation: *602 + organization: *603 + projects_v2: &640 title: Projects v2 Project description: A projects v2 project type: object @@ -134499,9 +134590,9 @@ x-webhooks: type: string enum: - created - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134592,9 +134683,9 @@ x-webhooks: type: string enum: - deleted - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134721,9 +134812,9 @@ x-webhooks: type: string to: type: string - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134816,7 +134907,7 @@ x-webhooks: type: string enum: - archived - changes: &641 + changes: &642 type: object properties: archived_at: @@ -134830,9 +134921,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *601 - organization: *602 - projects_v2_item: &640 + installation: *602 + organization: *603 + projects_v2_item: &641 title: Projects v2 Item description: An item belonging to a project type: object @@ -134976,9 +135067,9 @@ x-webhooks: nullable: true to: type: string - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135070,9 +135161,9 @@ x-webhooks: type: string enum: - created - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135163,9 +135254,9 @@ x-webhooks: type: string enum: - deleted - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135287,9 +135378,9 @@ x-webhooks: nullable: true required: - body - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135394,9 +135485,9 @@ x-webhooks: to: type: string nullable: true - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135489,10 +135580,10 @@ x-webhooks: type: string enum: - restored - changes: *641 - installation: *601 - organization: *602 - projects_v2_item: *640 + changes: *642 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135584,9 +135675,9 @@ x-webhooks: type: string enum: - reopened - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -135667,10 +135758,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - repository @@ -135757,13 +135848,13 @@ x-webhooks: type: string enum: - assigned - assignee: *620 - enterprise: *600 - installation: *601 - number: &642 + assignee: *621 + enterprise: *601 + installation: *602 + number: &643 description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -138046,7 +138137,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -138138,11 +138229,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -140420,7 +140511,7 @@ x-webhooks: - draft reason: type: string - repository: *603 + repository: *604 sender: *19 required: - action @@ -140512,11 +140603,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -142794,7 +142885,7 @@ x-webhooks: - draft reason: type: string - repository: *603 + repository: *604 sender: *19 required: - action @@ -142886,11 +142977,11 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: &643 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: &644 allOf: - *477 - type: object @@ -142954,7 +143045,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *603 + repository: *604 sender: *19 required: - action @@ -143045,12 +143136,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -143140,11 +143231,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *600 + enterprise: *601 milestone: *458 - number: *642 - organization: *602 - pull_request: &644 + number: *643 + organization: *603 + pull_request: &645 title: Pull Request type: object properties: @@ -145407,7 +145498,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -145539,12 +145630,12 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -145634,11 +145725,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *600 - installation: *601 - label: *619 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + label: *620 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -147920,7 +148011,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -148011,10 +148102,10 @@ x-webhooks: type: string enum: - locked - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -150294,7 +150385,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -150384,12 +150475,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *600 + enterprise: *601 milestone: *458 - number: *642 - organization: *602 - pull_request: *644 - repository: *603 + number: *643 + organization: *603 + pull_request: *645 + repository: *604 sender: *19 required: - action @@ -150478,12 +150569,12 @@ x-webhooks: type: string enum: - opened - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -150574,12 +150665,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -150669,12 +150760,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -151050,9 +151141,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -153222,7 +153313,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -153312,7 +153403,7 @@ x-webhooks: type: string enum: - deleted - comment: &646 + comment: &647 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. @@ -153597,9 +153688,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -155757,7 +155848,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -155847,11 +155938,11 @@ x-webhooks: type: string enum: - edited - changes: *645 - comment: *646 - enterprise: *600 - installation: *601 - organization: *602 + changes: *646 + comment: *647 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -158012,7 +158103,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -158103,9 +158194,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -160278,7 +160369,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 review: description: The review that was affected. type: object @@ -160531,9 +160622,9 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -162587,8 +162678,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 - review: &647 + repository: *604 + review: &648 description: The review that was affected. type: object properties: @@ -162827,12 +162918,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -165115,7 +165206,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_reviewer: title: User type: object @@ -165199,12 +165290,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -167494,7 +167585,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_team: title: Team description: Groups of organization members that gives permissions @@ -167696,12 +167787,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -169986,7 +170077,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_reviewer: title: User type: object @@ -170071,12 +170162,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -172352,7 +172443,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_team: title: Team description: Groups of organization members that gives permissions @@ -172543,9 +172634,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -174720,8 +174811,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 - review: *647 + repository: *604 + review: *648 sender: *19 required: - action @@ -174811,9 +174902,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -176883,7 +176974,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 sender: *19 thread: type: object @@ -177276,9 +177367,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -179334,7 +179425,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 sender: *19 thread: type: object @@ -179730,10 +179821,10 @@ x-webhooks: type: string before: type: string - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -182004,7 +182095,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -182096,11 +182187,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *648 - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + assignee: *649 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -184383,7 +184474,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -184472,11 +184563,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *600 - installation: *601 - label: *619 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + label: *620 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -186749,7 +186840,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -186840,10 +186931,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -189108,7 +189199,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -189318,7 +189409,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *600 + enterprise: *601 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -189410,8 +189501,8 @@ x-webhooks: - url - author - committer - installation: *601 - organization: *602 + installation: *602 + organization: *603 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -189990,9 +190081,9 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 registry_package: type: object properties: @@ -190438,7 +190529,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *633 + items: *634 summary: type: string tag_name: @@ -190492,7 +190583,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -190580,9 +190671,9 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 registry_package: type: object properties: @@ -190890,7 +190981,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *633 + items: *634 summary: type: string tag_name: @@ -190939,7 +191030,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -191026,10 +191117,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - release: &649 + enterprise: *601 + installation: *602 + organization: *603 + release: &650 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -191334,7 +191425,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *603 + repository: *604 sender: *19 required: - action @@ -191421,11 +191512,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -191552,11 +191643,11 @@ x-webhooks: type: boolean required: - to - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -191644,9 +191735,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) @@ -191955,7 +192046,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *603 + repository: *604 sender: *19 required: - action @@ -192041,10 +192132,10 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 - release: &650 + enterprise: *601 + installation: *602 + organization: *603 + release: &651 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -192350,7 +192441,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *603 + repository: *604 sender: *19 required: - action @@ -192436,11 +192527,11 @@ x-webhooks: type: string enum: - released - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -192526,11 +192617,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *600 - installation: *601 - organization: *602 - release: *650 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *651 + repository: *604 sender: *19 required: - action @@ -192616,10 +192707,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192704,10 +192795,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192792,10 +192883,10 @@ x-webhooks: type: string enum: - archived - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192882,10 +192973,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192973,10 +193064,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193070,10 +193161,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193195,10 +193286,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193286,10 +193377,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193376,10 +193467,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193483,10 +193574,10 @@ x-webhooks: - name required: - repository - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193566,10 +193657,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 sender: *19 required: @@ -193648,10 +193739,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 sender: *19 required: @@ -193730,10 +193821,10 @@ x-webhooks: type: string enum: - edited - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 changes: type: object @@ -194048,10 +194139,10 @@ x-webhooks: - from required: - owner - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194139,10 +194230,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194230,7 +194321,7 @@ x-webhooks: type: string enum: - create - alert: &651 + alert: &652 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -194351,10 +194442,10 @@ x-webhooks: type: string enum: - open - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194570,10 +194661,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194661,11 +194752,11 @@ x-webhooks: type: string enum: - reopen - alert: *651 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *652 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194874,10 +194965,10 @@ x-webhooks: enum: - fixed - open - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194965,7 +195056,7 @@ x-webhooks: type: string enum: - created - alert: &652 + alert: &653 type: object properties: number: *93 @@ -195040,10 +195131,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195134,11 +195225,11 @@ x-webhooks: type: string enum: - created - alert: *652 - installation: *601 - location: *653 - organization: *602 - repository: *603 + alert: *653 + installation: *602 + location: *654 + organization: *603 + repository: *604 sender: *19 required: - location @@ -195381,11 +195472,11 @@ x-webhooks: type: string enum: - reopened - alert: *652 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *653 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195473,11 +195564,11 @@ x-webhooks: type: string enum: - resolved - alert: *652 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *653 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195563,11 +195654,11 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - security_advisory: &654 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + security_advisory: &655 description: The details of the security advisory, including summary, description, and severity. type: object @@ -195760,11 +195851,11 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - security_advisory: *654 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + security_advisory: *655 sender: *19 required: - action @@ -195847,10 +195938,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -196045,9 +196136,9 @@ x-webhooks: type: object properties: security_and_analysis: *235 - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: *287 sender: *19 required: @@ -196136,12 +196227,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: &655 + sponsorship: &656 type: object properties: created_at: @@ -196452,12 +196543,12 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - sponsorship @@ -196555,12 +196646,12 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196647,17 +196738,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &656 + effective_date: &657 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: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - sponsorship @@ -196741,7 +196832,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &657 + changes: &658 type: object properties: tier: @@ -196785,13 +196876,13 @@ x-webhooks: - from required: - tier - effective_date: *656 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + effective_date: *657 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196878,13 +196969,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *657 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + changes: *658 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196968,10 +197059,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -197064,10 +197155,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -197493,15 +197584,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *600 + enterprise: *601 id: description: The unique identifier of the status. type: integer - installation: *601 + installation: *602 name: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 sha: description: The Commit SHA. @@ -197613,12 +197704,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - team: &658 + team: &659 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -197818,9 +197909,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -198272,7 +198363,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -198358,9 +198449,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -198812,7 +198903,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -198899,9 +198990,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -199353,7 +199444,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -199507,9 +199598,9 @@ x-webhooks: - from required: - permissions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -199961,7 +200052,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - changes @@ -200049,9 +200140,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -200503,7 +200594,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -200586,12 +200677,12 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action responses: @@ -200669,12 +200760,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action responses: @@ -200755,10 +200846,10 @@ x-webhooks: type: string enum: - started - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -200841,16 +200932,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *600 + enterprise: *601 inputs: type: object nullable: true additionalProperties: true - installation: *601 - organization: *602 + installation: *602 + organization: *603 ref: type: string - repository: *603 + repository: *604 sender: *19 workflow: type: string @@ -200942,10 +201033,10 @@ x-webhooks: type: string enum: - completed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: allOf: @@ -201271,10 +201362,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: allOf: @@ -201623,10 +201714,10 @@ x-webhooks: type: string enum: - queued - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: type: object @@ -201850,10 +201941,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: type: object @@ -202079,12 +202170,12 @@ x-webhooks: type: string enum: - completed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object @@ -203093,12 +203184,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object @@ -204092,12 +204183,12 @@ x-webhooks: type: string enum: - requested - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.json b/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.json index ca41759349..9d993ce58f 100644 --- a/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.json +++ b/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.json @@ -4114,7 +4114,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" @@ -5346,7 +5346,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" @@ -6155,7 +6155,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" @@ -11093,7 +11093,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" @@ -12025,7 +12025,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" @@ -12815,7 +12815,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" @@ -13236,7 +13236,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" @@ -15959,7 +15959,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" @@ -16946,7 +16946,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" @@ -17850,7 +17850,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" @@ -18465,7 +18465,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" @@ -19979,7 +19979,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" @@ -20976,7 +20976,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" @@ -22042,7 +22042,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" @@ -22859,7 +22859,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" @@ -23903,7 +23903,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" @@ -24720,7 +24720,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" @@ -25642,7 +25642,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" @@ -26605,7 +26605,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" @@ -42847,6 +42847,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -57866,6 +57926,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -64070,6 +64190,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -89526,6 +89706,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -94377,7 +94617,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" @@ -95324,7 +95564,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" @@ -96004,6 +96244,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.", @@ -96987,6 +97236,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -244245,6 +244554,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -257584,7 +257953,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" @@ -260654,6 +261023,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.", @@ -261664,6 +262042,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -263220,6 +263658,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -264167,6 +264611,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -270137,6 +270641,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -273802,6 +274366,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -277343,6 +277967,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -278878,6 +279562,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -279823,6 +280513,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -282329,6 +283079,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -284638,6 +285448,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -308432,6 +309302,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -391239,6 +392169,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -411308,7 +412298,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" @@ -414270,6 +415260,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -440382,6 +441432,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -443308,6 +444418,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -446236,6 +447406,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -449936,7 +451166,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" @@ -455419,6 +456649,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -458347,6 +459637,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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.", @@ -599440,7 +600790,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" @@ -601990,7 +603340,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" @@ -604447,7 +605797,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" @@ -606904,7 +608254,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" @@ -609493,7 +610843,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" @@ -612089,7 +613439,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" @@ -616319,7 +617669,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" @@ -620127,6 +621477,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -623828,6 +625238,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -627553,6 +629023,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -630819,6 +632349,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -633660,6 +635250,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -636690,6 +638340,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -639541,6 +641251,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -642561,6 +644331,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -645436,6 +647266,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -648337,6 +650227,66 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -651168,6 +653118,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -655980,6 +657990,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -658809,6 +660879,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -661768,6 +663898,66 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -664384,6 +666574,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -666288,6 +668538,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -669221,6 +671531,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -672057,6 +674427,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -674956,6 +677386,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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" @@ -677762,6 +680252,66 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue 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/ghes-3.12/dereferenced/ghes-3.12.deref.yaml b/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.yaml index 1e72161411..6b5f165919 100644 --- a/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.yaml +++ b/descriptions/ghes-3.12/dereferenced/ghes-3.12.deref.yaml @@ -2475,7 +2475,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 @@ -14813,6 +14813,55 @@ paths: timeline_url: type: string format: uri + type: &558 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue 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: *84 performed_via_github_app: title: GitHub app @@ -15473,7 +15522,7 @@ paths: url: type: string format: uri - user: &572 + user: &573 title: Public User description: Public User type: object @@ -21175,7 +21224,7 @@ paths: type: array items: *70 examples: - default: &581 + default: &582 value: - login: github id: 1 @@ -22239,7 +22288,7 @@ paths: type: array items: *84 examples: - default: &578 + default: &579 value: total_count: 1 repositories: @@ -27231,6 +27280,12 @@ paths: - all default: open - *206 + - 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 @@ -28720,7 +28775,7 @@ paths: - nuget - container - *135 - - &582 + - &583 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28761,7 +28816,7 @@ paths: default: *214 '403': *43 '401': *41 - '400': &584 + '400': &585 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34188,7 +34243,7 @@ paths: - updated_at - url examples: - default: &562 + default: &563 value: - author: login: octocat @@ -34436,7 +34491,7 @@ paths: application/json: schema: *259 examples: - default: &563 + default: &564 value: author: login: octocat @@ -34619,7 +34674,7 @@ paths: - updated_at - url examples: - default: &564 + default: &565 value: - author: login: octocat @@ -34845,7 +34900,7 @@ paths: application/json: schema: *262 examples: - default: &565 + default: &566 value: author: login: octocat @@ -35522,7 +35577,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &566 + response-if-user-is-a-team-maintainer: &567 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -35587,7 +35642,7 @@ paths: application/json: schema: *273 examples: - response-if-users-membership-with-team-is-now-pending: &567 + response-if-users-membership-with-team-is-now-pending: &568 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -35729,7 +35784,7 @@ paths: - updated_at - permissions examples: - default: &568 + default: &569 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -35806,7 +35861,7 @@ paths: application/json: schema: *274 examples: - default: &569 + default: &570 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36009,7 +36064,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &570 + schema: &571 title: Team Repository description: A team's access to a repository. type: object @@ -36666,7 +36721,7 @@ paths: type: array items: *278 examples: - response-if-child-teams-exist: &571 + response-if-child-teams-exist: &572 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47946,7 +48001,7 @@ paths: check. type: array items: *345 - deployment: &605 + deployment: &606 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61064,7 +61119,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &635 + last_response: &636 title: Hook Response type: object properties: @@ -61686,7 +61741,7 @@ paths: - html_url - created_at examples: - default: &586 + default: &587 value: - id: 1 repository: @@ -62047,6 +62102,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 @@ -62320,6 +62383,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -63610,6 +63678,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -74970,7 +75044,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &653 + items: &654 type: object properties: type: @@ -79122,6 +79196,7 @@ paths: timeline_url: type: string format: uri + type: *558 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -80464,7 +80539,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &559 type: object properties: status: @@ -80484,7 +80559,7 @@ paths: - name - number examples: - default: &559 + default: &560 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -80529,9 +80604,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '401': description: Unauthorized requestBody: @@ -81095,7 +81170,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 type: object properties: key: @@ -81103,7 +81178,7 @@ paths: pretty-print: type: string examples: - default: &561 + default: &562 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 @@ -81146,9 +81221,9 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: - default: *561 + default: *562 '401': description: Unauthorized requestBody: @@ -81200,9 +81275,9 @@ paths: application/json: schema: type: array - items: *560 + items: *561 examples: - default: *561 + default: *562 '401': description: Unauthorized requestBody: @@ -81532,7 +81607,7 @@ paths: type: array items: *259 examples: - default: *562 + default: *563 headers: Link: *6 x-github: @@ -81684,7 +81759,7 @@ paths: application/json: schema: *259 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81753,7 +81828,7 @@ paths: type: array items: *262 examples: - default: *564 + default: *565 headers: Link: *6 x-github: @@ -81895,7 +81970,7 @@ paths: application/json: schema: *262 examples: - default: *565 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82363,7 +82438,7 @@ paths: application/json: schema: *273 examples: - response-if-user-is-a-team-maintainer: *566 + response-if-user-is-a-team-maintainer: *567 '404': *26 x-github: githubCloudOnly: false @@ -82424,7 +82499,7 @@ paths: application/json: schema: *273 examples: - response-if-users-membership-with-team-is-now-pending: *567 + response-if-users-membership-with-team-is-now-pending: *568 '403': description: Forbidden if team synchronization is set up '422': @@ -82500,7 +82575,7 @@ paths: type: array items: *274 examples: - default: *568 + default: *569 headers: Link: *6 '404': *26 @@ -82536,7 +82611,7 @@ paths: application/json: schema: *274 examples: - default: *569 + default: *570 '404': description: Not Found if project is not managed by this team x-github: @@ -82708,7 +82783,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *570 + schema: *571 examples: alternative-response-with-extra-repository-information: value: @@ -82950,7 +83025,7 @@ paths: type: array items: *278 examples: - response-if-child-teams-exist: *571 + response-if-child-teams-exist: *572 headers: Link: *6 '404': *26 @@ -82983,7 +83058,7 @@ paths: application/json: schema: oneOf: - - &573 + - &574 title: Private User description: Private User type: object @@ -83186,7 +83261,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *572 + - *573 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -83337,7 +83412,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -83415,7 +83490,7 @@ paths: type: array items: *213 examples: - default: &583 + default: &584 value: - id: 197 name: hello_docker @@ -83502,7 +83577,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: Email description: Email type: object @@ -83527,7 +83602,7 @@ paths: - verified - visibility examples: - default: &585 + default: &586 value: - email: octocat@github.com verified: true @@ -83602,7 +83677,7 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: default: value: @@ -83858,7 +83933,7 @@ paths: application/json: schema: type: array - items: &575 + items: &576 title: GPG Key description: A unique encryption key type: object @@ -83989,7 +84064,7 @@ paths: - subkeys - revoked examples: - default: &595 + default: &596 value: - id: 3 name: Octocat's GPG Key @@ -84074,9 +84149,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &576 + default: &577 value: id: 3 name: Octocat's GPG Key @@ -84133,7 +84208,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: - - &577 + - &578 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -84145,9 +84220,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *26 '304': *42 '403': *43 @@ -84170,7 +84245,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: - - *577 + - *578 responses: '204': description: Response @@ -84361,7 +84436,7 @@ paths: type: array items: *84 examples: - default: *578 + default: *579 headers: Link: *6 '404': *26 @@ -84537,7 +84612,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Key description: Key type: object @@ -84634,9 +84709,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &580 + default: &581 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -84675,9 +84750,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 '404': *26 '304': *42 '403': *43 @@ -85520,7 +85595,7 @@ paths: type: array items: *70 examples: - default: *581 + default: *582 headers: Link: *6 '304': *42 @@ -85562,7 +85637,7 @@ paths: - docker - nuget - container - - *582 + - *583 - *5 - *4 responses: @@ -85574,8 +85649,8 @@ paths: type: array items: *213 examples: - default: *583 - '400': *584 + default: *584 + '400': *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85604,7 +85679,7 @@ paths: application/json: schema: *213 examples: - default: &596 + default: &597 value: id: 40201 name: octo-name @@ -86054,9 +86129,9 @@ paths: application/json: schema: type: array - items: *574 + items: *575 examples: - default: *585 + default: *586 headers: Link: *6 '304': *42 @@ -86169,7 +86244,7 @@ paths: type: array items: *84 examples: - default: &592 + default: &593 summary: Default response value: - id: 1296269 @@ -86513,7 +86588,7 @@ paths: type: array items: *428 examples: - default: *586 + default: *587 headers: Link: *6 '304': *42 @@ -86592,7 +86667,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Social account description: Social media account type: object @@ -86607,7 +86682,7 @@ paths: - provider - url examples: - default: &588 + default: &589 value: - provider: twitter url: https://twitter.com/github @@ -86669,9 +86744,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *588 + default: *589 '422': *35 '304': *42 '404': *26 @@ -86758,7 +86833,7 @@ paths: application/json: schema: type: array - items: &589 + items: &590 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -86778,7 +86853,7 @@ paths: - title - created_at examples: - default: &597 + default: &598 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86844,9 +86919,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86877,7 +86952,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: - - &591 + - &592 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -86889,9 +86964,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *26 '304': *42 '403': *43 @@ -86914,7 +86989,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: - - *591 + - *592 responses: '204': description: Response @@ -86943,7 +87018,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: - - &598 + - &599 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 @@ -86968,11 +87043,11 @@ paths: type: array items: *84 examples: - default-response: *592 + default-response: *593 application/vnd.github.v3.star+json: schema: type: array - items: &599 + items: &600 title: Starred Repository description: Starred Repository type: object @@ -87342,10 +87417,10 @@ paths: application/json: schema: oneOf: + - *574 - *573 - - *572 examples: - default-response: &593 + default-response: &594 summary: Default response value: login: octocat @@ -87380,7 +87455,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &594 + response-with-git-hub-plan-information: &595 summary: Response with GitHub plan information value: login: octocat @@ -87492,11 +87567,11 @@ paths: application/json: schema: oneOf: + - *574 - *573 - - *572 examples: - default-response: *593 - response-with-git-hub-plan-information: *594 + default-response: *594 + response-with-git-hub-plan-information: *595 '404': *26 x-github: githubCloudOnly: false @@ -87527,7 +87602,7 @@ paths: type: array items: *213 examples: - default: *583 + default: *584 '403': *43 '401': *41 x-github: @@ -87931,9 +88006,9 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: - default: *595 + default: *596 headers: Link: *6 x-github: @@ -88115,7 +88190,7 @@ paths: type: array items: *70 examples: - default: *581 + default: *582 headers: Link: *6 x-github: @@ -88154,7 +88229,7 @@ paths: - docker - nuget - container - - *582 + - *583 - *8 - *5 - *4 @@ -88167,10 +88242,10 @@ paths: type: array items: *213 examples: - default: *583 + default: *584 '403': *43 '401': *41 - '400': *584 + '400': *585 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88200,7 +88275,7 @@ paths: application/json: schema: *213 examples: - default: *596 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88833,9 +88908,9 @@ paths: application/json: schema: type: array - items: *587 + items: *588 examples: - default: *588 + default: *589 headers: Link: *6 x-github: @@ -88865,9 +88940,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: *597 + default: *598 headers: Link: *6 x-github: @@ -88892,7 +88967,7 @@ paths: url: https://docs.github.com/enterprise-server@3.12/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *598 + - *599 - *9 - *4 - *5 @@ -88904,11 +88979,11 @@ paths: schema: anyOf: - type: array - items: *599 + items: *600 - type: array items: *84 examples: - default-response: *592 + default-response: *593 headers: Link: *6 x-github: @@ -89118,7 +89193,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &600 + enterprise: &601 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -89176,7 +89251,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &601 + installation: &602 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -89195,7 +89270,7 @@ x-webhooks: required: - id - node_id - organization: &602 + organization: &603 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -89255,13 +89330,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &603 + repository: &604 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &629 + properties: &630 id: description: Unique identifier of the repository example: 42 @@ -89938,7 +90013,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &630 + required: &631 - archive_url - assignees_url - blobs_url @@ -90089,10 +90164,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -90178,11 +90253,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: &604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: &605 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) @@ -90399,11 +90474,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: *604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: *605 sender: *19 required: - action @@ -90577,11 +90652,11 @@ x-webhooks: - everyone required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - rule: *604 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + rule: *605 sender: *19 required: - action @@ -90666,12 +90741,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 ref: type: string - repository: *603 + repository: *604 sender: *19 required: - cache_location @@ -90765,7 +90840,7 @@ x-webhooks: type: string enum: - completed - check_run: &606 + check_run: &607 title: CheckRun description: A check performed on the code of a given code change type: object @@ -90866,7 +90941,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *605 + deployment: *606 details_url: example: https://example.com type: string @@ -90951,9 +91026,9 @@ x-webhooks: - output - app - pull_requests - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -91356,10 +91431,10 @@ x-webhooks: type: string enum: - created - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -91765,10 +91840,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 requested_action: description: The action requested by the user. type: object @@ -92183,10 +92258,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *606 - installation: *601 - organization: *602 - repository: *603 + check_run: *607 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - check_run @@ -93173,10 +93248,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -93856,10 +93931,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -94533,10 +94608,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -94854,20 +94929,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &607 + commit_oid: &608 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: *600 - installation: *601 - organization: *602 - ref: &608 + enterprise: *601 + installation: *602 + organization: *603 + ref: &609 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: *603 + repository: *604 sender: *19 required: - action @@ -95269,12 +95344,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -95547,12 +95622,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -95891,12 +95966,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -96171,16 +96246,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *603 + repository: *604 sender: *19 required: - action @@ -96424,12 +96499,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *607 - enterprise: *600 - installation: *601 - organization: *602 - ref: *608 - repository: *603 + commit_oid: *608 + enterprise: *601 + installation: *602 + organization: *603 + ref: *609 + repository: *604 sender: *19 required: - action @@ -96696,10 +96771,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -96789,18 +96864,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *602 - pusher_type: &609 + organization: *603 + pusher_type: &610 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &610 + ref: &611 description: The [`git ref`](https://docs.github.com/enterprise-server@3.12/rest/git/refs#get-a-reference) resource. type: string @@ -96810,7 +96885,7 @@ x-webhooks: enum: - tag - branch - repository: *603 + repository: *604 sender: *19 required: - ref @@ -96899,18 +96974,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - pusher_type: *609 - ref: *610 + enterprise: *601 + installation: *602 + organization: *603 + pusher_type: *610 + ref: *611 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *603 + repository: *604 sender: *19 required: - ref @@ -97005,10 +97080,10 @@ x-webhooks: enum: - auto_dismissed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97103,10 +97178,10 @@ x-webhooks: enum: - auto_reopened alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97201,10 +97276,10 @@ x-webhooks: enum: - created alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97297,10 +97372,10 @@ x-webhooks: enum: - dismissed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97393,10 +97468,10 @@ x-webhooks: enum: - fixed alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97490,10 +97565,10 @@ x-webhooks: enum: - reintroduced alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97586,10 +97661,10 @@ x-webhooks: enum: - reopened alert: *390 - installation: *601 - organization: *602 - enterprise: *600 - repository: *603 + installation: *602 + organization: *603 + enterprise: *601 + repository: *604 sender: *19 required: - action @@ -97676,9 +97751,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - key: &611 + enterprise: *601 + installation: *602 + key: &612 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.12/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -97712,8 +97787,8 @@ x-webhooks: - verified - created_at - read_only - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -97800,11 +97875,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - key: *611 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + key: *612 + organization: *603 + repository: *604 sender: *19 required: - action @@ -98375,12 +98450,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: &615 + workflow: &616 title: Workflow type: object nullable: true @@ -99120,9 +99195,9 @@ x-webhooks: pull_requests: type: array items: *477 - repository: *603 - organization: *602 - installation: *601 + repository: *604 + organization: *603 + installation: *602 sender: *19 responses: '200': @@ -99203,7 +99278,7 @@ x-webhooks: type: string enum: - approved - approver: &612 + approver: &613 type: object properties: avatar_url: @@ -99246,11 +99321,11 @@ x-webhooks: type: string comment: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - reviewers: &613 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + reviewers: &614 type: array items: type: object @@ -99329,7 +99404,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &614 + workflow_job_run: &615 type: object properties: conclusion: @@ -100070,18 +100145,18 @@ x-webhooks: type: string enum: - rejected - approver: *612 + approver: *613 comment: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - reviewers: *613 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + reviewers: *614 sender: *19 since: type: string - workflow_job_run: *614 + workflow_job_run: *615 workflow_job_runs: type: array items: @@ -100795,13 +100870,13 @@ x-webhooks: type: string enum: - requested - enterprise: *600 + enterprise: *601 environment: type: string - installation: *601 - organization: *602 - repository: *603 - requestor: &620 + installation: *602 + organization: *603 + repository: *604 + requestor: &621 title: User type: object nullable: true @@ -102710,12 +102785,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Deployment Workflow Run type: object @@ -103405,7 +103480,7 @@ x-webhooks: type: string enum: - answered - answer: &618 + answer: &619 type: object properties: author_association: @@ -103562,7 +103637,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &616 + discussion: &617 title: Discussion description: A Discussion in a repository. type: object @@ -103870,10 +103945,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104010,11 +104085,11 @@ x-webhooks: - from required: - category - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104107,11 +104182,11 @@ x-webhooks: type: string enum: - closed - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104203,7 +104278,7 @@ x-webhooks: type: string enum: - created - comment: &617 + comment: &618 type: object properties: author_association: @@ -104360,11 +104435,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104457,12 +104532,12 @@ x-webhooks: type: string enum: - deleted - comment: *617 - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + comment: *618 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104567,12 +104642,12 @@ x-webhooks: - from required: - body - comment: *617 - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + comment: *618 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104666,11 +104741,11 @@ x-webhooks: type: string enum: - created - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104762,11 +104837,11 @@ x-webhooks: type: string enum: - deleted - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104876,11 +104951,11 @@ x-webhooks: type: string required: - from - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -104972,10 +105047,10 @@ x-webhooks: type: string enum: - labeled - discussion: *616 - enterprise: *600 - installation: *601 - label: &619 + discussion: *617 + enterprise: *601 + installation: *602 + label: &620 title: Label type: object properties: @@ -105007,8 +105082,8 @@ x-webhooks: - color - default - description - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105101,11 +105176,11 @@ x-webhooks: type: string enum: - locked - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105197,11 +105272,11 @@ x-webhooks: type: string enum: - pinned - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105293,11 +105368,11 @@ x-webhooks: type: string enum: - reopened - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105392,16 +105467,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *616 - new_repository: *603 + new_discussion: *617 + new_repository: *604 required: - new_discussion - new_repository - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105494,10 +105569,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *616 - old_answer: *618 - organization: *602 - repository: *603 + discussion: *617 + old_answer: *619 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105589,12 +105664,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *616 - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105687,11 +105762,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -105783,11 +105858,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *616 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + discussion: *617 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -106028,7 +106103,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *600 + enterprise: *601 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.12/rest/repos/repos#get-a-repository) resource. @@ -106688,9 +106763,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - forkee @@ -106856,9 +106931,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pages: description: The pages that were updated. type: array @@ -106895,7 +106970,7 @@ x-webhooks: - action - sha - html_url - repository: *603 + repository: *604 sender: *19 required: - pages @@ -106981,10 +107056,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: &621 + organization: *603 + repositories: &622 description: An array of repository objects that the installation can access. type: array @@ -107010,8 +107085,8 @@ x-webhooks: - name - full_name - private - repository: *603 - requester: *620 + repository: *604 + requester: *621 sender: *19 required: - action @@ -107096,11 +107171,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107186,11 +107261,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107276,10 +107351,10 @@ x-webhooks: type: string enum: - added - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories_added: &622 + organization: *603 + repositories_added: &623 description: An array of repository objects, which were added to the installation. type: array @@ -107325,15 +107400,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *603 - repository_selection: &623 + repository: *604 + repository_selection: &624 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *620 + requester: *621 sender: *19 required: - action @@ -107422,10 +107497,10 @@ x-webhooks: type: string enum: - removed - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories_added: *622 + organization: *603 + repositories_added: *623 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -107452,9 +107527,9 @@ x-webhooks: - name - full_name - private - repository: *603 - repository_selection: *623 - requester: *620 + repository: *604 + repository_selection: *624 + requester: *621 sender: *19 required: - action @@ -107543,11 +107618,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -107736,10 +107811,10 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 target_type: type: string @@ -107828,11 +107903,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *600 + enterprise: *601 installation: *39 - organization: *602 - repositories: *621 - repository: *603 + organization: *603 + repositories: *622 + repository: *604 requester: nullable: true sender: *19 @@ -108094,8 +108169,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -108918,6 +108993,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -109250,8 +109326,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -109341,7 +109417,7 @@ x-webhooks: type: string enum: - deleted - comment: &624 + comment: &625 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.12/rest/issues/comments#get-an-issue-comment) itself. @@ -109506,8 +109582,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -110326,6 +110402,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -110660,8 +110737,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -110751,7 +110828,7 @@ x-webhooks: type: string enum: - edited - changes: &645 + changes: &646 description: The changes to the comment. type: object properties: @@ -110763,9 +110840,9 @@ x-webhooks: type: string required: - from - comment: *624 - enterprise: *600 - installation: *601 + comment: *625 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111587,6 +111664,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -111919,8 +111997,8 @@ x-webhooks: - state - locked - assignee - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -112012,10 +112090,10 @@ x-webhooks: type: string enum: - assigned - assignee: *620 - enterprise: *600 - installation: *601 - issue: &627 + assignee: *621 + enterprise: *601 + installation: *602 + issue: &628 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -112833,6 +112911,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -112933,8 +113012,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -113024,8 +113103,8 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -113848,6 +113927,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -114083,8 +114163,8 @@ x-webhooks: required: - state - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -114173,8 +114253,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -114986,6 +115066,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -115085,8 +115166,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -115175,8 +115256,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -116012,6 +116093,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -116090,7 +116172,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &625 + milestone: &626 title: Milestone description: A collection of related issues and pull requests. type: object @@ -116228,8 +116310,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -116338,8 +116420,8 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -117154,6 +117236,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -117257,9 +117340,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *619 - organization: *602 - repository: *603 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -117349,8 +117432,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -118164,6 +118247,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -118267,9 +118351,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *619 - organization: *602 - repository: *603 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -118359,8 +118443,8 @@ x-webhooks: type: string enum: - locked - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -119198,6 +119282,7 @@ x-webhooks: timeline_url: type: string format: uri + type: *558 title: description: Title of the issue type: string @@ -119278,8 +119363,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -119368,8 +119453,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -120204,6 +120289,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -120281,9 +120367,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *625 - organization: *602 - repository: *603 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -121748,8 +121834,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -122567,6 +122653,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -122666,8 +122753,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -122757,9 +122844,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *600 - installation: *601 - issue: &626 + enterprise: *601 + installation: *602 + issue: &627 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -123571,6 +123658,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -123670,8 +123758,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -123760,8 +123848,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -124678,8 +124766,9 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + type: *558 + organization: *603 + repository: *604 sender: *19 required: - action @@ -125584,6 +125673,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -126145,11 +126235,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *600 - installation: *601 - issue: *626 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *627 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126240,7 +126330,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &648 + assignee: &649 title: User type: object nullable: true @@ -126310,11 +126400,11 @@ x-webhooks: required: - login - id - enterprise: *600 - installation: *601 - issue: *627 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *628 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126403,12 +126493,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *600 - installation: *601 - issue: *627 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *628 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -126498,8 +126588,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -127338,6 +127428,7 @@ x-webhooks: title: description: Title of the issue type: string + type: *558 updated_at: type: string format: date-time @@ -127415,8 +127506,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127506,11 +127597,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *600 - installation: *601 - issue: *626 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + issue: *627 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127599,11 +127690,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127691,11 +127782,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127815,11 +127906,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - label: *619 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + label: *620 + organization: *603 + repository: *604 sender: *19 required: - action @@ -127920,11 +128011,11 @@ x-webhooks: - read required: - to - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128034,11 +128125,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128127,11 +128218,11 @@ x-webhooks: type: string enum: - removed - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128219,11 +128310,11 @@ x-webhooks: type: string enum: - added - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 scope: description: The scope of the membership. Currently, can only be `team`. @@ -128299,7 +128390,7 @@ x-webhooks: required: - login - id - team: &628 + team: &629 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -128499,11 +128590,11 @@ x-webhooks: type: string enum: - removed - enterprise: *600 - installation: *601 - member: *620 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + member: *621 + organization: *603 + repository: *604 scope: description: The scope of the membership. Currently, can only be `team`. @@ -128580,7 +128671,7 @@ x-webhooks: required: - login - id - team: *628 + team: *629 required: - action - scope @@ -128668,7 +128759,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 + enterprise: *601 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -128776,16 +128867,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *601 - organization: *602 + installation: *602 + organization: *603 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -128876,11 +128967,11 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -128969,9 +129060,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - milestone: &631 + enterprise: *601 + installation: *602 + milestone: &632 title: Milestone description: A collection of related issues and pull requests. type: object @@ -129108,8 +129199,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129198,11 +129289,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129322,11 +129413,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - milestone: *625 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *626 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129416,11 +129507,11 @@ x-webhooks: type: string enum: - opened - enterprise: *600 - installation: *601 - milestone: *631 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + milestone: *632 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129509,9 +129600,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - membership: &632 + enterprise: *601 + installation: *602 + membership: &633 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -129603,8 +129694,8 @@ x-webhooks: - role - organization_url - user - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129692,11 +129783,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -129785,8 +129876,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -129902,10 +129993,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action - invitation @@ -129993,11 +130084,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -130094,11 +130185,11 @@ x-webhooks: properties: from: type: string - enterprise: *600 - installation: *601 - membership: *632 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + membership: *633 + organization: *603 + repository: *604 sender: *19 required: - action @@ -130184,9 +130275,9 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 package: description: Information about the package. type: object @@ -130685,7 +130776,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &633 + items: &634 title: Ruby Gems metadata type: object properties: @@ -130780,7 +130871,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -130866,9 +130957,9 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 package: description: Information about the package. type: object @@ -131221,7 +131312,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *633 + items: *634 source_url: type: string format: uri @@ -131291,7 +131382,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -131478,12 +131569,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *600 + enterprise: *601 id: type: integer - installation: *601 - organization: *602 - repository: *603 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - id @@ -131563,7 +131654,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &634 + personal_access_token_request: &635 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -131709,10 +131800,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *600 - organization: *602 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131791,11 +131882,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *634 - enterprise: *600 - organization: *602 + personal_access_token_request: *635 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131873,11 +131964,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *634 - enterprise: *600 - organization: *602 + personal_access_token_request: *635 + enterprise: *601 + organization: *603 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -131954,11 +132045,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *634 - organization: *602 - enterprise: *600 + personal_access_token_request: *635 + organization: *603 + enterprise: *601 sender: *19 - installation: *601 + installation: *602 required: - action - personal_access_token_request @@ -132072,7 +132163,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *635 + last_response: *636 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -132104,8 +132195,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 zen: description: Random string of GitHub zen. @@ -132360,10 +132451,10 @@ x-webhooks: - from required: - note - enterprise: *600 - installation: *601 - organization: *602 - project_card: &636 + enterprise: *601 + installation: *602 + organization: *603 + project_card: &637 title: Project Card type: object properties: @@ -132482,7 +132573,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -132573,11 +132664,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project_card: *636 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_card: *637 + repository: *604 sender: *19 required: - action @@ -132667,9 +132758,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 project_card: title: Project Card type: object @@ -132797,8 +132888,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -132902,11 +132993,11 @@ x-webhooks: - from required: - note - enterprise: *600 - installation: *601 - organization: *602 - project_card: *636 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_card: *637 + repository: *604 sender: *19 required: - action @@ -133010,9 +133101,9 @@ x-webhooks: - from required: - column_id - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 project_card: allOf: - title: Project Card @@ -133202,7 +133293,7 @@ x-webhooks: type: string required: - after_id - repository: *603 + repository: *604 sender: *19 required: - action @@ -133292,10 +133383,10 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - organization: *602 - project: &638 + enterprise: *601 + installation: *602 + organization: *603 + project: &639 title: Project type: object properties: @@ -133419,7 +133510,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -133509,10 +133600,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project_column: &637 + enterprise: *601 + installation: *602 + organization: *603 + project_column: &638 title: Project Column type: object properties: @@ -133551,7 +133642,7 @@ x-webhooks: - name - created_at - updated_at - repository: *603 + repository: *604 sender: *19 required: - action @@ -133640,18 +133731,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -133751,11 +133842,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 + repository: *604 sender: *19 required: - action @@ -133845,11 +133936,11 @@ x-webhooks: type: string enum: - moved - enterprise: *600 - installation: *601 - organization: *602 - project_column: *637 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project_column: *638 + repository: *604 sender: *19 required: - action @@ -133939,11 +134030,11 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134033,18 +134124,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - project: *638 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *629 - required: *630 + properties: *630 + required: *631 nullable: true sender: *19 required: @@ -134156,11 +134247,11 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134249,11 +134340,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 - organization: *602 - project: *638 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + project: *639 + repository: *604 sender: *19 required: - action @@ -134344,9 +134435,9 @@ x-webhooks: type: string enum: - closed - installation: *601 - organization: *602 - projects_v2: &639 + installation: *602 + organization: *603 + projects_v2: &640 title: Projects v2 Project description: A projects v2 project type: object @@ -134499,9 +134590,9 @@ x-webhooks: type: string enum: - created - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134592,9 +134683,9 @@ x-webhooks: type: string enum: - deleted - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134721,9 +134812,9 @@ x-webhooks: type: string to: type: string - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -134816,7 +134907,7 @@ x-webhooks: type: string enum: - archived - changes: &641 + changes: &642 type: object properties: archived_at: @@ -134830,9 +134921,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *601 - organization: *602 - projects_v2_item: &640 + installation: *602 + organization: *603 + projects_v2_item: &641 title: Projects v2 Item description: An item belonging to a project type: object @@ -134976,9 +135067,9 @@ x-webhooks: nullable: true to: type: string - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135070,9 +135161,9 @@ x-webhooks: type: string enum: - created - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135163,9 +135254,9 @@ x-webhooks: type: string enum: - deleted - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135287,9 +135378,9 @@ x-webhooks: nullable: true required: - body - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135394,9 +135485,9 @@ x-webhooks: to: type: string nullable: true - installation: *601 - organization: *602 - projects_v2_item: *640 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135489,10 +135580,10 @@ x-webhooks: type: string enum: - restored - changes: *641 - installation: *601 - organization: *602 - projects_v2_item: *640 + changes: *642 + installation: *602 + organization: *603 + projects_v2_item: *641 sender: *19 required: - action @@ -135584,9 +135675,9 @@ x-webhooks: type: string enum: - reopened - installation: *601 - organization: *602 - projects_v2: *639 + installation: *602 + organization: *603 + projects_v2: *640 sender: *19 required: - action @@ -135667,10 +135758,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - repository @@ -135757,13 +135848,13 @@ x-webhooks: type: string enum: - assigned - assignee: *620 - enterprise: *600 - installation: *601 - number: &642 + assignee: *621 + enterprise: *601 + installation: *602 + number: &643 description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -138046,7 +138137,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -138138,11 +138229,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -140420,7 +140511,7 @@ x-webhooks: - draft reason: type: string - repository: *603 + repository: *604 sender: *19 required: - action @@ -140512,11 +140603,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -142794,7 +142885,7 @@ x-webhooks: - draft reason: type: string - repository: *603 + repository: *604 sender: *19 required: - action @@ -142886,11 +142977,11 @@ x-webhooks: type: string enum: - closed - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: &643 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: &644 allOf: - *477 - type: object @@ -142954,7 +143045,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *603 + repository: *604 sender: *19 required: - action @@ -143045,12 +143136,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -143140,11 +143231,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *600 + enterprise: *601 milestone: *458 - number: *642 - organization: *602 - pull_request: &644 + number: *643 + organization: *603 + pull_request: &645 title: Pull Request type: object properties: @@ -145407,7 +145498,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -145539,12 +145630,12 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -145634,11 +145725,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *600 - installation: *601 - label: *619 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + label: *620 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -147920,7 +148011,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -148011,10 +148102,10 @@ x-webhooks: type: string enum: - locked - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -150294,7 +150385,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -150384,12 +150475,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *600 + enterprise: *601 milestone: *458 - number: *642 - organization: *602 - pull_request: *644 - repository: *603 + number: *643 + organization: *603 + pull_request: *645 + repository: *604 sender: *19 required: - action @@ -150478,12 +150569,12 @@ x-webhooks: type: string enum: - opened - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -150574,12 +150665,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -150669,12 +150760,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *600 - installation: *601 - number: *642 - organization: *602 - pull_request: *643 - repository: *603 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 + pull_request: *644 + repository: *604 sender: *19 required: - action @@ -151050,9 +151141,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -153222,7 +153313,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -153312,7 +153403,7 @@ x-webhooks: type: string enum: - deleted - comment: &646 + comment: &647 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. @@ -153597,9 +153688,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -155757,7 +155848,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -155847,11 +155938,11 @@ x-webhooks: type: string enum: - edited - changes: *645 - comment: *646 - enterprise: *600 - installation: *601 - organization: *602 + changes: *646 + comment: *647 + enterprise: *601 + installation: *602 + organization: *603 pull_request: type: object properties: @@ -158012,7 +158103,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *603 + repository: *604 sender: *19 required: - action @@ -158103,9 +158194,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -160278,7 +160369,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 review: description: The review that was affected. type: object @@ -160531,9 +160622,9 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -162587,8 +162678,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 - review: &647 + repository: *604 + review: &648 description: The review that was affected. type: object properties: @@ -162827,12 +162918,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -165115,7 +165206,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_reviewer: title: User type: object @@ -165199,12 +165290,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -167494,7 +167585,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_team: title: Team description: Groups of organization members that gives permissions @@ -167696,12 +167787,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -169986,7 +170077,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_reviewer: title: User type: object @@ -170071,12 +170162,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *600 - installation: *601 + enterprise: *601 + installation: *602 number: description: The pull request number. type: integer - organization: *602 + organization: *603 pull_request: title: Pull Request type: object @@ -172352,7 +172443,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 requested_team: title: Team description: Groups of organization members that gives permissions @@ -172543,9 +172634,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -174720,8 +174811,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 - review: *647 + repository: *604 + review: *648 sender: *19 required: - action @@ -174811,9 +174902,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -176883,7 +176974,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 sender: *19 thread: type: object @@ -177276,9 +177367,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 pull_request: title: Simple Pull Request type: object @@ -179334,7 +179425,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *603 + repository: *604 sender: *19 thread: type: object @@ -179730,10 +179821,10 @@ x-webhooks: type: string before: type: string - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -182004,7 +182095,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -182096,11 +182187,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *648 - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + assignee: *649 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -184383,7 +184474,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -184472,11 +184563,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *600 - installation: *601 - label: *619 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + label: *620 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -186749,7 +186840,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -186840,10 +186931,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *600 - installation: *601 - number: *642 - organization: *602 + enterprise: *601 + installation: *602 + number: *643 + organization: *603 pull_request: title: Pull Request type: object @@ -189108,7 +189199,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *603 + repository: *604 sender: *19 required: - action @@ -189318,7 +189409,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *600 + enterprise: *601 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -189410,8 +189501,8 @@ x-webhooks: - url - author - committer - installation: *601 - organization: *602 + installation: *602 + organization: *603 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -189990,9 +190081,9 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 registry_package: type: object properties: @@ -190438,7 +190529,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *633 + items: *634 summary: type: string tag_name: @@ -190492,7 +190583,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -190580,9 +190671,9 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 registry_package: type: object properties: @@ -190890,7 +190981,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *633 + items: *634 summary: type: string tag_name: @@ -190939,7 +191030,7 @@ x-webhooks: - owner - package_version - registry - repository: *603 + repository: *604 sender: *19 required: - action @@ -191026,10 +191117,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - release: &649 + enterprise: *601 + installation: *602 + organization: *603 + release: &650 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -191334,7 +191425,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *603 + repository: *604 sender: *19 required: - action @@ -191421,11 +191512,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -191552,11 +191643,11 @@ x-webhooks: type: boolean required: - to - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -191644,9 +191735,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) @@ -191955,7 +192046,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *603 + repository: *604 sender: *19 required: - action @@ -192041,10 +192132,10 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 - release: &650 + enterprise: *601 + installation: *602 + organization: *603 + release: &651 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -192350,7 +192441,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *603 + repository: *604 sender: *19 required: - action @@ -192436,11 +192527,11 @@ x-webhooks: type: string enum: - released - enterprise: *600 - installation: *601 - organization: *602 - release: *649 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *650 + repository: *604 sender: *19 required: - action @@ -192526,11 +192617,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *600 - installation: *601 - organization: *602 - release: *650 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + release: *651 + repository: *604 sender: *19 required: - action @@ -192616,10 +192707,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192704,10 +192795,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192792,10 +192883,10 @@ x-webhooks: type: string enum: - archived - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192882,10 +192973,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -192973,10 +193064,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193070,10 +193161,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193195,10 +193286,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193286,10 +193377,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193376,10 +193467,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193483,10 +193574,10 @@ x-webhooks: - name required: - repository - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -193566,10 +193657,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 sender: *19 required: @@ -193648,10 +193739,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 sender: *19 required: @@ -193730,10 +193821,10 @@ x-webhooks: type: string enum: - edited - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 repository_ruleset: *241 changes: type: object @@ -194048,10 +194139,10 @@ x-webhooks: - from required: - owner - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194139,10 +194230,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194230,7 +194321,7 @@ x-webhooks: type: string enum: - create - alert: &651 + alert: &652 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -194351,10 +194442,10 @@ x-webhooks: type: string enum: - open - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194570,10 +194661,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194661,11 +194752,11 @@ x-webhooks: type: string enum: - reopen - alert: *651 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *652 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194874,10 +194965,10 @@ x-webhooks: enum: - fixed - open - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -194965,7 +195056,7 @@ x-webhooks: type: string enum: - created - alert: &652 + alert: &653 type: object properties: number: *93 @@ -195040,10 +195131,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195134,11 +195225,11 @@ x-webhooks: type: string enum: - created - alert: *652 - installation: *601 - location: *653 - organization: *602 - repository: *603 + alert: *653 + installation: *602 + location: *654 + organization: *603 + repository: *604 sender: *19 required: - location @@ -195381,11 +195472,11 @@ x-webhooks: type: string enum: - reopened - alert: *652 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *653 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195473,11 +195564,11 @@ x-webhooks: type: string enum: - resolved - alert: *652 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + alert: *653 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -195563,11 +195654,11 @@ x-webhooks: type: string enum: - published - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - security_advisory: &654 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + security_advisory: &655 description: The details of the security advisory, including summary, description, and severity. type: object @@ -195760,11 +195851,11 @@ x-webhooks: type: string enum: - updated - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 - security_advisory: *654 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 + security_advisory: *655 sender: *19 required: - action @@ -195847,10 +195938,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -196045,9 +196136,9 @@ x-webhooks: type: object properties: security_and_analysis: *235 - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: *287 sender: *19 required: @@ -196136,12 +196227,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: &655 + sponsorship: &656 type: object properties: created_at: @@ -196452,12 +196543,12 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - sponsorship @@ -196555,12 +196646,12 @@ x-webhooks: type: string required: - from - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196647,17 +196738,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &656 + effective_date: &657 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: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - sponsorship @@ -196741,7 +196832,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &657 + changes: &658 type: object properties: tier: @@ -196785,13 +196876,13 @@ x-webhooks: - from required: - tier - effective_date: *656 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + effective_date: *657 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196878,13 +196969,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *657 - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + changes: *658 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - sponsorship: *655 + sponsorship: *656 required: - action - changes @@ -196968,10 +197059,10 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -197064,10 +197155,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -197493,15 +197584,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *600 + enterprise: *601 id: description: The unique identifier of the status. type: integer - installation: *601 + installation: *602 name: type: string - organization: *602 - repository: *603 + organization: *603 + repository: *604 sender: *19 sha: description: The Commit SHA. @@ -197613,12 +197704,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - team: &658 + team: &659 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -197818,9 +197909,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -198272,7 +198363,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -198358,9 +198449,9 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -198812,7 +198903,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -198899,9 +198990,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -199353,7 +199444,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -199507,9 +199598,9 @@ x-webhooks: - from required: - permissions - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -199961,7 +200052,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - changes @@ -200049,9 +200140,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *600 - installation: *601 - organization: *602 + enterprise: *601 + installation: *602 + organization: *603 repository: title: Repository description: A git repository @@ -200503,7 +200594,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *658 + team: *659 required: - action - team @@ -200586,12 +200677,12 @@ x-webhooks: type: string enum: - created - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action responses: @@ -200669,12 +200760,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - user: *620 + user: *621 required: - action responses: @@ -200755,10 +200846,10 @@ x-webhooks: type: string enum: - started - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 required: - action @@ -200841,16 +200932,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *600 + enterprise: *601 inputs: type: object nullable: true additionalProperties: true - installation: *601 - organization: *602 + installation: *602 + organization: *603 ref: type: string - repository: *603 + repository: *604 sender: *19 workflow: type: string @@ -200942,10 +201033,10 @@ x-webhooks: type: string enum: - completed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: allOf: @@ -201271,10 +201362,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: allOf: @@ -201623,10 +201714,10 @@ x-webhooks: type: string enum: - queued - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: type: object @@ -201850,10 +201941,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 workflow_job: type: object @@ -202079,12 +202170,12 @@ x-webhooks: type: string enum: - completed - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object @@ -203093,12 +203184,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object @@ -204092,12 +204183,12 @@ x-webhooks: type: string enum: - requested - enterprise: *600 - installation: *601 - organization: *602 - repository: *603 + enterprise: *601 + installation: *602 + organization: *603 + repository: *604 sender: *19 - workflow: *615 + workflow: *616 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghes-3.12/ghes-3.12.2022-11-28.json b/descriptions/ghes-3.12/ghes-3.12.2022-11-28.json index e95d0929c5..ceb013ccfb 100644 --- a/descriptions/ghes-3.12/ghes-3.12.2022-11-28.json +++ b/descriptions/ghes-3.12/ghes-3.12.2022-11-28.json @@ -17594,6 +17594,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.", @@ -42785,6 +42794,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.", @@ -42969,6 +42987,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue.", + "nullable": true, + "example": "Epic" } }, "required": [ @@ -43813,6 +43837,12 @@ "items": { "type": "string" } + }, + "type": { + "type": "string", + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "nullable": true, + "example": "Epic" } } }, @@ -90795,7 +90825,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" @@ -95602,6 +95632,66 @@ ], "nullable": true }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "nullable-integration": { "title": "GitHub app", "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", @@ -96024,6 +96114,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -112548,6 +112641,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -118115,6 +118211,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "$ref": "#/components/schemas/nullable-integration" }, @@ -124156,6 +124255,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -125547,6 +125649,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -149098,6 +149203,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -150680,6 +150788,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -152271,6 +152382,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -153896,6 +154010,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -155337,6 +155454,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -156599,6 +156719,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -157850,6 +157973,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -159098,6 +159224,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -160372,6 +160501,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -161614,6 +161746,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -164657,6 +164792,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -166063,6 +166201,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -167173,6 +167314,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -169138,6 +169282,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/descriptions/ghes-3.12/ghes-3.12.2022-11-28.yaml b/descriptions/ghes-3.12/ghes-3.12.2022-11-28.yaml index cad89a7127..17f6839d66 100644 --- a/descriptions/ghes-3.12/ghes-3.12.2022-11-28.yaml +++ b/descriptions/ghes-3.12/ghes-3.12.2022-11-28.yaml @@ -12618,6 +12618,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 @@ -31050,6 +31056,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 @@ -31184,6 +31198,11 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: string + description: The name of the issue type to associate with this issue. + nullable: true + example: Epic required: - title examples: @@ -31780,6 +31799,12 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: string + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + nullable: true + example: Epic examples: default: value: @@ -65070,7 +65095,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 @@ -68964,6 +68989,54 @@ components: - created_at - updated_at nullable: true + issue-type: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: string + description: The description of the issue type. + nullable: true + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description nullable-integration: title: GitHub app description: GitHub apps are a new way to extend GitHub. They can be installed @@ -69287,6 +69360,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -82085,6 +82160,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -86177,6 +86254,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: "$ref": "#/components/schemas/nullable-integration" reactions: @@ -90750,6 +90829,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -91799,6 +91880,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -109323,6 +109406,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -110499,6 +110584,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -111682,6 +111769,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -112890,6 +112979,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -113958,6 +114049,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -114914,6 +115007,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -115850,6 +115945,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -116791,6 +116888,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -117755{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}