diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 41532c530d..1be65cfbe7 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -37948,7 +37948,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -37994,12 +37994,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -76269,7 +76269,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -76312,12 +76312,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -136308,6 +136308,192 @@ "organization" ] }, + "team-member": { + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, "team-membership": { "title": "Team Membership", "description": "Team Membership", @@ -319855,6 +320041,32 @@ } } }, + "team-member-items": { + "value": [ + { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "role": "member", + "inherited": false + } + ] + }, "team-membership-response-if-user-is-a-team-maintainer": { "summary": "Response if user is a team maintainer", "value": { diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index aff1fd044a..4eaa135690 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -27925,6 +27925,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -27956,10 +27958,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -55794,6 +55796,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -55823,10 +55827,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -99384,6 +99388,146 @@ components: - members_count - repos_count - organization + team-member: + title: Team Member + description: A user that is a member of a team, including their role on the + team and whether the membership is inherited from a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on the `List team + members` endpoint, and only when the feature is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through a child + team. `true` means the membership is inherited from a child team; `false` + means the user is a direct (immediate) member of the team. Only present + on the `List team members` endpoint, and only when the feature is enabled + for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url team-membership: title: Team Membership description: Team Membership @@ -236796,6 +236940,28 @@ components: created_at: '2008-01-14T04:33:35Z' updated_at: '2017-08-17T12:37:15Z' type: Organization + team-member-items: + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false team-membership-response-if-user-is-a-team-maintainer: summary: Response if user is a team maintainer value: diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index de97d8e1b1..d9434c1e77 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -37899,7 +37899,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -37945,12 +37945,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -76180,7 +76180,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -76223,12 +76223,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -135681,6 +135681,192 @@ "organization" ] }, + "team-member": { + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, "team-membership": { "title": "Team Membership", "description": "Team Membership", @@ -319013,6 +319199,32 @@ } } }, + "team-member-items": { + "value": [ + { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "role": "member", + "inherited": false + } + ] + }, "team-membership-response-if-user-is-a-team-maintainer": { "summary": "Response if user is a team maintainer", "value": { diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index a1c5f714dc..cbf2af0030 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -27887,6 +27887,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -27918,10 +27920,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -55719,6 +55721,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -55748,10 +55752,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -98923,6 +98927,146 @@ components: - members_count - repos_count - organization + team-member: + title: Team Member + description: A user that is a member of a team, including their role on the + team and whether the membership is inherited from a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on the `List team + members` endpoint, and only when the feature is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through a child + team. `true` means the membership is inherited from a child team; `false` + means the user is a direct (immediate) member of the team. Only present + on the `List team members` endpoint, and only when the feature is enabled + for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url team-membership: title: Team Membership description: Team Membership @@ -236100,6 +236244,28 @@ components: created_at: '2008-01-14T04:33:35Z' updated_at: '2017-08-17T12:37:15Z' type: Organization + team-member-items: + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false team-membership-response-if-user-is-a-team-maintainer: summary: Response if user is a team maintainer value: diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 82247b199b..305b7ab139 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -38160,7 +38160,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -38206,12 +38206,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -76576,7 +76576,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -76619,12 +76619,12 @@ "schema": { "type": "array", "items": { - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" } }, "examples": { "default": { - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" } } } @@ -137220,6 +137220,192 @@ "organization" ] }, + "team-member": { + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", + "type": "object", + "properties": { + "name": { + "type": [ + "string", + "null" + ] + }, + "email": { + "type": [ + "string", + "null" + ] + }, + "login": { + "type": "string", + "examples": [ + "octocat" + ] + }, + "id": { + "type": "integer", + "format": "int64", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VXNlcjE=" + ] + }, + "avatar_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/images/error/octocat_happy.gif" + ] + }, + "gravatar_id": { + "type": [ + "string", + "null" + ], + "examples": [ + "41d064eb2195891e12d0413f63227ea7" + ] + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/octocat" + ] + }, + "followers_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/followers" + ] + }, + "following_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/following{/other_user}" + ] + }, + "gists_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/gists{/gist_id}" + ] + }, + "starred_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/starred{/owner}{/repo}" + ] + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/subscriptions" + ] + }, + "organizations_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/orgs" + ] + }, + "repos_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/repos" + ] + }, + "events_url": { + "type": "string", + "examples": [ + "https://api.github.com/users/octocat/events{/privacy}" + ] + }, + "received_events_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/users/octocat/received_events" + ] + }, + "type": { + "type": "string", + "examples": [ + "User" + ] + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "examples": [ + "\"2020-07-09T00:17:55Z\"" + ] + }, + "user_view_type": { + "type": "string", + "examples": [ + "public" + ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] + } + }, + "required": [ + "avatar_url", + "events_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", + "html_url", + "id", + "node_id", + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" + ] + }, "team-membership": { "title": "Team Membership", "description": "Team Membership", @@ -321803,6 +321989,32 @@ } } }, + "team-member-items": { + "value": [ + { + "login": "octocat", + "id": 1, + "node_id": "MDQ6VXNlcjE=", + "avatar_url": "https://github.com/images/error/octocat_happy.gif", + "gravatar_id": "", + "url": "https://api.github.com/users/octocat", + "html_url": "https://github.com/octocat", + "followers_url": "https://api.github.com/users/octocat/followers", + "following_url": "https://api.github.com/users/octocat/following{/other_user}", + "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", + "organizations_url": "https://api.github.com/users/octocat/orgs", + "repos_url": "https://api.github.com/users/octocat/repos", + "events_url": "https://api.github.com/users/octocat/events{/privacy}", + "received_events_url": "https://api.github.com/users/octocat/received_events", + "type": "User", + "site_admin": false, + "role": "member", + "inherited": false + } + ] + }, "team-membership-response-if-user-is-a-team-maintainer": { "summary": "Response if user is a team maintainer", "value": { diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index c6c1b204dc..8b59165b72 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -28038,6 +28038,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -28069,10 +28071,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -55982,6 +55984,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -56011,10 +56015,10 @@ paths: schema: type: array items: - "$ref": "#/components/schemas/simple-user" + "$ref": "#/components/schemas/team-member" examples: default: - "$ref": "#/components/examples/simple-user-items" + "$ref": "#/components/examples/team-member-items" headers: Link: "$ref": "#/components/headers/link" @@ -100001,6 +100005,146 @@ components: - members_count - repos_count - organization + team-member: + title: Team Member + description: A user that is a member of a team, including their role on the + team and whether the membership is inherited from a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on the `List team + members` endpoint, and only when the feature is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through a child + team. `true` means the membership is inherited from a child team; `false` + means the user is a direct (immediate) member of the team. Only present + on the `List team members` endpoint, and only when the feature is enabled + for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url team-membership: title: Team Membership description: Team Membership @@ -238052,6 +238196,28 @@ components: created_at: '2008-01-14T04:33:35Z' updated_at: '2017-08-17T12:37:15Z' type: Organization + team-member-items: + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false team-membership-response-if-user-is-a-team-maintainer: summary: Response if user is a team maintainer value: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index d72147017c..e8d2f48049 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -266986,7 +266986,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -267056,8 +267056,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -267200,6 +267200,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -267245,7 +267263,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } @@ -724583,7 +724603,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -724644,8 +724664,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -724788,6 +724808,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -724833,7 +724871,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 046f4e6913..75f06ba12c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -14524,7 +14524,7 @@ paths: properties: action: type: string - discussion: &758 + discussion: &760 title: Discussion description: A Discussion in a repository. type: object @@ -16961,7 +16961,7 @@ paths: url: type: string format: uri - user: &685 + user: &687 title: Public User description: Public User type: object @@ -22981,7 +22981,7 @@ paths: parameters: - *74 - *116 - - &736 + - &738 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -23093,7 +23093,7 @@ paths: - *116 - *117 - *118 - - &737 + - &739 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -23101,7 +23101,7 @@ paths: schema: type: string - *121 - - &738 + - &740 name: sku description: The SKU to query for usage. in: query @@ -30785,12 +30785,12 @@ paths: required: - subject_digests examples: - default: &717 + default: &719 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &718 + withPredicateType: &720 value: subject_digests: - sha256:abc123 @@ -30849,7 +30849,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &719 + default: &721 value: attestations_subject_digests: - sha256:abc: @@ -43068,7 +43068,7 @@ paths: parameters: - *74 - *257 - - &700 + - &702 name: repo_name description: repo_name parameter in: path @@ -44129,7 +44129,7 @@ paths: - nuget - container - *74 - - &701 + - &703 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44170,7 +44170,7 @@ paths: default: *263 '403': *27 '401': *23 - '400': &703 + '400': &705 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46301,7 +46301,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &786 + - &788 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47199,7 +47199,7 @@ paths: - updated_at - project_url examples: - default: &723 + default: &725 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47376,7 +47376,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &724 + items: &726 type: object properties: name: @@ -47413,7 +47413,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &725 + iteration_configuration: &727 type: object description: The configuration for iteration fields. properties: @@ -47463,7 +47463,7 @@ paths: value: name: Due date data_type: date - single_select_field: &726 + single_select_field: &728 summary: Create a single select field value: name: Priority @@ -47490,7 +47490,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &727 + iteration_field: &729 summary: Create an iteration field value: name: Sprint @@ -47516,7 +47516,7 @@ paths: application/json: schema: *283 examples: - text_field: &728 + text_field: &730 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47525,7 +47525,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &729 + number_field: &731 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47534,7 +47534,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &730 + date_field: &732 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47543,7 +47543,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &731 + single_select_field: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47577,7 +47577,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &732 + iteration_field: &734 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47623,7 +47623,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *280 - - &733 + - &735 name: field_id description: The unique identifier of the field. in: path @@ -47638,7 +47638,7 @@ paths: application/json: schema: *283 examples: - default: &734 + default: &736 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48849,7 +48849,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &714 + schema: &716 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49032,7 +49032,7 @@ paths: parameters: - *280 - *74 - - &735 + - &737 name: view_number description: The number that identifies the project view. in: path @@ -56420,6 +56420,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -56450,9 +56452,171 @@ paths: application/json: schema: type: array - items: *4 + items: &681 + title: Team Member + description: A user that is a member of a team, including their + role on the team and whether the membership is inherited from + a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on + the `List team members` endpoint, and only when the feature + is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through + a child team. `true` means the membership is inherited from + a child team; `false` means the user is a direct (immediate) + member of the team. Only present on the `List team members` + endpoint, and only when the feature is enabled for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url examples: - default: *69 + default: &682 + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false headers: Link: *66 x-github: @@ -56518,7 +56682,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &683 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56583,7 +56747,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &684 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56697,7 +56861,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &683 + schema: &685 title: Team Repository description: A team's access to a repository. type: object @@ -57426,7 +57590,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: &684 + response-if-child-teams-exist: &686 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69536,7 +69700,7 @@ paths: check. type: array items: *85 - deployment: &747 + deployment: &749 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75256,7 +75420,7 @@ paths: type: array items: *459 examples: - default: &690 + default: &692 value: total_count: 2 machines: @@ -86264,7 +86428,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &778 + last_response: &780 title: Hook Response type: object properties: @@ -87333,7 +87497,7 @@ paths: parameters: - *337 - *338 - - &712 + - &714 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87918,7 +88082,7 @@ paths: type: array items: *534 examples: - default: &705 + default: &707 value: - id: 1 repository: @@ -103495,7 +103659,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &798 + items: &800 type: object properties: type: @@ -109192,6 +109356,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -109220,9 +109386,9 @@ paths: application/json: schema: type: array - items: *4 + items: *681 examples: - default: *69 + default: *682 headers: Link: *66 '404': *6 @@ -109373,7 +109539,7 @@ paths: application/json: schema: *336 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *683 '404': *6 x-github: githubCloudOnly: false @@ -109434,7 +109600,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *684 '403': description: Forbidden if team synchronization is set up '422': @@ -109546,7 +109712,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *683 + schema: *685 examples: alternative-response-with-extra-repository-information: value: @@ -109788,7 +109954,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: *684 + response-if-child-teams-exist: *686 headers: Link: *66 '404': *6 @@ -109821,7 +109987,7 @@ paths: application/json: schema: oneOf: - - &686 + - &688 title: Private User description: Private User type: object @@ -110071,7 +110237,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *685 + - *687 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -110231,7 +110397,7 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: default: value: @@ -110629,7 +110795,7 @@ paths: type: integer secrets: type: array - items: &687 + items: &689 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -110749,7 +110915,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *689 examples: default: value: @@ -111162,7 +111328,7 @@ paths: description: Response content: application/json: - schema: &688 + schema: &690 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -111215,7 +111381,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &689 + default: &691 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -111260,9 +111426,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *689 + default: *691 '404': *6 x-github: githubCloudOnly: false @@ -111301,7 +111467,7 @@ paths: type: array items: *459 examples: - default: *690 + default: *692 '304': *35 '500': *53 '401': *23 @@ -112267,7 +112433,7 @@ paths: type: array items: *262 examples: - default: &702 + default: &704 value: - id: 197 name: hello_docker @@ -112368,7 +112534,7 @@ paths: application/json: schema: type: array - items: &691 + items: &693 title: Email description: Email type: object @@ -112438,9 +112604,9 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: &704 + default: &706 value: - email: octocat@github.com verified: true @@ -112517,7 +112683,7 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: default: value: @@ -112775,7 +112941,7 @@ paths: application/json: schema: type: array - items: &692 + items: &694 title: GPG Key description: A unique encryption key type: object @@ -112920,7 +113086,7 @@ paths: - subkeys - revoked examples: - default: &721 + default: &723 value: - id: 3 name: Octocat's GPG Key @@ -113005,9 +113171,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: &693 + default: &695 value: id: 3 name: Octocat's GPG Key @@ -113064,7 +113230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &694 + - &696 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -113076,9 +113242,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: *693 + default: *695 '404': *6 '304': *35 '403': *27 @@ -113101,7 +113267,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *694 + - *696 responses: '204': description: Response @@ -113568,7 +113734,7 @@ paths: application/json: schema: type: array - items: &695 + items: &697 title: Key description: Key type: object @@ -113671,9 +113837,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: &696 + default: &698 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113712,9 +113878,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: *696 + default: *698 '404': *6 '304': *35 '403': *27 @@ -113770,7 +113936,7 @@ paths: application/json: schema: type: array - items: &697 + items: &699 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -113849,7 +114015,7 @@ paths: - account - plan examples: - default: &698 + default: &700 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -113911,9 +114077,9 @@ paths: application/json: schema: type: array - items: *697 + items: *699 examples: - default: *698 + default: *700 headers: Link: *66 '304': *35 @@ -114156,7 +114322,7 @@ paths: application/json: schema: *254 examples: - default: &699 + default: &701 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -114205,7 +114371,7 @@ paths: application/json: schema: *254 examples: - default: *699 + default: *701 '403': *27 '404': *6 '422': *15 @@ -114939,7 +115105,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *257 - - *700 + - *702 responses: '204': description: Response @@ -115054,7 +115220,7 @@ paths: - docker - nuget - container - - *701 + - *703 - *19 - *17 responses: @@ -115066,8 +115232,8 @@ paths: type: array items: *262 examples: - default: *702 - '400': *703 + default: *704 + '400': *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115096,7 +115262,7 @@ paths: application/json: schema: *262 examples: - default: &722 + default: &724 value: id: 40201 name: octo-name @@ -115458,9 +115624,9 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: *704 + default: *706 headers: Link: *66 '304': *35 @@ -115573,7 +115739,7 @@ paths: type: array items: *78 examples: - default: &711 + default: &713 summary: Default response value: - id: 1296269 @@ -115933,7 +116099,7 @@ paths: type: array items: *534 examples: - default: *705 + default: *707 headers: Link: *66 '304': *35 @@ -116012,7 +116178,7 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: Social account description: Social media account type: object @@ -116029,7 +116195,7 @@ paths: - provider - url examples: - default: &707 + default: &709 value: - provider: twitter url: https://twitter.com/github @@ -116092,9 +116258,9 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *707 + default: *709 '422': *15 '304': *35 '404': *6 @@ -116182,7 +116348,7 @@ paths: application/json: schema: type: array - items: &708 + items: &710 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -116202,7 +116368,7 @@ paths: - title - created_at examples: - default: &739 + default: &741 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116267,9 +116433,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: &709 + default: &711 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116299,7 +116465,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: - - &710 + - &712 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -116311,9 +116477,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: *709 + default: *711 '404': *6 '304': *35 '403': *27 @@ -116336,7 +116502,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: - - *710 + - *712 responses: '204': description: Response @@ -116365,7 +116531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &740 + - &742 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 @@ -116390,11 +116556,11 @@ paths: type: array items: *78 examples: - default-response: *711 + default-response: *713 application/vnd.github.v3.star+json: schema: type: array - items: &741 + items: &743 title: Starred Repository description: Starred Repository type: object @@ -116763,10 +116929,10 @@ paths: application/json: schema: oneOf: - - *686 - - *685 + - *688 + - *687 examples: - default-response: &715 + default-response: &717 summary: Default response value: login: octocat @@ -116801,7 +116967,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &716 + response-with-git-hub-plan-information: &718 summary: Response with GitHub plan information value: login: octocat @@ -116858,7 +117024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &713 + - &715 name: user_id description: The unique identifier of the user. in: path @@ -116924,7 +117090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *712 + - *714 - *17 responses: '200': @@ -116959,7 +117125,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *713 + - *715 - *280 requestBody: required: true @@ -117034,7 +117200,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *714 + schema: *716 examples: table_view: summary: Response for creating a table view @@ -117086,11 +117252,11 @@ paths: application/json: schema: oneOf: - - *686 - - *685 + - *688 + - *687 examples: - default-response: *715 - response-with-git-hub-plan-information: *716 + default-response: *717 + response-with-git-hub-plan-information: *718 '404': *6 x-github: githubCloudOnly: false @@ -117140,8 +117306,8 @@ paths: required: - subject_digests examples: - default: *717 - withPredicateType: *718 + default: *719 + withPredicateType: *720 responses: '200': description: Response @@ -117195,7 +117361,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *719 + default: *721 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117684,7 +117850,7 @@ paths: application/json: schema: *196 examples: - default: &720 + default: &722 summary: Example response for a user copilot space value: id: 42 @@ -117785,7 +117951,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 x-github: @@ -117911,7 +118077,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 '422': *15 @@ -118679,7 +118845,7 @@ paths: type: array items: *262 examples: - default: *702 + default: *704 '403': *27 '401': *23 x-github: @@ -119063,9 +119229,9 @@ paths: application/json: schema: type: array - items: *692 + items: *694 examples: - default: *721 + default: *723 headers: Link: *66 x-github: @@ -119294,7 +119460,7 @@ paths: - docker - nuget - container - - *701 + - *703 - *70 - *19 - *17 @@ -119307,10 +119473,10 @@ paths: type: array items: *262 examples: - default: *702 + default: *704 '403': *27 '401': *23 - '400': *703 + '400': *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119340,7 +119506,7 @@ paths: application/json: schema: *262 examples: - default: *722 + default: *724 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119689,7 +119855,7 @@ paths: type: array items: *283 examples: - default: *723 + default: *725 headers: Link: *66 '304': *35 @@ -119749,7 +119915,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *724 + items: *726 required: - name - data_type @@ -119765,7 +119931,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *725 + iteration_configuration: *727 required: - name - data_type @@ -119787,8 +119953,8 @@ paths: value: name: Due date data_type: date - single_select_field: *726 - iteration_field: *727 + single_select_field: *728 + iteration_field: *729 responses: '201': description: Response @@ -119796,11 +119962,11 @@ paths: application/json: schema: *283 examples: - text_field: *728 - number_field: *729 - date_field: *730 - single_select_field: *731 - iteration_field: *732 + text_field: *730 + number_field: *731 + date_field: *732 + single_select_field: *733 + iteration_field: *734 '304': *35 '403': *27 '401': *23 @@ -119822,7 +119988,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *280 - - *733 + - *735 - *70 responses: '200': @@ -119831,7 +119997,7 @@ paths: application/json: schema: *283 examples: - default: *734 + default: *736 headers: Link: *66 '304': *35 @@ -120188,7 +120354,7 @@ paths: parameters: - *280 - *70 - - *735 + - *737 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -120727,7 +120893,7 @@ paths: parameters: - *70 - *116 - - *736 + - *738 - *118 responses: '200': @@ -120826,9 +120992,9 @@ paths: - *116 - *117 - *118 - - *737 + - *739 - *121 - - *738 + - *740 responses: '200': description: Response when getting a billing usage summary @@ -120962,9 +121128,9 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *707 + default: *709 headers: Link: *66 x-github: @@ -120994,9 +121160,9 @@ paths: application/json: schema: type: array - items: *708 + items: *710 examples: - default: *739 + default: *741 headers: Link: *66 x-github: @@ -121021,7 +121187,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *740 + - *742 - *60 - *17 - *19 @@ -121033,11 +121199,11 @@ paths: schema: anyOf: - type: array - items: *741 + items: *743 - type: array items: *78 examples: - default-response: *711 + default-response: *713 headers: Link: *66 x-github: @@ -121197,7 +121363,7 @@ webhooks: type: string enum: - disabled - enterprise: &742 + enterprise: &744 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -121266,7 +121432,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &743 + installation: &745 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -121287,7 +121453,7 @@ webhooks: required: - id - node_id - organization: &744 + organization: &746 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -121360,7 +121526,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &745 + repository: &747 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -122286,10 +122452,10 @@ webhooks: type: string enum: - enabled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -122365,11 +122531,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: &746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: &748 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) @@ -122592,11 +122758,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -122784,11 +122950,11 @@ webhooks: - everyone required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -122872,7 +123038,7 @@ webhooks: type: string enum: - completed - check_run: &748 + check_run: &750 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122982,7 +123148,7 @@ webhooks: - examples: - neutral - deployment: *747 + deployment: *749 details_url: type: string examples: @@ -123080,10 +123246,10 @@ webhooks: - output - app - pull_requests - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -123474,11 +123640,11 @@ webhooks: type: string enum: - created - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -123872,11 +124038,11 @@ webhooks: type: string enum: - requested_action - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 requested_action: description: The action requested by the user. type: object @@ -124279,11 +124445,11 @@ webhooks: type: string enum: - rerequested - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -125268,10 +125434,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -125985,10 +126151,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -126696,10 +126862,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -127020,20 +127186,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &749 + commit_oid: &751 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: *742 - installation: *743 - organization: *744 - ref: &750 + enterprise: *744 + installation: *745 + organization: *746 + ref: &752 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: *745 + repository: *747 sender: *4 required: - action @@ -127441,12 +127607,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -127729,12 +127895,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -128080,12 +128246,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -128375,9 +128541,9 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -128385,7 +128551,7 @@ webhooks: type: - string - 'null' - repository: *745 + repository: *747 sender: *4 required: - action @@ -128631,12 +128797,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -128957,10 +129123,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -129220,10 +129386,10 @@ webhooks: - updated_at - author_association - body - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -129304,18 +129470,18 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *744 - pusher_type: &751 + organization: *746 + pusher_type: &753 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &752 + ref: &754 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -129325,7 +129491,7 @@ webhooks: enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -129408,9 +129574,9 @@ webhooks: enum: - created definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129495,9 +129661,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129575,9 +129741,9 @@ webhooks: enum: - promote_to_enterprise definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129655,9 +129821,9 @@ webhooks: enum: - updated definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129734,10 +129900,10 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - repository: *745 - organization: *744 + enterprise: *744 + installation: *745 + repository: *747 + organization: *746 sender: *4 new_property_values: type: array @@ -129822,18 +129988,18 @@ webhooks: title: delete event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - pusher_type: *751 - ref: *752 + enterprise: *744 + installation: *745 + organization: *746 + pusher_type: *753 + ref: *754 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -129914,10 +130080,10 @@ webhooks: enum: - assignees_changed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129998,10 +130164,10 @@ webhooks: enum: - auto_dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130083,10 +130249,10 @@ webhooks: enum: - auto_reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130168,10 +130334,10 @@ webhooks: enum: - created alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130251,10 +130417,10 @@ webhooks: enum: - dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130334,10 +130500,10 @@ webhooks: enum: - fixed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130418,10 +130584,10 @@ webhooks: enum: - reintroduced alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130501,10 +130667,10 @@ webhooks: enum: - reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130581,9 +130747,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - key: &753 + enterprise: *744 + installation: *745 + key: &755 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130621,8 +130787,8 @@ webhooks: - verified - created_at - read_only - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -130699,11 +130865,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - key: *753 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + key: *755 + organization: *746 + repository: *747 sender: *4 required: - action @@ -131270,12 +131436,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: &757 + workflow: &759 title: Workflow type: - object @@ -132030,9 +132196,9 @@ webhooks: pull_requests: type: array items: *596 - repository: *745 - organization: *744 - installation: *743 + repository: *747 + organization: *746 + installation: *745 sender: *4 responses: '200': @@ -132103,7 +132269,7 @@ webhooks: type: string enum: - approved - approver: &754 + approver: &756 type: object properties: avatar_url: @@ -132146,11 +132312,11 @@ webhooks: type: string comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: &755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: &757 type: array items: type: object @@ -132231,7 +132397,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &756 + workflow_job_run: &758 type: object properties: conclusion: @@ -132977,18 +133143,18 @@ webhooks: type: string enum: - rejected - approver: *754 + approver: *756 comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: *755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: *757 sender: *4 since: type: string - workflow_job_run: *756 + workflow_job_run: *758 workflow_job_runs: type: array items: @@ -133705,13 +133871,13 @@ webhooks: type: string enum: - requested - enterprise: *742 + enterprise: *744 environment: type: string - installation: *743 - organization: *744 - repository: *745 - requestor: &762 + installation: *745 + organization: *746 + repository: *747 + requestor: &764 title: User type: - object @@ -135644,12 +135810,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Deployment Workflow Run type: @@ -136340,7 +136506,7 @@ webhooks: type: string enum: - answered - answer: &760 + answer: &762 type: object properties: author_association: @@ -136500,11 +136666,11 @@ webhooks: - created_at - updated_at - body - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136631,11 +136797,11 @@ webhooks: - from required: - category - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136718,11 +136884,11 @@ webhooks: type: string enum: - closed - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136804,7 +136970,7 @@ webhooks: type: string enum: - created - comment: &759 + comment: &761 type: object properties: author_association: @@ -136964,11 +137130,11 @@ webhooks: - updated_at - body - reactions - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137051,12 +137217,12 @@ webhooks: type: string enum: - deleted - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137151,12 +137317,12 @@ webhooks: - from required: - body - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137240,11 +137406,11 @@ webhooks: type: string enum: - created - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137326,11 +137492,11 @@ webhooks: type: string enum: - deleted - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137430,11 +137596,11 @@ webhooks: type: string required: - from - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137516,10 +137682,10 @@ webhooks: type: string enum: - labeled - discussion: *758 - enterprise: *742 - installation: *743 - label: &761 + discussion: *760 + enterprise: *744 + installation: *745 + label: &763 title: Label type: object properties: @@ -137552,8 +137718,8 @@ webhooks: - color - default - description - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137636,11 +137802,11 @@ webhooks: type: string enum: - locked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137722,11 +137888,11 @@ webhooks: type: string enum: - pinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137808,11 +137974,11 @@ webhooks: type: string enum: - reopened - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137897,16 +138063,16 @@ webhooks: changes: type: object properties: - new_discussion: *758 - new_repository: *745 + new_discussion: *760 + new_repository: *747 required: - new_discussion - new_repository - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137989,10 +138155,10 @@ webhooks: type: string enum: - unanswered - discussion: *758 - old_answer: *760 - organization: *744 - repository: *745 + discussion: *760 + old_answer: *762 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138074,12 +138240,12 @@ webhooks: type: string enum: - unlabeled - discussion: *758 - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138162,11 +138328,11 @@ webhooks: type: string enum: - unlocked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138248,11 +138414,11 @@ webhooks: type: string enum: - unpinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138325,7 +138491,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *742 + enterprise: *744 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -139003,9 +139169,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - forkee @@ -139151,9 +139317,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pages: description: The pages that were updated. type: array @@ -139191,7 +139357,7 @@ webhooks: - action - sha - html_url - repository: *745 + repository: *747 sender: *4 required: - pages @@ -139267,10 +139433,10 @@ webhooks: type: string enum: - created - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: &763 + organization: *746 + repositories: &765 description: An array of repository objects that the installation can access. type: array @@ -139296,8 +139462,8 @@ webhooks: - name - full_name - private - repository: *745 - requester: *762 + repository: *747 + requester: *764 sender: *4 required: - action @@ -139372,11 +139538,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139453,11 +139619,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139534,10 +139700,10 @@ webhooks: type: string enum: - added - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: &764 + organization: *746 + repositories_added: &766 description: An array of repository objects, which were added to the installation. type: array @@ -139583,15 +139749,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *745 - repository_selection: &765 + repository: *747 + repository_selection: &767 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *762 + requester: *764 sender: *4 required: - action @@ -139670,10 +139836,10 @@ webhooks: type: string enum: - removed - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: *764 + organization: *746 + repositories_added: *766 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139700,9 +139866,9 @@ webhooks: - name - full_name - private - repository: *745 - repository_selection: *765 - requester: *762 + repository: *747 + repository_selection: *767 + requester: *764 sender: *4 required: - action @@ -139781,11 +139947,11 @@ webhooks: type: string enum: - suspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139967,10 +140133,10 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 target_type: type: string @@ -140049,11 +140215,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -140309,8 +140475,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141484,8 +141650,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -141565,7 +141731,7 @@ webhooks: type: string enum: - deleted - comment: &766 + comment: &768 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -141740,8 +141906,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142913,8 +143079,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -142994,7 +143160,7 @@ webhooks: type: string enum: - edited - changes: &790 + changes: &792 description: The changes to the comment. type: object properties: @@ -143006,9 +143172,9 @@ webhooks: type: string required: - from - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144181,8 +144347,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -144263,9 +144429,9 @@ webhooks: type: string enum: - pinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145442,8 +145608,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -145523,9 +145689,9 @@ webhooks: type: string enum: - unpinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146702,8 +146868,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146792,9 +146958,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146883,9 +147049,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146973,9 +147139,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147064,9 +147230,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147146,10 +147312,10 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - issue: &767 + assignee: *764 + enterprise: *744 + installation: *745 + issue: &769 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148084,8 +148250,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -148165,8 +148331,8 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149249,8 +149415,8 @@ webhooks: required: - state - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -149329,8 +149495,8 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150260,8 +150426,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -150340,8 +150506,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151273,7 +151439,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &768 + milestone: &770 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151416,8 +151582,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -151516,8 +151682,8 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152452,9 +152618,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152534,9 +152700,9 @@ webhooks: type: string enum: - field_added - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was set or updated on the @@ -152702,8 +152868,8 @@ webhooks: - id required: - from - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152783,9 +152949,9 @@ webhooks: type: string enum: - field_removed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -152872,8 +153038,8 @@ webhooks: - 'null' required: - id - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152953,8 +153119,8 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153888,9 +154054,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -153970,8 +154136,8 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154907,8 +155073,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -154987,8 +155153,8 @@ webhooks: type: string enum: - milestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155918,9 +156084,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *768 - organization: *744 - repository: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -157403,8 +157569,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158338,8 +158504,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -158419,9 +158585,9 @@ webhooks: type: string enum: - pinned - enterprise: *742 - installation: *743 - issue: &769 + enterprise: *744 + installation: *745 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -159349,8 +159515,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -159429,8 +159595,8 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -160365,8 +160531,8 @@ webhooks: user_view_type: type: string type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161868,11 +162034,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161952,12 +162118,12 @@ webhooks: type: string enum: - typed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162038,7 +162204,7 @@ webhooks: type: string enum: - unassigned - assignee: &793 + assignee: &795 title: User type: - object @@ -162110,11 +162276,11 @@ webhooks: required: - login - id - enterprise: *742 - installation: *743 - issue: *767 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162193,12 +162359,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - issue: *767 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162278,8 +162444,8 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163213,8 +163379,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163294,11 +163460,11 @@ webhooks: type: string enum: - unpinned - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163377,12 +163543,12 @@ webhooks: type: string enum: - untyped - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163462,11 +163628,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163544,11 +163710,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163658,11 +163824,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163744,9 +163910,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: &770 + enterprise: *744 + installation: *745 + marketplace_purchase: &772 title: Marketplace Purchase type: object required: @@ -163834,8 +164000,8 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: &771 + organization: *746 + previous_marketplace_purchase: &773 title: Marketplace Purchase type: object properties: @@ -163919,7 +164085,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -163999,10 +164165,10 @@ webhooks: - changed effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164090,7 +164256,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -164172,10 +164338,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164261,7 +164427,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -164342,8 +164508,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 marketplace_purchase: title: Marketplace Purchase type: object @@ -164429,9 +164595,9 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -164511,12 +164677,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -164618,11 +164784,11 @@ webhooks: type: string required: - to - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164724,11 +164890,11 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164807,11 +164973,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164889,11 +165055,11 @@ webhooks: type: string enum: - added - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164971,7 +165137,7 @@ webhooks: required: - login - id - team: &772 + team: &774 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -165201,11 +165367,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165284,7 +165450,7 @@ webhooks: required: - login - id - team: *772 + team: *774 required: - action - scope @@ -165366,8 +165532,8 @@ webhooks: type: string enum: - checks_requested - installation: *743 - merge_group: &773 + installation: *745 + merge_group: &775 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -165393,8 +165559,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165480,10 +165646,10 @@ webhooks: - merged - invalidated - dequeued - installation: *743 - merge_group: *773 - organization: *744 - repository: *745 + installation: *745 + merge_group: *775 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165556,7 +165722,7 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165665,12 +165831,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *743 - organization: *744 + installation: *745 + organization: *746 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -165750,11 +165916,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165833,9 +165999,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - milestone: &774 + enterprise: *744 + installation: *745 + milestone: &776 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165977,8 +166143,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166057,11 +166223,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166171,11 +166337,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166255,11 +166421,11 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - milestone: *774 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *776 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166338,11 +166504,11 @@ webhooks: type: string enum: - blocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166421,11 +166587,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166504,9 +166670,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - membership: &775 + enterprise: *744 + installation: *745 + membership: &777 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166616,8 +166782,8 @@ webhooks: - role - organization_url - user - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166695,11 +166861,11 @@ webhooks: type: string enum: - member_added - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166778,8 +166944,8 @@ webhooks: type: string enum: - member_invited - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166901,10 +167067,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 - user: *762 + user: *764 required: - action - invitation @@ -166982,11 +167148,11 @@ webhooks: type: string enum: - member_removed - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167073,11 +167239,11 @@ webhooks: properties: from: type: string - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167154,9 +167320,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -167679,7 +167845,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &776 + items: &778 title: Ruby Gems metadata type: object properties: @@ -167776,7 +167942,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -167852,9 +168018,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -168216,7 +168382,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 source_url: type: string format: uri @@ -168287,7 +168453,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -168467,12 +168633,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *742 + enterprise: *744 id: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - id @@ -168549,7 +168715,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &777 + personal_access_token_request: &779 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168699,10 +168865,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *742 - organization: *744 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168779,11 +168945,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168859,11 +169025,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168938,11 +169104,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *777 - organization: *744 - enterprise: *742 + personal_access_token_request: *779 + organization: *746 + enterprise: *744 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -169047,7 +169213,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *778 + last_response: *780 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -169079,8 +169245,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 zen: description: Random string of GitHub zen. @@ -169325,10 +169491,10 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: &779 + enterprise: *744 + installation: *745 + organization: *746 + project_card: &781 title: Project Card type: object properties: @@ -169451,7 +169617,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -169532,11 +169698,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -169616,9 +169782,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: title: Project Card type: object @@ -169748,7 +169914,7 @@ webhooks: repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -169842,11 +170008,11 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -169940,9 +170106,9 @@ webhooks: - from required: - column_id - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: allOf: - title: Project Card @@ -170139,7 +170305,7 @@ webhooks: type: string required: - after_id - repository: *745 + repository: *747 sender: *4 required: - action @@ -170219,10 +170385,10 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - organization: *744 - project: &781 + enterprise: *744 + installation: *745 + organization: *746 + project: &783 title: Project type: object properties: @@ -170349,7 +170515,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -170429,10 +170595,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_column: &780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: &782 title: Project Column type: object properties: @@ -170472,7 +170638,7 @@ webhooks: - name - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -170551,14 +170717,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -170647,11 +170813,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -170731,11 +170897,11 @@ webhooks: type: string enum: - moved - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -170815,11 +170981,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -170899,14 +171065,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project: *781 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -171007,11 +171173,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -171090,11 +171256,11 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -171175,8 +171341,8 @@ webhooks: type: string enum: - closed - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171258,8 +171424,8 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171341,8 +171507,8 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171464,8 +171630,8 @@ webhooks: type: string to: type: string - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171549,7 +171715,7 @@ webhooks: type: string enum: - archived - changes: &785 + changes: &787 type: object properties: archived_at: @@ -171565,9 +171731,9 @@ webhooks: - string - 'null' format: date-time - installation: *743 - organization: *744 - projects_v2_item: &782 + installation: *745 + organization: *746 + projects_v2_item: &784 title: Projects v2 Item description: An item belonging to a project type: object @@ -171707,9 +171873,9 @@ webhooks: - 'null' to: type: string - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171791,9 +171957,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171874,9 +172040,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171981,7 +172147,7 @@ webhooks: oneOf: - type: string - type: integer - - &783 + - &785 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -172005,7 +172171,7 @@ webhooks: required: - id - name - - &784 + - &786 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -172045,8 +172211,8 @@ webhooks: oneOf: - type: string - type: integer - - *783 - - *784 + - *785 + - *786 type: - 'null' - string @@ -172069,9 +172235,9 @@ webhooks: - 'null' required: - body - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172168,9 +172334,9 @@ webhooks: type: - string - 'null' - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172253,10 +172419,10 @@ webhooks: type: string enum: - restored - changes: *785 - installation: *743 - organization: *744 - projects_v2_item: *782 + changes: *787 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172338,8 +172504,8 @@ webhooks: type: string enum: - reopened - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -172421,9 +172587,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172504,9 +172670,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172652,9 +172818,9 @@ webhooks: - string - 'null' format: date - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172725,10 +172891,10 @@ webhooks: title: public event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - repository @@ -172805,13 +172971,13 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - number: &787 + assignee: *764 + enterprise: *744 + installation: *745 + number: &789 description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -175182,7 +175348,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -175264,11 +175430,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -177632,7 +177798,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -177714,11 +177880,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -180082,7 +180248,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -180164,11 +180330,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: &788 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: &790 allOf: - *596 - type: object @@ -180232,7 +180398,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *745 + repository: *747 sender: *4 required: - action @@ -180313,12 +180479,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -180398,11 +180564,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: &789 + number: *789 + organization: *746 + pull_request: &791 title: Pull Request type: object properties: @@ -182751,7 +182917,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -182830,11 +182996,11 @@ webhooks: type: string enum: - dequeued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -185202,7 +185368,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *745 + repository: *747 sender: *4 required: - action @@ -185326,12 +185492,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -185411,11 +185577,11 @@ webhooks: type: string enum: - enqueued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -187768,7 +187934,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -187848,11 +188014,11 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -190222,7 +190388,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -190303,10 +190469,10 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -192674,7 +192840,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -192754,12 +192920,12 @@ webhooks: type: string enum: - milestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: *789 - repository: *745 + number: *789 + organization: *746 + pull_request: *791 + repository: *747 sender: *4 required: - action @@ -192838,12 +193004,12 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -192924,12 +193090,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -193009,12 +193175,12 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -193389,9 +193555,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -195643,7 +195809,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -195723,7 +195889,7 @@ webhooks: type: string enum: - deleted - comment: &791 + comment: &793 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -196016,9 +196182,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -198258,7 +198424,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -198338,11 +198504,11 @@ webhooks: type: string enum: - edited - changes: *790 - comment: *791 - enterprise: *742 - installation: *743 - organization: *744 + changes: *792 + comment: *793 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -200585,7 +200751,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -200666,9 +200832,9 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -202923,7 +203089,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 review: description: The review that was affected. type: object @@ -203174,9 +203340,9 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -205290,8 +205456,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: &792 + repository: *747 + review: &794 description: The review that was affected. type: object properties: @@ -205529,12 +205695,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -207903,7 +208069,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -207989,12 +208155,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -210370,7 +210536,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210565,12 +210731,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -212941,7 +213107,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -213028,12 +213194,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -215395,7 +215561,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215579,9 +215745,9 @@ webhooks: type: string enum: - submitted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -217839,8 +218005,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: *792 + repository: *747 + review: *794 sender: *4 required: - action @@ -217920,9 +218086,9 @@ webhooks: type: string enum: - resolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -220075,7 +220241,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -220472,9 +220638,9 @@ webhooks: type: string enum: - unresolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -222610,7 +222776,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -223009,10 +223175,10 @@ webhooks: type: string before: type: string - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -225369,7 +225535,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -225451,11 +225617,11 @@ webhooks: type: string enum: - unassigned - assignee: *793 - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + assignee: *795 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -227827,7 +227993,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -227906,11 +228072,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -230271,7 +230437,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -230352,10 +230518,10 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -232706,7 +232872,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -232909,7 +233075,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *742 + enterprise: *744 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -233004,8 +233170,8 @@ webhooks: - url - author - committer - installation: *743 - organization: *744 + installation: *745 + organization: *746 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -233604,9 +233770,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -234083,7 +234249,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -234139,7 +234305,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -234217,9 +234383,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -234531,7 +234697,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -234581,7 +234747,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -234658,10 +234824,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - release: &794 + enterprise: *744 + installation: *745 + organization: *746 + release: &796 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234992,7 +235158,7 @@ webhooks: - updated_at - zipball_url - body - repository: *745 + repository: *747 sender: *4 required: - action @@ -235069,11 +235235,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -235190,11 +235356,11 @@ webhooks: type: boolean required: - to - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -235272,9 +235438,9 @@ webhooks: type: string enum: - prereleased - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -235610,7 +235776,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -235686,10 +235852,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - release: &795 + enterprise: *744 + installation: *745 + organization: *746 + release: &797 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -236022,7 +236188,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -236098,11 +236264,11 @@ webhooks: type: string enum: - released - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -236178,11 +236344,11 @@ webhooks: type: string enum: - unpublished - enterprise: *742 - installation: *743 - organization: *744 - release: *795 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *797 + repository: *747 sender: *4 required: - action @@ -236258,10 +236424,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -236338,10 +236504,10 @@ webhooks: type: string enum: - reported - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -236418,10 +236584,10 @@ webhooks: type: string enum: - archived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236498,10 +236664,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236579,10 +236745,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236667,10 +236833,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236785,10 +236951,10 @@ webhooks: - 'null' items: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236860,10 +237026,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 status: type: string @@ -236944,10 +237110,10 @@ webhooks: type: string enum: - privatized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237024,10 +237190,10 @@ webhooks: type: string enum: - publicized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237121,10 +237287,10 @@ webhooks: - name required: - repository - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237204,10 +237370,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -237286,10 +237452,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -237368,10 +237534,10 @@ webhooks: type: string enum: - edited - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 changes: type: object @@ -237679,10 +237845,10 @@ webhooks: - from required: - owner - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237760,10 +237926,10 @@ webhooks: type: string enum: - unarchived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237841,7 +238007,7 @@ webhooks: type: string enum: - create - alert: &796 + alert: &798 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237966,10 +238132,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238179,10 +238345,10 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238260,11 +238426,11 @@ webhooks: type: string enum: - reopen - alert: *796 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *798 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238466,10 +238632,10 @@ webhooks: enum: - fixed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238547,7 +238713,7 @@ webhooks: type: string enum: - assigned - alert: &797 + alert: &799 type: object properties: number: *180 @@ -238687,10 +238853,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238768,11 +238934,11 @@ webhooks: type: string enum: - created - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238853,11 +239019,11 @@ webhooks: type: string enum: - created - alert: *797 - installation: *743 - location: *798 - organization: *744 - repository: *745 + alert: *799 + installation: *745 + location: *800 + organization: *746 + repository: *747 sender: *4 required: - location @@ -239095,11 +239261,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239177,11 +239343,11 @@ webhooks: type: string enum: - reopened - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239259,11 +239425,11 @@ webhooks: type: string enum: - resolved - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239341,12 +239507,12 @@ webhooks: type: string enum: - unassigned - alert: *797 + alert: *799 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239424,11 +239590,11 @@ webhooks: type: string enum: - validated - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239558,10 +239724,10 @@ webhooks: - organization - enterprise - - repository: *745 - enterprise: *742 - installation: *743 - organization: *744 + repository: *747 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -239639,11 +239805,11 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: &799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: &801 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239829,11 +239995,11 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: *801 sender: *4 required: - action @@ -239906,10 +240072,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -240096,9 +240262,9 @@ webhooks: type: object properties: security_and_analysis: *296 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: *340 sender: *4 required: @@ -240177,12 +240343,12 @@ webhooks: type: string enum: - cancelled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: &800 + sponsorship: &802 type: object properties: created_at: @@ -240487,12 +240653,12 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -240580,12 +240746,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -240662,17 +240828,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &801 + effective_date: &803 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: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -240746,7 +240912,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &802 + changes: &804 type: object properties: tier: @@ -240790,13 +240956,13 @@ webhooks: - from required: - tier - effective_date: *801 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + effective_date: *803 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -240873,13 +241039,13 @@ webhooks: type: string enum: - tier_changed - changes: *802 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + changes: *804 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -240953,10 +241119,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241040,10 +241206,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241477,15 +241643,15 @@ webhooks: type: - string - 'null' - enterprise: *742 + enterprise: *744 id: description: The unique identifier of the status. type: integer - installation: *743 + installation: *745 name: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 sha: description: The Commit SHA. @@ -241601,9 +241767,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241692,9 +241858,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241783,9 +241949,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241874,9 +242040,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241952,12 +242118,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - team: &803 + team: &805 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -242187,9 +242353,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -242659,7 +242825,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -242735,9 +242901,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -243207,7 +243373,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -243284,9 +243450,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -243756,7 +243922,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -243900,9 +244066,9 @@ webhooks: - from required: - permissions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -244372,7 +244538,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - changes @@ -244450,9 +244616,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -244922,7 +245088,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -244998,10 +245164,10 @@ webhooks: type: string enum: - started - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -245074,17 +245240,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *742 + enterprise: *744 inputs: type: - object - 'null' additionalProperties: true - installation: *743 - organization: *744 + installation: *745 + organization: *746 ref: type: string - repository: *745 + repository: *747 sender: *4 workflow: type: string @@ -245166,10 +245332,10 @@ webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: allOf: @@ -245504,10 +245670,10 @@ webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: allOf: @@ -245868,10 +246034,10 @@ webhooks: type: string enum: - queued - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: type: object @@ -246096,10 +246262,10 @@ webhooks: type: string enum: - waiting - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: type: object @@ -246326,12 +246492,12 @@ webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -247350,12 +247516,12 @@ webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -248359,12 +248525,12 @@ webhooks: type: string enum: - requested - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index f65227a1db..c1b21ab9c4 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -259560,7 +259560,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -259630,8 +259630,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -259774,6 +259774,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -259819,7 +259837,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } @@ -710459,7 +710479,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -710520,8 +710540,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -710664,6 +710684,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -710709,7 +710747,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index c2be4aeb26..3d8ff54bd0 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -14449,7 +14449,7 @@ paths: properties: action: type: string - discussion: &758 + discussion: &760 title: Discussion description: A Discussion in a repository. type: object @@ -22667,7 +22667,7 @@ paths: parameters: - *74 - *116 - - &736 + - &738 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -22779,7 +22779,7 @@ paths: - *116 - *117 - *118 - - &737 + - &739 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22787,7 +22787,7 @@ paths: schema: type: string - *121 - - &738 + - &740 name: sku description: The SKU to query for usage. in: query @@ -30461,12 +30461,12 @@ paths: required: - subject_digests examples: - default: &717 + default: &719 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &718 + withPredicateType: &720 value: subject_digests: - sha256:abc123 @@ -30511,7 +30511,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &719 + default: &721 value: attestations_subject_digests: - sha256:abc: @@ -42712,7 +42712,7 @@ paths: parameters: - *74 - *257 - - &699 + - &701 name: repo_name description: repo_name parameter in: path @@ -43660,7 +43660,7 @@ paths: - nuget - container - *74 - - &700 + - &702 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43701,7 +43701,7 @@ paths: default: *263 '403': *27 '401': *23 - '400': &702 + '400': &704 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45943,7 +45943,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &786 + - &788 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46829,7 +46829,7 @@ paths: - updated_at - project_url examples: - default: &723 + default: &725 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47006,7 +47006,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &724 + items: &726 type: object properties: name: @@ -47043,7 +47043,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &725 + iteration_configuration: &727 type: object description: The configuration for iteration fields. properties: @@ -47093,7 +47093,7 @@ paths: value: name: Due date data_type: date - single_select_field: &726 + single_select_field: &728 summary: Create a single select field value: name: Priority @@ -47120,7 +47120,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &727 + iteration_field: &729 summary: Create an iteration field value: name: Sprint @@ -47146,7 +47146,7 @@ paths: application/json: schema: *283 examples: - text_field: &728 + text_field: &730 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47155,7 +47155,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &729 + number_field: &731 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47164,7 +47164,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &730 + date_field: &732 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47173,7 +47173,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &731 + single_select_field: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47207,7 +47207,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &732 + iteration_field: &734 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47253,7 +47253,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *280 - - &733 + - &735 name: field_id description: The unique identifier of the field. in: path @@ -47268,7 +47268,7 @@ paths: application/json: schema: *283 examples: - default: &734 + default: &736 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48479,7 +48479,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &714 + schema: &716 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48662,7 +48662,7 @@ paths: parameters: - *280 - *74 - - &735 + - &737 name: view_number description: The number that identifies the project view. in: path @@ -56012,6 +56012,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -56042,9 +56044,171 @@ paths: application/json: schema: type: array - items: *4 + items: &681 + title: Team Member + description: A user that is a member of a team, including their + role on the team and whether the membership is inherited from + a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on + the `List team members` endpoint, and only when the feature + is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through + a child team. `true` means the membership is inherited from + a child team; `false` means the user is a direct (immediate) + member of the team. Only present on the `List team members` + endpoint, and only when the feature is enabled for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url examples: - default: *69 + default: &682 + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false headers: Link: *66 x-github: @@ -56110,7 +56274,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &683 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56175,7 +56339,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &684 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56289,7 +56453,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &683 + schema: &685 title: Team Repository description: A team's access to a repository. type: object @@ -57010,7 +57174,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: &684 + response-if-child-teams-exist: &686 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69089,7 +69253,7 @@ paths: check. type: array items: *85 - deployment: &747 + deployment: &749 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74807,7 +74971,7 @@ paths: type: array items: *459 examples: - default: &689 + default: &691 value: total_count: 2 machines: @@ -85815,7 +85979,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &778 + last_response: &780 title: Hook Response type: object properties: @@ -86884,7 +87048,7 @@ paths: parameters: - *337 - *338 - - &712 + - &714 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87469,7 +87633,7 @@ paths: type: array items: *534 examples: - default: &704 + default: &706 value: - id: 1 repository: @@ -102942,7 +103106,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &798 + items: &800 type: object properties: type: @@ -108628,6 +108792,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -108656,9 +108822,9 @@ paths: application/json: schema: type: array - items: *4 + items: *681 examples: - default: *69 + default: *682 headers: Link: *66 '404': *6 @@ -108809,7 +108975,7 @@ paths: application/json: schema: *336 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *683 '404': *6 x-github: githubCloudOnly: false @@ -108870,7 +109036,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *684 '403': description: Forbidden if team synchronization is set up '422': @@ -108982,7 +109148,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *683 + schema: *685 examples: alternative-response-with-extra-repository-information: value: @@ -109223,7 +109389,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: *684 + response-if-child-teams-exist: *686 headers: Link: *66 '404': *6 @@ -109256,7 +109422,7 @@ paths: application/json: schema: oneOf: - - &685 + - &687 title: Private User description: Private User type: object @@ -109506,7 +109672,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &711 + - &713 title: Public User description: Public User type: object @@ -109840,7 +110006,7 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: default: value: @@ -110238,7 +110404,7 @@ paths: type: integer secrets: type: array - items: &686 + items: &688 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -110358,7 +110524,7 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: default: value: @@ -110771,7 +110937,7 @@ paths: description: Response content: application/json: - schema: &687 + schema: &689 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -110824,7 +110990,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &688 + default: &690 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -110869,9 +111035,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *689 examples: - default: *688 + default: *690 '404': *6 x-github: githubCloudOnly: false @@ -110910,7 +111076,7 @@ paths: type: array items: *459 examples: - default: *689 + default: *691 '304': *35 '500': *53 '401': *23 @@ -111876,7 +112042,7 @@ paths: type: array items: *262 examples: - default: &701 + default: &703 value: - id: 197 name: hello_docker @@ -111977,7 +112143,7 @@ paths: application/json: schema: type: array - items: &690 + items: &692 title: Email description: Email type: object @@ -112047,9 +112213,9 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: - default: &703 + default: &705 value: - email: octocat@github.com verified: true @@ -112126,7 +112292,7 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: default: value: @@ -112384,7 +112550,7 @@ paths: application/json: schema: type: array - items: &691 + items: &693 title: GPG Key description: A unique encryption key type: object @@ -112529,7 +112695,7 @@ paths: - subkeys - revoked examples: - default: &721 + default: &723 value: - id: 3 name: Octocat's GPG Key @@ -112614,9 +112780,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: &692 + default: &694 value: id: 3 name: Octocat's GPG Key @@ -112673,7 +112839,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &693 + - &695 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -112685,9 +112851,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: *692 + default: *694 '404': *6 '304': *35 '403': *27 @@ -112710,7 +112876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *693 + - *695 responses: '204': description: Response @@ -113177,7 +113343,7 @@ paths: application/json: schema: type: array - items: &694 + items: &696 title: Key description: Key type: object @@ -113280,9 +113446,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: &695 + default: &697 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113321,9 +113487,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *695 + default: *697 '404': *6 '304': *35 '403': *27 @@ -113379,7 +113545,7 @@ paths: application/json: schema: type: array - items: &696 + items: &698 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -113458,7 +113624,7 @@ paths: - account - plan examples: - default: &697 + default: &699 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -113520,9 +113686,9 @@ paths: application/json: schema: type: array - items: *696 + items: *698 examples: - default: *697 + default: *699 headers: Link: *66 '304': *35 @@ -113765,7 +113931,7 @@ paths: application/json: schema: *254 examples: - default: &698 + default: &700 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -113814,7 +113980,7 @@ paths: application/json: schema: *254 examples: - default: *698 + default: *700 '403': *27 '404': *6 '422': *15 @@ -114548,7 +114714,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *257 - - *699 + - *701 responses: '204': description: Response @@ -114661,7 +114827,7 @@ paths: - docker - nuget - container - - *700 + - *702 - *19 - *17 responses: @@ -114673,8 +114839,8 @@ paths: type: array items: *262 examples: - default: *701 - '400': *702 + default: *703 + '400': *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114703,7 +114869,7 @@ paths: application/json: schema: *262 examples: - default: &722 + default: &724 value: id: 40201 name: octo-name @@ -115065,9 +115231,9 @@ paths: application/json: schema: type: array - items: *690 + items: *692 examples: - default: *703 + default: *705 headers: Link: *66 '304': *35 @@ -115180,7 +115346,7 @@ paths: type: array items: *78 examples: - default: &710 + default: &712 summary: Default response value: - id: 1296269 @@ -115541,7 +115707,7 @@ paths: type: array items: *534 examples: - default: *704 + default: *706 headers: Link: *66 '304': *35 @@ -115621,7 +115787,7 @@ paths: application/json: schema: type: array - items: &705 + items: &707 title: Social account description: Social media account type: object @@ -115638,7 +115804,7 @@ paths: - provider - url examples: - default: &706 + default: &708 value: - provider: twitter url: https://twitter.com/github @@ -115701,9 +115867,9 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: - default: *706 + default: *708 '422': *15 '304': *35 '404': *6 @@ -115791,7 +115957,7 @@ paths: application/json: schema: type: array - items: &707 + items: &709 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -115811,7 +115977,7 @@ paths: - title - created_at examples: - default: &739 + default: &741 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115876,9 +116042,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *709 examples: - default: &708 + default: &710 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115908,7 +116074,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: - - &709 + - &711 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -115920,9 +116086,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *709 examples: - default: *708 + default: *710 '404': *6 '304': *35 '403': *27 @@ -115945,7 +116111,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: - - *709 + - *711 responses: '204': description: Response @@ -115974,7 +116140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &740 + - &742 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 @@ -115999,11 +116165,11 @@ paths: type: array items: *78 examples: - default-response: *710 + default-response: *712 application/vnd.github.v3.star+json: schema: type: array - items: &741 + items: &743 title: Starred Repository description: Starred Repository type: object @@ -116372,10 +116538,10 @@ paths: application/json: schema: oneOf: - - *685 - - *711 + - *687 + - *713 examples: - default-response: &715 + default-response: &717 summary: Default response value: login: octocat @@ -116410,7 +116576,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &716 + response-with-git-hub-plan-information: &718 summary: Response with GitHub plan information value: login: octocat @@ -116467,7 +116633,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &713 + - &715 name: user_id description: The unique identifier of the user. in: path @@ -116533,7 +116699,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *712 + - *714 - *17 responses: '200': @@ -116568,7 +116734,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *713 + - *715 - *280 requestBody: required: true @@ -116643,7 +116809,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *714 + schema: *716 examples: table_view: summary: Response for creating a table view @@ -116695,11 +116861,11 @@ paths: application/json: schema: oneOf: - - *685 - - *711 + - *687 + - *713 examples: - default-response: *715 - response-with-git-hub-plan-information: *716 + default-response: *717 + response-with-git-hub-plan-information: *718 '404': *6 x-github: githubCloudOnly: false @@ -116749,8 +116915,8 @@ paths: required: - subject_digests examples: - default: *717 - withPredicateType: *718 + default: *719 + withPredicateType: *720 responses: '200': description: Response @@ -116790,7 +116956,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *719 + default: *721 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117263,7 +117429,7 @@ paths: application/json: schema: *196 examples: - default: &720 + default: &722 summary: Example response for a user copilot space value: id: 42 @@ -117364,7 +117530,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 x-github: @@ -117490,7 +117656,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 '422': *15 @@ -118258,7 +118424,7 @@ paths: type: array items: *262 examples: - default: *701 + default: *703 '403': *27 '401': *23 x-github: @@ -118642,9 +118808,9 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: *721 + default: *723 headers: Link: *66 x-github: @@ -118873,7 +119039,7 @@ paths: - docker - nuget - container - - *700 + - *702 - *70 - *19 - *17 @@ -118886,10 +119052,10 @@ paths: type: array items: *262 examples: - default: *701 + default: *703 '403': *27 '401': *23 - '400': *702 + '400': *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118919,7 +119085,7 @@ paths: application/json: schema: *262 examples: - default: *722 + default: *724 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119268,7 +119434,7 @@ paths: type: array items: *283 examples: - default: *723 + default: *725 headers: Link: *66 '304': *35 @@ -119328,7 +119494,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *724 + items: *726 required: - name - data_type @@ -119344,7 +119510,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *725 + iteration_configuration: *727 required: - name - data_type @@ -119366,8 +119532,8 @@ paths: value: name: Due date data_type: date - single_select_field: *726 - iteration_field: *727 + single_select_field: *728 + iteration_field: *729 responses: '201': description: Response @@ -119375,11 +119541,11 @@ paths: application/json: schema: *283 examples: - text_field: *728 - number_field: *729 - date_field: *730 - single_select_field: *731 - iteration_field: *732 + text_field: *730 + number_field: *731 + date_field: *732 + single_select_field: *733 + iteration_field: *734 '304': *35 '403': *27 '401': *23 @@ -119401,7 +119567,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *280 - - *733 + - *735 - *70 responses: '200': @@ -119410,7 +119576,7 @@ paths: application/json: schema: *283 examples: - default: *734 + default: *736 headers: Link: *66 '304': *35 @@ -119767,7 +119933,7 @@ paths: parameters: - *280 - *70 - - *735 + - *737 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -120306,7 +120472,7 @@ paths: parameters: - *70 - *116 - - *736 + - *738 - *118 responses: '200': @@ -120405,9 +120571,9 @@ paths: - *116 - *117 - *118 - - *737 + - *739 - *121 - - *738 + - *740 responses: '200': description: Response when getting a billing usage summary @@ -120541,9 +120707,9 @@ paths: application/json: schema: type: array - items: *705 + items: *707 examples: - default: *706 + default: *708 headers: Link: *66 x-github: @@ -120573,9 +120739,9 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: *739 + default: *741 headers: Link: *66 x-github: @@ -120600,7 +120766,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *740 + - *742 - *60 - *17 - *19 @@ -120612,11 +120778,11 @@ paths: schema: anyOf: - type: array - items: *741 + items: *743 - type: array items: *78 examples: - default-response: *710 + default-response: *712 headers: Link: *66 x-github: @@ -120776,7 +120942,7 @@ webhooks: type: string enum: - disabled - enterprise: &742 + enterprise: &744 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120845,7 +121011,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &743 + installation: &745 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120866,7 +121032,7 @@ webhooks: required: - id - node_id - organization: &744 + organization: &746 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120939,7 +121105,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &745 + repository: &747 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -121854,10 +122020,10 @@ webhooks: type: string enum: - enabled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -121933,11 +122099,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: &746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: &748 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) @@ -122160,11 +122326,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -122352,11 +122518,11 @@ webhooks: - everyone required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -122440,7 +122606,7 @@ webhooks: type: string enum: - completed - check_run: &748 + check_run: &750 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122550,7 +122716,7 @@ webhooks: - examples: - neutral - deployment: *747 + deployment: *749 details_url: type: string examples: @@ -122648,10 +122814,10 @@ webhooks: - output - app - pull_requests - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -123042,11 +123208,11 @@ webhooks: type: string enum: - created - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -123440,11 +123606,11 @@ webhooks: type: string enum: - requested_action - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 requested_action: description: The action requested by the user. type: object @@ -123847,11 +124013,11 @@ webhooks: type: string enum: - rerequested - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -124836,10 +125002,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -125553,10 +125719,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -126264,10 +126430,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -126588,20 +126754,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &749 + commit_oid: &751 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: *742 - installation: *743 - organization: *744 - ref: &750 + enterprise: *744 + installation: *745 + organization: *746 + ref: &752 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: *745 + repository: *747 sender: *4 required: - action @@ -127009,12 +127175,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -127297,12 +127463,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -127648,12 +127814,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -127943,9 +128109,9 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -127953,7 +128119,7 @@ webhooks: type: - string - 'null' - repository: *745 + repository: *747 sender: *4 required: - action @@ -128199,12 +128365,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -128525,10 +128691,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -128788,10 +128954,10 @@ webhooks: - updated_at - author_association - body - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -128872,18 +129038,18 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *744 - pusher_type: &751 + organization: *746 + pusher_type: &753 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &752 + ref: &754 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -128893,7 +129059,7 @@ webhooks: enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -128976,9 +129142,9 @@ webhooks: enum: - created definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129063,9 +129229,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129143,9 +129309,9 @@ webhooks: enum: - promote_to_enterprise definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129223,9 +129389,9 @@ webhooks: enum: - updated definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -129302,10 +129468,10 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - repository: *745 - organization: *744 + enterprise: *744 + installation: *745 + repository: *747 + organization: *746 sender: *4 new_property_values: type: array @@ -129390,18 +129556,18 @@ webhooks: title: delete event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - pusher_type: *751 - ref: *752 + enterprise: *744 + installation: *745 + organization: *746 + pusher_type: *753 + ref: *754 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -129482,10 +129648,10 @@ webhooks: enum: - assignees_changed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129566,10 +129732,10 @@ webhooks: enum: - auto_dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129651,10 +129817,10 @@ webhooks: enum: - auto_reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129736,10 +129902,10 @@ webhooks: enum: - created alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129819,10 +129985,10 @@ webhooks: enum: - dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129902,10 +130068,10 @@ webhooks: enum: - fixed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -129986,10 +130152,10 @@ webhooks: enum: - reintroduced alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130069,10 +130235,10 @@ webhooks: enum: - reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130149,9 +130315,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - key: &753 + enterprise: *744 + installation: *745 + key: &755 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130189,8 +130355,8 @@ webhooks: - verified - created_at - read_only - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -130267,11 +130433,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - key: *753 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + key: *755 + organization: *746 + repository: *747 sender: *4 required: - action @@ -130838,12 +131004,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: &757 + workflow: &759 title: Workflow type: - object @@ -131598,9 +131764,9 @@ webhooks: pull_requests: type: array items: *596 - repository: *745 - organization: *744 - installation: *743 + repository: *747 + organization: *746 + installation: *745 sender: *4 responses: '200': @@ -131671,7 +131837,7 @@ webhooks: type: string enum: - approved - approver: &754 + approver: &756 type: object properties: avatar_url: @@ -131714,11 +131880,11 @@ webhooks: type: string comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: &755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: &757 type: array items: type: object @@ -131799,7 +131965,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &756 + workflow_job_run: &758 type: object properties: conclusion: @@ -132545,18 +132711,18 @@ webhooks: type: string enum: - rejected - approver: *754 + approver: *756 comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: *755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: *757 sender: *4 since: type: string - workflow_job_run: *756 + workflow_job_run: *758 workflow_job_runs: type: array items: @@ -133273,13 +133439,13 @@ webhooks: type: string enum: - requested - enterprise: *742 + enterprise: *744 environment: type: string - installation: *743 - organization: *744 - repository: *745 - requestor: &762 + installation: *745 + organization: *746 + repository: *747 + requestor: &764 title: User type: - object @@ -135212,12 +135378,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Deployment Workflow Run type: @@ -135908,7 +136074,7 @@ webhooks: type: string enum: - answered - answer: &760 + answer: &762 type: object properties: author_association: @@ -136068,11 +136234,11 @@ webhooks: - created_at - updated_at - body - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136199,11 +136365,11 @@ webhooks: - from required: - category - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136286,11 +136452,11 @@ webhooks: type: string enum: - closed - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136372,7 +136538,7 @@ webhooks: type: string enum: - created - comment: &759 + comment: &761 type: object properties: author_association: @@ -136532,11 +136698,11 @@ webhooks: - updated_at - body - reactions - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136619,12 +136785,12 @@ webhooks: type: string enum: - deleted - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136719,12 +136885,12 @@ webhooks: - from required: - body - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136808,11 +136974,11 @@ webhooks: type: string enum: - created - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136894,11 +137060,11 @@ webhooks: type: string enum: - deleted - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -136998,11 +137164,11 @@ webhooks: type: string required: - from - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137084,10 +137250,10 @@ webhooks: type: string enum: - labeled - discussion: *758 - enterprise: *742 - installation: *743 - label: &761 + discussion: *760 + enterprise: *744 + installation: *745 + label: &763 title: Label type: object properties: @@ -137120,8 +137286,8 @@ webhooks: - color - default - description - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137204,11 +137370,11 @@ webhooks: type: string enum: - locked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137290,11 +137456,11 @@ webhooks: type: string enum: - pinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137376,11 +137542,11 @@ webhooks: type: string enum: - reopened - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137465,16 +137631,16 @@ webhooks: changes: type: object properties: - new_discussion: *758 - new_repository: *745 + new_discussion: *760 + new_repository: *747 required: - new_discussion - new_repository - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137557,10 +137723,10 @@ webhooks: type: string enum: - unanswered - discussion: *758 - old_answer: *760 - organization: *744 - repository: *745 + discussion: *760 + old_answer: *762 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137642,12 +137808,12 @@ webhooks: type: string enum: - unlabeled - discussion: *758 - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137730,11 +137896,11 @@ webhooks: type: string enum: - unlocked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137816,11 +137982,11 @@ webhooks: type: string enum: - unpinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137893,7 +138059,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *742 + enterprise: *744 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -138571,9 +138737,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - forkee @@ -138719,9 +138885,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pages: description: The pages that were updated. type: array @@ -138759,7 +138925,7 @@ webhooks: - action - sha - html_url - repository: *745 + repository: *747 sender: *4 required: - pages @@ -138835,10 +139001,10 @@ webhooks: type: string enum: - created - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: &763 + organization: *746 + repositories: &765 description: An array of repository objects that the installation can access. type: array @@ -138864,8 +139030,8 @@ webhooks: - name - full_name - private - repository: *745 - requester: *762 + repository: *747 + requester: *764 sender: *4 required: - action @@ -138940,11 +139106,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139021,11 +139187,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139102,10 +139268,10 @@ webhooks: type: string enum: - added - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: &764 + organization: *746 + repositories_added: &766 description: An array of repository objects, which were added to the installation. type: array @@ -139151,15 +139317,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *745 - repository_selection: &765 + repository: *747 + repository_selection: &767 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *762 + requester: *764 sender: *4 required: - action @@ -139238,10 +139404,10 @@ webhooks: type: string enum: - removed - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: *764 + organization: *746 + repositories_added: *766 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139268,9 +139434,9 @@ webhooks: - name - full_name - private - repository: *745 - repository_selection: *765 - requester: *762 + repository: *747 + repository_selection: *767 + requester: *764 sender: *4 required: - action @@ -139349,11 +139515,11 @@ webhooks: type: string enum: - suspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139535,10 +139701,10 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 target_type: type: string @@ -139617,11 +139783,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -139877,8 +140043,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141052,8 +141218,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -141133,7 +141299,7 @@ webhooks: type: string enum: - deleted - comment: &766 + comment: &768 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -141308,8 +141474,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142481,8 +142647,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -142562,7 +142728,7 @@ webhooks: type: string enum: - edited - changes: &790 + changes: &792 description: The changes to the comment. type: object properties: @@ -142574,9 +142740,9 @@ webhooks: type: string required: - from - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143749,8 +143915,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -143831,9 +143997,9 @@ webhooks: type: string enum: - pinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145010,8 +145176,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -145091,9 +145257,9 @@ webhooks: type: string enum: - unpinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146270,8 +146436,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146360,9 +146526,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146451,9 +146617,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146541,9 +146707,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146632,9 +146798,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146714,10 +146880,10 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - issue: &767 + assignee: *764 + enterprise: *744 + installation: *745 + issue: &769 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147652,8 +147818,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147733,8 +147899,8 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148817,8 +148983,8 @@ webhooks: required: - state - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -148897,8 +149063,8 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149828,8 +149994,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -149908,8 +150074,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150841,7 +151007,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &768 + milestone: &770 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150984,8 +151150,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -151084,8 +151250,8 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152020,9 +152186,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152102,9 +152268,9 @@ webhooks: type: string enum: - field_added - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was set or updated on the @@ -152270,8 +152436,8 @@ webhooks: - id required: - from - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152351,9 +152517,9 @@ webhooks: type: string enum: - field_removed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -152440,8 +152606,8 @@ webhooks: - 'null' required: - id - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152521,8 +152687,8 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153456,9 +153622,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -153538,8 +153704,8 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154475,8 +154641,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -154555,8 +154721,8 @@ webhooks: type: string enum: - milestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155486,9 +155652,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *768 - organization: *744 - repository: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -156971,8 +157137,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157906,8 +158072,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -157987,9 +158153,9 @@ webhooks: type: string enum: - pinned - enterprise: *742 - installation: *743 - issue: &769 + enterprise: *744 + installation: *745 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -158917,8 +159083,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -158997,8 +159163,8 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159933,8 +160099,8 @@ webhooks: user_view_type: type: string type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161436,11 +161602,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161520,12 +161686,12 @@ webhooks: type: string enum: - typed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161606,7 +161772,7 @@ webhooks: type: string enum: - unassigned - assignee: &793 + assignee: &795 title: User type: - object @@ -161678,11 +161844,11 @@ webhooks: required: - login - id - enterprise: *742 - installation: *743 - issue: *767 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161761,12 +161927,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - issue: *767 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -161846,8 +162012,8 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -162781,8 +162947,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162862,11 +163028,11 @@ webhooks: type: string enum: - unpinned - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162945,12 +163111,12 @@ webhooks: type: string enum: - untyped - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163030,11 +163196,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163112,11 +163278,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163226,11 +163392,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163312,9 +163478,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: &770 + enterprise: *744 + installation: *745 + marketplace_purchase: &772 title: Marketplace Purchase type: object required: @@ -163402,8 +163568,8 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: &771 + organization: *746 + previous_marketplace_purchase: &773 title: Marketplace Purchase type: object properties: @@ -163487,7 +163653,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -163567,10 +163733,10 @@ webhooks: - changed effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163658,7 +163824,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -163740,10 +163906,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163829,7 +163995,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -163910,8 +164076,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 marketplace_purchase: title: Marketplace Purchase type: object @@ -163997,9 +164163,9 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -164079,12 +164245,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -164186,11 +164352,11 @@ webhooks: type: string required: - to - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164292,11 +164458,11 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164375,11 +164541,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164457,11 +164623,11 @@ webhooks: type: string enum: - added - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164539,7 +164705,7 @@ webhooks: required: - login - id - team: &772 + team: &774 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164769,11 +164935,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164852,7 +165018,7 @@ webhooks: required: - login - id - team: *772 + team: *774 required: - action - scope @@ -164934,8 +165100,8 @@ webhooks: type: string enum: - checks_requested - installation: *743 - merge_group: &773 + installation: *745 + merge_group: &775 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164961,8 +165127,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165048,10 +165214,10 @@ webhooks: - merged - invalidated - dequeued - installation: *743 - merge_group: *773 - organization: *744 - repository: *745 + installation: *745 + merge_group: *775 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165124,7 +165290,7 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165233,12 +165399,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *743 - organization: *744 + installation: *745 + organization: *746 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -165318,11 +165484,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165401,9 +165567,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - milestone: &774 + enterprise: *744 + installation: *745 + milestone: &776 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165545,8 +165711,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165625,11 +165791,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165739,11 +165905,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165823,11 +165989,11 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - milestone: *774 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *776 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165906,11 +166072,11 @@ webhooks: type: string enum: - blocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165989,11 +166155,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166072,9 +166238,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - membership: &775 + enterprise: *744 + installation: *745 + membership: &777 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166184,8 +166350,8 @@ webhooks: - role - organization_url - user - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166263,11 +166429,11 @@ webhooks: type: string enum: - member_added - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166346,8 +166512,8 @@ webhooks: type: string enum: - member_invited - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166469,10 +166635,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 - user: *762 + user: *764 required: - action - invitation @@ -166550,11 +166716,11 @@ webhooks: type: string enum: - member_removed - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166641,11 +166807,11 @@ webhooks: properties: from: type: string - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166722,9 +166888,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -167247,7 +167413,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &776 + items: &778 title: Ruby Gems metadata type: object properties: @@ -167344,7 +167510,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -167420,9 +167586,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -167784,7 +167950,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 source_url: type: string format: uri @@ -167855,7 +168021,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -168035,12 +168201,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *742 + enterprise: *744 id: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - id @@ -168117,7 +168283,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &777 + personal_access_token_request: &779 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168267,10 +168433,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *742 - organization: *744 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168347,11 +168513,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168427,11 +168593,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168506,11 +168672,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *777 - organization: *744 - enterprise: *742 + personal_access_token_request: *779 + organization: *746 + enterprise: *744 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -168615,7 +168781,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *778 + last_response: *780 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -168647,8 +168813,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 zen: description: Random string of GitHub zen. @@ -168893,10 +169059,10 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: &779 + enterprise: *744 + installation: *745 + organization: *746 + project_card: &781 title: Project Card type: object properties: @@ -169019,7 +169185,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -169100,11 +169266,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -169184,9 +169350,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: title: Project Card type: object @@ -169316,7 +169482,7 @@ webhooks: repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -169410,11 +169576,11 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -169508,9 +169674,9 @@ webhooks: - from required: - column_id - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: allOf: - title: Project Card @@ -169707,7 +169873,7 @@ webhooks: type: string required: - after_id - repository: *745 + repository: *747 sender: *4 required: - action @@ -169787,10 +169953,10 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - organization: *744 - project: &781 + enterprise: *744 + installation: *745 + organization: *746 + project: &783 title: Project type: object properties: @@ -169917,7 +170083,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -169997,10 +170163,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_column: &780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: &782 title: Project Column type: object properties: @@ -170040,7 +170206,7 @@ webhooks: - name - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -170119,14 +170285,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -170215,11 +170381,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -170299,11 +170465,11 @@ webhooks: type: string enum: - moved - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -170383,11 +170549,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -170467,14 +170633,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project: *781 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -170575,11 +170741,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -170658,11 +170824,11 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -170743,8 +170909,8 @@ webhooks: type: string enum: - closed - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -170826,8 +170992,8 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -170909,8 +171075,8 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171032,8 +171198,8 @@ webhooks: type: string to: type: string - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171117,7 +171283,7 @@ webhooks: type: string enum: - archived - changes: &785 + changes: &787 type: object properties: archived_at: @@ -171133,9 +171299,9 @@ webhooks: - string - 'null' format: date-time - installation: *743 - organization: *744 - projects_v2_item: &782 + installation: *745 + organization: *746 + projects_v2_item: &784 title: Projects v2 Item description: An item belonging to a project type: object @@ -171275,9 +171441,9 @@ webhooks: - 'null' to: type: string - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171359,9 +171525,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171442,9 +171608,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171549,7 +171715,7 @@ webhooks: oneOf: - type: string - type: integer - - &783 + - &785 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -171573,7 +171739,7 @@ webhooks: required: - id - name - - &784 + - &786 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171613,8 +171779,8 @@ webhooks: oneOf: - type: string - type: integer - - *783 - - *784 + - *785 + - *786 type: - 'null' - string @@ -171637,9 +171803,9 @@ webhooks: - 'null' required: - body - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171736,9 +171902,9 @@ webhooks: type: - string - 'null' - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171821,10 +171987,10 @@ webhooks: type: string enum: - restored - changes: *785 - installation: *743 - organization: *744 - projects_v2_item: *782 + changes: *787 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -171906,8 +172072,8 @@ webhooks: type: string enum: - reopened - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -171989,9 +172155,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172072,9 +172238,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172220,9 +172386,9 @@ webhooks: - string - 'null' format: date - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -172293,10 +172459,10 @@ webhooks: title: public event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - repository @@ -172373,13 +172539,13 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - number: &787 + assignee: *764 + enterprise: *744 + installation: *745 + number: &789 description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -174731,7 +174897,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -174813,11 +174979,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -177162,7 +177328,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -177244,11 +177410,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -179593,7 +179759,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -179675,11 +179841,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: &788 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: &790 allOf: - *596 - type: object @@ -179743,7 +179909,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *745 + repository: *747 sender: *4 required: - action @@ -179824,12 +179990,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -179909,11 +180075,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: &789 + number: *789 + organization: *746 + pull_request: &791 title: Pull Request type: object properties: @@ -182257,7 +182423,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -182336,11 +182502,11 @@ webhooks: type: string enum: - dequeued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -184703,7 +184869,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *745 + repository: *747 sender: *4 required: - action @@ -184827,12 +184993,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -184912,11 +185078,11 @@ webhooks: type: string enum: - enqueued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -187264,7 +187430,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -187344,11 +187510,11 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -189699,7 +189865,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -189780,10 +189946,10 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -192132,7 +192298,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -192212,12 +192378,12 @@ webhooks: type: string enum: - milestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: *789 - repository: *745 + number: *789 + organization: *746 + pull_request: *791 + repository: *747 sender: *4 required: - action @@ -192296,12 +192462,12 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -192382,12 +192548,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -192467,12 +192633,12 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -192847,9 +193013,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -195082,7 +195248,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -195162,7 +195328,7 @@ webhooks: type: string enum: - deleted - comment: &791 + comment: &793 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -195455,9 +195621,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -197678,7 +197844,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -197758,11 +197924,11 @@ webhooks: type: string enum: - edited - changes: *790 - comment: *791 - enterprise: *742 - installation: *743 - organization: *744 + changes: *792 + comment: *793 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -199986,7 +200152,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -200067,9 +200233,9 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -202305,7 +202471,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 review: description: The review that was affected. type: object @@ -202556,9 +202722,9 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -204667,8 +204833,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: &792 + repository: *747 + review: &794 description: The review that was affected. type: object properties: @@ -204906,12 +205072,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -207261,7 +207427,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -207347,12 +207513,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -209709,7 +209875,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209904,12 +210070,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -212261,7 +212427,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -212348,12 +212514,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -214696,7 +214862,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214880,9 +215046,9 @@ webhooks: type: string enum: - submitted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -217121,8 +217287,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: *792 + repository: *747 + review: *794 sender: *4 required: - action @@ -217202,9 +217368,9 @@ webhooks: type: string enum: - resolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -219352,7 +219518,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -219749,9 +219915,9 @@ webhooks: type: string enum: - unresolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -221882,7 +222048,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -222281,10 +222447,10 @@ webhooks: type: string before: type: string - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -224622,7 +224788,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -224704,11 +224870,11 @@ webhooks: type: string enum: - unassigned - assignee: *793 - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + assignee: *795 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -227061,7 +227227,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -227140,11 +227306,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -229486,7 +229652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -229567,10 +229733,10 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -231902,7 +232068,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -232105,7 +232271,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *742 + enterprise: *744 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232200,8 +232366,8 @@ webhooks: - url - author - committer - installation: *743 - organization: *744 + installation: *745 + organization: *746 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232800,9 +232966,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -233279,7 +233445,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -233335,7 +233501,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -233413,9 +233579,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -233727,7 +233893,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -233777,7 +233943,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -233854,10 +234020,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - release: &794 + enterprise: *744 + installation: *745 + organization: *746 + release: &796 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234188,7 +234354,7 @@ webhooks: - updated_at - zipball_url - body - repository: *745 + repository: *747 sender: *4 required: - action @@ -234265,11 +234431,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -234386,11 +234552,11 @@ webhooks: type: boolean required: - to - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -234468,9 +234634,9 @@ webhooks: type: string enum: - prereleased - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -234806,7 +234972,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -234882,10 +235048,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - release: &795 + enterprise: *744 + installation: *745 + organization: *746 + release: &797 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -235218,7 +235384,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -235294,11 +235460,11 @@ webhooks: type: string enum: - released - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -235374,11 +235540,11 @@ webhooks: type: string enum: - unpublished - enterprise: *742 - installation: *743 - organization: *744 - release: *795 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *797 + repository: *747 sender: *4 required: - action @@ -235454,10 +235620,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -235534,10 +235700,10 @@ webhooks: type: string enum: - reported - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -235614,10 +235780,10 @@ webhooks: type: string enum: - archived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -235694,10 +235860,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -235775,10 +235941,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -235863,10 +236029,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -235981,10 +236147,10 @@ webhooks: - 'null' items: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236056,10 +236222,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 status: type: string @@ -236140,10 +236306,10 @@ webhooks: type: string enum: - privatized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236220,10 +236386,10 @@ webhooks: type: string enum: - publicized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236317,10 +236483,10 @@ webhooks: - name required: - repository - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236400,10 +236566,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -236482,10 +236648,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -236564,10 +236730,10 @@ webhooks: type: string enum: - edited - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 changes: type: object @@ -236875,10 +237041,10 @@ webhooks: - from required: - owner - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -236956,10 +237122,10 @@ webhooks: type: string enum: - unarchived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237037,7 +237203,7 @@ webhooks: type: string enum: - create - alert: &796 + alert: &798 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237162,10 +237328,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237375,10 +237541,10 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237456,11 +237622,11 @@ webhooks: type: string enum: - reopen - alert: *796 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *798 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237662,10 +237828,10 @@ webhooks: enum: - fixed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237743,7 +237909,7 @@ webhooks: type: string enum: - assigned - alert: &797 + alert: &799 type: object properties: number: *180 @@ -237883,10 +238049,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237964,11 +238130,11 @@ webhooks: type: string enum: - created - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238049,11 +238215,11 @@ webhooks: type: string enum: - created - alert: *797 - installation: *743 - location: *798 - organization: *744 - repository: *745 + alert: *799 + installation: *745 + location: *800 + organization: *746 + repository: *747 sender: *4 required: - location @@ -238291,11 +238457,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238373,11 +238539,11 @@ webhooks: type: string enum: - reopened - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238455,11 +238621,11 @@ webhooks: type: string enum: - resolved - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238537,12 +238703,12 @@ webhooks: type: string enum: - unassigned - alert: *797 + alert: *799 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238620,11 +238786,11 @@ webhooks: type: string enum: - validated - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238754,10 +238920,10 @@ webhooks: - organization - enterprise - - repository: *745 - enterprise: *742 - installation: *743 - organization: *744 + repository: *747 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -238835,11 +239001,11 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: &799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: &801 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239012,11 +239178,11 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: *801 sender: *4 required: - action @@ -239089,10 +239255,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -239266,9 +239432,9 @@ webhooks: type: object properties: security_and_analysis: *296 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: *340 sender: *4 required: @@ -239347,12 +239513,12 @@ webhooks: type: string enum: - cancelled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: &800 + sponsorship: &802 type: object properties: created_at: @@ -239657,12 +239823,12 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -239750,12 +239916,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -239832,17 +239998,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &801 + effective_date: &803 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: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -239916,7 +240082,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &802 + changes: &804 type: object properties: tier: @@ -239960,13 +240126,13 @@ webhooks: - from required: - tier - effective_date: *801 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + effective_date: *803 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -240043,13 +240209,13 @@ webhooks: type: string enum: - tier_changed - changes: *802 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + changes: *804 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -240123,10 +240289,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240210,10 +240376,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240647,15 +240813,15 @@ webhooks: type: - string - 'null' - enterprise: *742 + enterprise: *744 id: description: The unique identifier of the status. type: integer - installation: *743 + installation: *745 name: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 sha: description: The Commit SHA. @@ -240771,9 +240937,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240862,9 +241028,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240953,9 +241119,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241044,9 +241210,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -241122,12 +241288,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - team: &803 + team: &805 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -241357,9 +241523,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -241829,7 +241995,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -241905,9 +242071,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -242377,7 +242543,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -242454,9 +242620,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -242926,7 +243092,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -243070,9 +243236,9 @@ webhooks: - from required: - permissions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -243542,7 +243708,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - changes @@ -243620,9 +243786,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -244092,7 +244258,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -244168,10 +244334,10 @@ webhooks: type: string enum: - started - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -244244,17 +244410,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *742 + enterprise: *744 inputs: type: - object - 'null' additionalProperties: true - installation: *743 - organization: *744 + installation: *745 + organization: *746 ref: type: string - repository: *745 + repository: *747 sender: *4 workflow: type: string @@ -244336,10 +244502,10 @@ webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: allOf: @@ -244674,10 +244840,10 @@ webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: allOf: @@ -245038,10 +245204,10 @@ webhooks: type: string enum: - queued - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: type: object @@ -245266,10 +245432,10 @@ webhooks: type: string enum: - waiting - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 workflow_job: type: object @@ -245496,12 +245662,12 @@ webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -246520,12 +246686,12 @@ webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object @@ -247529,12 +247695,12 @@ webhooks: type: string enum: - requested - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 1e2568d4b0..229a19e455 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -273961,7 +273961,7 @@ "/orgs/{org}/teams/{team_slug}/members": { "get": { "summary": "List team members", - "description": "Team members will include the members of child teams.\n\nTo list members in a team, the team must be visible to the authenticated user.", + "description": "Team members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests.\n\nTo list members in a team, the team must be visible to the authenticated user.", "tags": [ "teams" ], @@ -274031,8 +274031,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -274175,6 +274175,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -274220,7 +274238,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } @@ -740098,7 +740118,7 @@ "/teams/{team_id}/members": { "get": { "summary": "List team members (Legacy)", - "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.", + "description": "> [!WARNING]\n> **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint.\n\nTeam members will include the members of child teams.\n\nEach member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`).", "tags": [ "teams" ], @@ -740159,8 +740179,8 @@ "schema": { "type": "array", "items": { - "title": "Simple User", - "description": "A GitHub user.", + "title": "Team Member", + "description": "A user that is a member of a team, including their role on the team and whether the membership is inherited from a child team.", "type": "object", "properties": { "name": { @@ -740303,6 +740323,24 @@ "examples": [ "public" ] + }, + "role": { + "type": "string", + "description": "The member's role on the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "enum": [ + "member", + "maintainer" + ], + "examples": [ + "member" + ] + }, + "inherited": { + "type": "boolean", + "description": "Whether the user is a member of the team only through a child team. `true` means the membership is inherited from a child team; `false` means the user is a direct (immediate) member of the team. Only present on the `List team members` endpoint, and only when the feature is enabled for the organization.", + "examples": [ + false + ] } }, "required": [ @@ -740348,7 +740386,9 @@ "events_url": "https://api.github.com/users/octocat/events{/privacy}", "received_events_url": "https://api.github.com/users/octocat/received_events", "type": "User", - "site_admin": false + "site_admin": false, + "role": "member", + "inherited": false } ] } diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 53a369cc7a..945eced3af 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -14697,7 +14697,7 @@ paths: properties: action: type: string - discussion: &758 + discussion: &760 title: Discussion description: A Discussion in a repository. type: object @@ -17206,7 +17206,7 @@ paths: url: type: string format: uri - user: &685 + user: &687 title: Public User description: Public User type: object @@ -23246,7 +23246,7 @@ paths: parameters: - *74 - *116 - - &736 + - &738 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -23358,7 +23358,7 @@ paths: - *116 - *117 - *118 - - &737 + - &739 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -23366,7 +23366,7 @@ paths: schema: type: string - *121 - - &738 + - &740 name: sku description: The SKU to query for usage. in: query @@ -31078,12 +31078,12 @@ paths: required: - subject_digests examples: - default: &717 + default: &719 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &718 + withPredicateType: &720 value: subject_digests: - sha256:abc123 @@ -31142,7 +31142,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &719 + default: &721 value: attestations_subject_digests: - sha256:abc: @@ -43421,7 +43421,7 @@ paths: parameters: - *74 - *257 - - &700 + - &702 name: repo_name description: repo_name parameter in: path @@ -44500,7 +44500,7 @@ paths: - nuget - container - *74 - - &701 + - &703 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44541,7 +44541,7 @@ paths: default: *263 '403': *27 '401': *23 - '400': &703 + '400': &705 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46672,7 +46672,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &786 + - &788 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47642,7 +47642,7 @@ paths: - updated_at - project_url examples: - default: &723 + default: &725 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47819,7 +47819,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &724 + items: &726 type: object properties: name: @@ -47856,7 +47856,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &725 + iteration_configuration: &727 type: object description: The configuration for iteration fields. properties: @@ -47906,7 +47906,7 @@ paths: value: name: Due date data_type: date - single_select_field: &726 + single_select_field: &728 summary: Create a single select field value: name: Priority @@ -47933,7 +47933,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &727 + iteration_field: &729 summary: Create an iteration field value: name: Sprint @@ -47959,7 +47959,7 @@ paths: application/json: schema: *283 examples: - text_field: &728 + text_field: &730 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47968,7 +47968,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &729 + number_field: &731 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47977,7 +47977,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &730 + date_field: &732 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47986,7 +47986,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &731 + single_select_field: &733 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48020,7 +48020,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &732 + iteration_field: &734 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -48066,7 +48066,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *280 - - &733 + - &735 name: field_id description: The unique identifier of the field. in: path @@ -48081,7 +48081,7 @@ paths: application/json: schema: *283 examples: - default: &734 + default: &736 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -49292,7 +49292,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &714 + schema: &716 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49475,7 +49475,7 @@ paths: parameters: - *280 - *74 - - &735 + - &737 name: view_number description: The number that identifies the project view. in: path @@ -56929,6 +56929,8 @@ paths: description: |- Team members will include the members of child teams. + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). These fields let you read a member's role and direct/inherited status without additional requests. + To list members in a team, the team must be visible to the authenticated user. tags: - teams @@ -56959,9 +56961,171 @@ paths: application/json: schema: type: array - items: *4 + items: &681 + title: Team Member + description: A user that is a member of a team, including their + role on the team and whether the membership is inherited from + a child team. + type: object + properties: + name: + type: + - string + - 'null' + email: + type: + - string + - 'null' + login: + type: string + examples: + - octocat + id: + type: integer + format: int64 + examples: + - 1 + node_id: + type: string + examples: + - MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + examples: + - https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: + - string + - 'null' + examples: + - 41d064eb2195891e12d0413f63227ea7 + url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat + html_url: + type: string + format: uri + examples: + - https://github.com/octocat + followers_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/followers + following_url: + type: string + examples: + - https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + examples: + - https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + examples: + - https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/repos + events_url: + type: string + examples: + - https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + examples: + - https://api.github.com/users/octocat/received_events + type: + type: string + examples: + - User + site_admin: + type: boolean + starred_at: + type: string + examples: + - '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + examples: + - public + role: + type: string + description: The member's role on the team. Only present on + the `List team members` endpoint, and only when the feature + is enabled for the organization. + enum: + - member + - maintainer + examples: + - member + inherited: + type: boolean + description: Whether the user is a member of the team only through + a child team. `true` means the membership is inherited from + a child team; `false` means the user is a direct (immediate) + member of the team. Only present on the `List team members` + endpoint, and only when the feature is enabled for the organization. + examples: + - false + required: + - avatar_url + - events_url + - followers_url + - following_url + - gists_url + - gravatar_id + - html_url + - id + - node_id + - login + - organizations_url + - received_events_url + - repos_url + - site_admin + - starred_url + - subscriptions_url + - type + - url examples: - default: *69 + default: &682 + value: + - login: octocat + id: 1 + node_id: MDQ6VXNlcjE= + avatar_url: https://github.com/images/error/octocat_happy.gif + gravatar_id: '' + url: https://api.github.com/users/octocat + html_url: https://github.com/octocat + followers_url: https://api.github.com/users/octocat/followers + following_url: https://api.github.com/users/octocat/following{/other_user} + gists_url: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/octocat/subscriptions + organizations_url: https://api.github.com/users/octocat/orgs + repos_url: https://api.github.com/users/octocat/repos + events_url: https://api.github.com/users/octocat/events{/privacy} + received_events_url: https://api.github.com/users/octocat/received_events + type: User + site_admin: false + role: member + inherited: false headers: Link: *66 x-github: @@ -57027,7 +57191,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &683 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57092,7 +57256,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &684 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57206,7 +57370,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &683 + schema: &685 title: Team Repository description: A team's access to a repository. type: object @@ -58020,7 +58184,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: &684 + response-if-child-teams-exist: &686 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -70175,7 +70339,7 @@ paths: check. type: array items: *85 - deployment: &747 + deployment: &749 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75912,7 +76076,7 @@ paths: type: array items: *459 examples: - default: &690 + default: &692 value: total_count: 2 machines: @@ -86950,7 +87114,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &778 + last_response: &780 title: Hook Response type: object properties: @@ -88019,7 +88183,7 @@ paths: parameters: - *337 - *338 - - &712 + - &714 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88604,7 +88768,7 @@ paths: type: array items: *534 examples: - default: &705 + default: &707 value: - id: 1 repository: @@ -104329,7 +104493,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &798 + items: &800 type: object properties: type: @@ -110078,6 +110242,8 @@ paths: > **Endpoint closing down notice:** This endpoint route is closing down and will be removed from the Teams API. We recommend migrating your existing code to use the new [`List team members`](https://docs.github.com/rest/teams/members#list-team-members) endpoint. Team members will include the members of child teams. + + Each member includes their `role` on the team (`member` or `maintainer`) and an `inherited` flag indicating whether the membership is inherited from a child team (`true`) or is a direct membership (`false`). tags: - teams operationId: teams/list-members-legacy @@ -110106,9 +110272,9 @@ paths: application/json: schema: type: array - items: *4 + items: *681 examples: - default: *69 + default: *682 headers: Link: *66 '404': *6 @@ -110259,7 +110425,7 @@ paths: application/json: schema: *336 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *683 '404': *6 x-github: githubCloudOnly: false @@ -110320,7 +110486,7 @@ paths: application/json: schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *684 '403': description: Forbidden if team synchronization is set up '422': @@ -110432,7 +110598,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *683 + schema: *685 examples: alternative-response-with-extra-repository-information: value: @@ -110680,7 +110846,7 @@ paths: type: array items: *200 examples: - response-if-child-teams-exist: *684 + response-if-child-teams-exist: *686 headers: Link: *66 '404': *6 @@ -110713,7 +110879,7 @@ paths: application/json: schema: oneOf: - - &686 + - &688 title: Private User description: Private User type: object @@ -110963,7 +111129,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *685 + - *687 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -111123,7 +111289,7 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: default: value: @@ -111521,7 +111687,7 @@ paths: type: integer secrets: type: array - items: &687 + items: &689 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -111641,7 +111807,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *689 examples: default: value: @@ -112054,7 +112220,7 @@ paths: description: Response content: application/json: - schema: &688 + schema: &690 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -112107,7 +112273,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &689 + default: &691 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -112152,9 +112318,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *689 + default: *691 '404': *6 x-github: githubCloudOnly: false @@ -112193,7 +112359,7 @@ paths: type: array items: *459 examples: - default: *690 + default: *692 '304': *35 '500': *53 '401': *23 @@ -113159,7 +113325,7 @@ paths: type: array items: *262 examples: - default: &702 + default: &704 value: - id: 197 name: hello_docker @@ -113260,7 +113426,7 @@ paths: application/json: schema: type: array - items: &691 + items: &693 title: Email description: Email type: object @@ -113330,9 +113496,9 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: &704 + default: &706 value: - email: octocat@github.com verified: true @@ -113409,7 +113575,7 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: default: value: @@ -113667,7 +113833,7 @@ paths: application/json: schema: type: array - items: &692 + items: &694 title: GPG Key description: A unique encryption key type: object @@ -113812,7 +113978,7 @@ paths: - subkeys - revoked examples: - default: &721 + default: &723 value: - id: 3 name: Octocat's GPG Key @@ -113897,9 +114063,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: &693 + default: &695 value: id: 3 name: Octocat's GPG Key @@ -113956,7 +114122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &694 + - &696 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -113968,9 +114134,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: *693 + default: *695 '404': *6 '304': *35 '403': *27 @@ -113993,7 +114159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *694 + - *696 responses: '204': description: Response @@ -114460,7 +114626,7 @@ paths: application/json: schema: type: array - items: &695 + items: &697 title: Key description: Key type: object @@ -114563,9 +114729,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: &696 + default: &698 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -114604,9 +114770,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: *696 + default: *698 '404': *6 '304': *35 '403': *27 @@ -114662,7 +114828,7 @@ paths: application/json: schema: type: array - items: &697 + items: &699 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -114741,7 +114907,7 @@ paths: - account - plan examples: - default: &698 + default: &700 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -114803,9 +114969,9 @@ paths: application/json: schema: type: array - items: *697 + items: *699 examples: - default: *698 + default: *700 headers: Link: *66 '304': *35 @@ -115048,7 +115214,7 @@ paths: application/json: schema: *254 examples: - default: &699 + default: &701 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -115097,7 +115263,7 @@ paths: application/json: schema: *254 examples: - default: *699 + default: *701 '403': *27 '404': *6 '422': *15 @@ -115831,7 +115997,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *257 - - *700 + - *702 responses: '204': description: Response @@ -115964,7 +116130,7 @@ paths: - docker - nuget - container - - *701 + - *703 - *19 - *17 responses: @@ -115976,8 +116142,8 @@ paths: type: array items: *262 examples: - default: *702 - '400': *703 + default: *704 + '400': *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116006,7 +116172,7 @@ paths: application/json: schema: *262 examples: - default: &722 + default: &724 value: id: 40201 name: octo-name @@ -116368,9 +116534,9 @@ paths: application/json: schema: type: array - items: *691 + items: *693 examples: - default: *704 + default: *706 headers: Link: *66 '304': *35 @@ -116483,7 +116649,7 @@ paths: type: array items: *78 examples: - default: &711 + default: &713 summary: Default response value: - id: 1296269 @@ -116849,7 +117015,7 @@ paths: type: array items: *534 examples: - default: *705 + default: *707 headers: Link: *66 '304': *35 @@ -116934,7 +117100,7 @@ paths: application/json: schema: type: array - items: &706 + items: &708 title: Social account description: Social media account type: object @@ -116951,7 +117117,7 @@ paths: - provider - url examples: - default: &707 + default: &709 value: - provider: twitter url: https://twitter.com/github @@ -117014,9 +117180,9 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *707 + default: *709 '422': *15 '304': *35 '404': *6 @@ -117104,7 +117270,7 @@ paths: application/json: schema: type: array - items: &708 + items: &710 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -117124,7 +117290,7 @@ paths: - title - created_at examples: - default: &739 + default: &741 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -117189,9 +117355,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: &709 + default: &711 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -117221,7 +117387,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: - - &710 + - &712 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -117233,9 +117399,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: *709 + default: *711 '404': *6 '304': *35 '403': *27 @@ -117258,7 +117424,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: - - *710 + - *712 responses: '204': description: Response @@ -117287,7 +117453,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &740 + - &742 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 @@ -117312,11 +117478,11 @@ paths: type: array items: *78 examples: - default-response: *711 + default-response: *713 application/vnd.github.v3.star+json: schema: type: array - items: &741 + items: &743 title: Starred Repository description: Starred Repository type: object @@ -117685,10 +117851,10 @@ paths: application/json: schema: oneOf: - - *686 - - *685 + - *688 + - *687 examples: - default-response: &715 + default-response: &717 summary: Default response value: login: octocat @@ -117723,7 +117889,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &716 + response-with-git-hub-plan-information: &718 summary: Response with GitHub plan information value: login: octocat @@ -117780,7 +117946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &713 + - &715 name: user_id description: The unique identifier of the user. in: path @@ -117846,7 +118012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *712 + - *714 - *17 responses: '200': @@ -117881,7 +118047,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *713 + - *715 - *280 requestBody: required: true @@ -117956,7 +118122,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *714 + schema: *716 examples: table_view: summary: Response for creating a table view @@ -118008,11 +118174,11 @@ paths: application/json: schema: oneOf: - - *686 - - *685 + - *688 + - *687 examples: - default-response: *715 - response-with-git-hub-plan-information: *716 + default-response: *717 + response-with-git-hub-plan-information: *718 '404': *6 x-github: githubCloudOnly: false @@ -118062,8 +118228,8 @@ paths: required: - subject_digests examples: - default: *717 - withPredicateType: *718 + default: *719 + withPredicateType: *720 responses: '200': description: Response @@ -118117,7 +118283,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *719 + default: *721 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118635,7 +118801,7 @@ paths: application/json: schema: *196 examples: - default: &720 + default: &722 summary: Example response for a user copilot space value: id: 42 @@ -118736,7 +118902,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 x-github: @@ -118862,7 +119028,7 @@ paths: application/json: schema: *196 examples: - default: *720 + default: *722 '403': *27 '404': *6 '422': *15 @@ -119630,7 +119796,7 @@ paths: type: array items: *262 examples: - default: *702 + default: *704 '403': *27 '401': *23 x-github: @@ -120014,9 +120180,9 @@ paths: application/json: schema: type: array - items: *692 + items: *694 examples: - default: *721 + default: *723 headers: Link: *66 x-github: @@ -120245,7 +120411,7 @@ paths: - docker - nuget - container - - *701 + - *703 - *70 - *19 - *17 @@ -120258,10 +120424,10 @@ paths: type: array items: *262 examples: - default: *702 + default: *704 '403': *27 '401': *23 - '400': *703 + '400': *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120291,7 +120457,7 @@ paths: application/json: schema: *262 examples: - default: *722 + default: *724 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120640,7 +120806,7 @@ paths: type: array items: *283 examples: - default: *723 + default: *725 headers: Link: *66 '304': *35 @@ -120700,7 +120866,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *724 + items: *726 required: - name - data_type @@ -120716,7 +120882,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *725 + iteration_configuration: *727 required: - name - data_type @@ -120738,8 +120904,8 @@ paths: value: name: Due date data_type: date - single_select_field: *726 - iteration_field: *727 + single_select_field: *728 + iteration_field: *729 responses: '201': description: Response @@ -120747,11 +120913,11 @@ paths: application/json: schema: *283 examples: - text_field: *728 - number_field: *729 - date_field: *730 - single_select_field: *731 - iteration_field: *732 + text_field: *730 + number_field: *731 + date_field: *732 + single_select_field: *733 + iteration_field: *734 '304': *35 '403': *27 '401': *23 @@ -120773,7 +120939,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *280 - - *733 + - *735 - *70 responses: '200': @@ -120782,7 +120948,7 @@ paths: application/json: schema: *283 examples: - default: *734 + default: *736 headers: Link: *66 '304': *35 @@ -121139,7 +121305,7 @@ paths: parameters: - *280 - *70 - - *735 + - *737 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121678,7 +121844,7 @@ paths: parameters: - *70 - *116 - - *736 + - *738 - *118 responses: '200': @@ -121777,9 +121943,9 @@ paths: - *116 - *117 - *118 - - *737 + - *739 - *121 - - *738 + - *740 responses: '200': description: Response when getting a billing usage summary @@ -121913,9 +122079,9 @@ paths: application/json: schema: type: array - items: *706 + items: *708 examples: - default: *707 + default: *709 headers: Link: *66 x-github: @@ -121945,9 +122111,9 @@ paths: application/json: schema: type: array - items: *708 + items: *710 examples: - default: *739 + default: *741 headers: Link: *66 x-github: @@ -121972,7 +122138,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *740 + - *742 - *60 - *17 - *19 @@ -121984,11 +122150,11 @@ paths: schema: anyOf: - type: array - items: *741 + items: *743 - type: array items: *78 examples: - default-response: *711 + default-response: *713 headers: Link: *66 x-github: @@ -122148,7 +122314,7 @@ webhooks: type: string enum: - disabled - enterprise: &742 + enterprise: &744 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122217,7 +122383,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &743 + installation: &745 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122238,7 +122404,7 @@ webhooks: required: - id - node_id - organization: &744 + organization: &746 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122311,7 +122477,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &745 + repository: &747 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -123251,10 +123417,10 @@ webhooks: type: string enum: - enabled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -123330,11 +123496,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: &746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: &748 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) @@ -123557,11 +123723,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -123749,11 +123915,11 @@ webhooks: - everyone required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + rule: *748 sender: *4 required: - action @@ -123837,7 +124003,7 @@ webhooks: type: string enum: - completed - check_run: &748 + check_run: &750 title: CheckRun description: A check performed on the code of a given code change type: object @@ -123947,7 +124113,7 @@ webhooks: - examples: - neutral - deployment: *747 + deployment: *749 details_url: type: string examples: @@ -124045,10 +124211,10 @@ webhooks: - output - app - pull_requests - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -124439,11 +124605,11 @@ webhooks: type: string enum: - created - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -124837,11 +125003,11 @@ webhooks: type: string enum: - requested_action - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 requested_action: description: The action requested by the user. type: object @@ -125244,11 +125410,11 @@ webhooks: type: string enum: - rerequested - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *750 + installation: *745 + enterprise: *744 + organization: *746 + repository: *747 sender: *4 required: - check_run @@ -126233,10 +126399,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -126950,10 +127116,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -127661,10 +127827,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -127985,20 +128151,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &749 + commit_oid: &751 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: *742 - installation: *743 - organization: *744 - ref: &750 + enterprise: *744 + installation: *745 + organization: *746 + ref: &752 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: *745 + repository: *747 sender: *4 required: - action @@ -128406,12 +128572,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -128694,12 +128860,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -129045,12 +129211,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -129340,9 +129506,9 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -129350,7 +129516,7 @@ webhooks: type: - string - 'null' - repository: *745 + repository: *747 sender: *4 required: - action @@ -129596,12 +129762,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *751 + enterprise: *744 + installation: *745 + organization: *746 + ref: *752 + repository: *747 sender: *4 required: - action @@ -129922,10 +130088,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -130185,10 +130351,10 @@ webhooks: - updated_at - author_association - body - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -130269,18 +130435,18 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *744 - pusher_type: &751 + organization: *746 + pusher_type: &753 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &752 + ref: &754 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -130290,7 +130456,7 @@ webhooks: enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -130373,9 +130539,9 @@ webhooks: enum: - created definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -130460,9 +130626,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -130540,9 +130706,9 @@ webhooks: enum: - promote_to_enterprise definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -130620,9 +130786,9 @@ webhooks: enum: - updated definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -130699,10 +130865,10 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - repository: *745 - organization: *744 + enterprise: *744 + installation: *745 + repository: *747 + organization: *746 sender: *4 new_property_values: type: array @@ -130787,18 +130953,18 @@ webhooks: title: delete event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - pusher_type: *751 - ref: *752 + enterprise: *744 + installation: *745 + organization: *746 + pusher_type: *753 + ref: *754 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *745 + repository: *747 sender: *4 required: - ref @@ -130879,10 +131045,10 @@ webhooks: enum: - assignees_changed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -130963,10 +131129,10 @@ webhooks: enum: - auto_dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131048,10 +131214,10 @@ webhooks: enum: - auto_reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131133,10 +131299,10 @@ webhooks: enum: - created alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131216,10 +131382,10 @@ webhooks: enum: - dismissed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131299,10 +131465,10 @@ webhooks: enum: - fixed alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131383,10 +131549,10 @@ webhooks: enum: - reintroduced alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131466,10 +131632,10 @@ webhooks: enum: - reopened alert: *490 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *745 + organization: *746 + enterprise: *744 + repository: *747 sender: *4 required: - action @@ -131546,9 +131712,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - key: &753 + enterprise: *744 + installation: *745 + key: &755 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -131586,8 +131752,8 @@ webhooks: - verified - created_at - read_only - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -131664,11 +131830,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - key: *753 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + key: *755 + organization: *746 + repository: *747 sender: *4 required: - action @@ -132235,12 +132401,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: &757 + workflow: &759 title: Workflow type: - object @@ -132995,9 +133161,9 @@ webhooks: pull_requests: type: array items: *596 - repository: *745 - organization: *744 - installation: *743 + repository: *747 + organization: *746 + installation: *745 sender: *4 responses: '200': @@ -133068,7 +133234,7 @@ webhooks: type: string enum: - approved - approver: &754 + approver: &756 type: object properties: avatar_url: @@ -133111,11 +133277,11 @@ webhooks: type: string comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: &755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: &757 type: array items: type: object @@ -133196,7 +133362,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &756 + workflow_job_run: &758 type: object properties: conclusion: @@ -133942,18 +134108,18 @@ webhooks: type: string enum: - rejected - approver: *754 + approver: *756 comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: *755 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + reviewers: *757 sender: *4 since: type: string - workflow_job_run: *756 + workflow_job_run: *758 workflow_job_runs: type: array items: @@ -134670,13 +134836,13 @@ webhooks: type: string enum: - requested - enterprise: *742 + enterprise: *744 environment: type: string - installation: *743 - organization: *744 - repository: *745 - requestor: &762 + installation: *745 + organization: *746 + repository: *747 + requestor: &764 title: User type: - object @@ -136609,12 +136775,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - workflow: *757 + workflow: *759 workflow_run: title: Deployment Workflow Run type: @@ -137305,7 +137471,7 @@ webhooks: type: string enum: - answered - answer: &760 + answer: &762 type: object properties: author_association: @@ -137465,11 +137631,11 @@ webhooks: - created_at - updated_at - body - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137596,11 +137762,11 @@ webhooks: - from required: - category - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137683,11 +137849,11 @@ webhooks: type: string enum: - closed - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -137769,7 +137935,7 @@ webhooks: type: string enum: - created - comment: &759 + comment: &761 type: object properties: author_association: @@ -137929,11 +138095,11 @@ webhooks: - updated_at - body - reactions - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138016,12 +138182,12 @@ webhooks: type: string enum: - deleted - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138116,12 +138282,12 @@ webhooks: - from required: - body - comment: *759 - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *761 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138205,11 +138371,11 @@ webhooks: type: string enum: - created - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138291,11 +138457,11 @@ webhooks: type: string enum: - deleted - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138395,11 +138561,11 @@ webhooks: type: string required: - from - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138481,10 +138647,10 @@ webhooks: type: string enum: - labeled - discussion: *758 - enterprise: *742 - installation: *743 - label: &761 + discussion: *760 + enterprise: *744 + installation: *745 + label: &763 title: Label type: object properties: @@ -138517,8 +138683,8 @@ webhooks: - color - default - description - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138601,11 +138767,11 @@ webhooks: type: string enum: - locked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138687,11 +138853,11 @@ webhooks: type: string enum: - pinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138773,11 +138939,11 @@ webhooks: type: string enum: - reopened - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138862,16 +139028,16 @@ webhooks: changes: type: object properties: - new_discussion: *758 - new_repository: *745 + new_discussion: *760 + new_repository: *747 required: - new_discussion - new_repository - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -138954,10 +139120,10 @@ webhooks: type: string enum: - unanswered - discussion: *758 - old_answer: *760 - organization: *744 - repository: *745 + discussion: *760 + old_answer: *762 + organization: *746 + repository: *747 sender: *4 required: - action @@ -139039,12 +139205,12 @@ webhooks: type: string enum: - unlabeled - discussion: *758 - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -139127,11 +139293,11 @@ webhooks: type: string enum: - unlocked - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -139213,11 +139379,11 @@ webhooks: type: string enum: - unpinned - discussion: *758 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *760 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -139290,7 +139456,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *742 + enterprise: *744 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -139968,9 +140134,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - forkee @@ -140116,9 +140282,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pages: description: The pages that were updated. type: array @@ -140156,7 +140322,7 @@ webhooks: - action - sha - html_url - repository: *745 + repository: *747 sender: *4 required: - pages @@ -140232,10 +140398,10 @@ webhooks: type: string enum: - created - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: &763 + organization: *746 + repositories: &765 description: An array of repository objects that the installation can access. type: array @@ -140261,8 +140427,8 @@ webhooks: - name - full_name - private - repository: *745 - requester: *762 + repository: *747 + requester: *764 sender: *4 required: - action @@ -140337,11 +140503,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -140418,11 +140584,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -140499,10 +140665,10 @@ webhooks: type: string enum: - added - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: &764 + organization: *746 + repositories_added: &766 description: An array of repository objects, which were added to the installation. type: array @@ -140548,15 +140714,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *745 - repository_selection: &765 + repository: *747 + repository_selection: &767 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *762 + requester: *764 sender: *4 required: - action @@ -140635,10 +140801,10 @@ webhooks: type: string enum: - removed - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories_added: *764 + organization: *746 + repositories_added: *766 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -140665,9 +140831,9 @@ webhooks: - name - full_name - private - repository: *745 - repository_selection: *765 - requester: *762 + repository: *747 + repository_selection: *767 + requester: *764 sender: *4 required: - action @@ -140746,11 +140912,11 @@ webhooks: type: string enum: - suspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -140932,10 +141098,10 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 target_type: type: string @@ -141014,11 +141180,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *742 + enterprise: *744 installation: *20 - organization: *744 - repositories: *763 - repository: *745 + organization: *746 + repositories: *765 + repository: *747 requester: type: - 'null' @@ -141274,8 +141440,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142449,8 +142615,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -142530,7 +142696,7 @@ webhooks: type: string enum: - deleted - comment: &766 + comment: &768 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -142705,8 +142871,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143878,8 +144044,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -143959,7 +144125,7 @@ webhooks: type: string enum: - edited - changes: &790 + changes: &792 description: The changes to the comment. type: object properties: @@ -143971,9 +144137,9 @@ webhooks: type: string required: - from - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145146,8 +145312,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -145228,9 +145394,9 @@ webhooks: type: string enum: - pinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146407,8 +146573,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -146488,9 +146654,9 @@ webhooks: type: string enum: - unpinned - comment: *766 - enterprise: *742 - installation: *743 + comment: *768 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147667,8 +147833,8 @@ webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147757,9 +147923,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147848,9 +148014,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -147938,9 +148104,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -148029,9 +148195,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -148111,10 +148277,10 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - issue: &767 + assignee: *764 + enterprise: *744 + installation: *745 + issue: &769 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149049,8 +149215,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -149130,8 +149296,8 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -150214,8 +150380,8 @@ webhooks: required: - state - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -150294,8 +150460,8 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151225,8 +151391,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -151305,8 +151471,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152238,7 +152404,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &768 + milestone: &770 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152381,8 +152547,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -152481,8 +152647,8 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153417,9 +153583,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -153499,9 +153665,9 @@ webhooks: type: string enum: - field_added - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was set or updated on the @@ -153667,8 +153833,8 @@ webhooks: - id required: - from - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -153748,9 +153914,9 @@ webhooks: type: string enum: - field_removed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -153837,8 +154003,8 @@ webhooks: - 'null' required: - id - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -153918,8 +154084,8 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154853,9 +155019,9 @@ webhooks: - active_lock_reason - body - reactions - label: *761 - organization: *744 - repository: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -154935,8 +155101,8 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155872,8 +156038,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -155952,8 +156118,8 @@ webhooks: type: string enum: - milestoned - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156883,9 +157049,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *768 - organization: *744 - repository: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -158368,8 +158534,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159303,8 +159469,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -159384,9 +159550,9 @@ webhooks: type: string enum: - pinned - enterprise: *742 - installation: *743 - issue: &769 + enterprise: *744 + installation: *745 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -160314,8 +160480,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -160394,8 +160560,8 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161330,8 +161496,8 @@ webhooks: user_view_type: type: string type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162833,11 +162999,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -162917,12 +163083,12 @@ webhooks: type: string enum: - typed - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163003,7 +163169,7 @@ webhooks: type: string enum: - unassigned - assignee: &793 + assignee: &795 title: User type: - object @@ -163075,11 +163241,11 @@ webhooks: required: - login - id - enterprise: *742 - installation: *743 - issue: *767 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163158,12 +163324,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - issue: *767 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *769 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -163243,8 +163409,8 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -164178,8 +164344,8 @@ webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164259,11 +164425,11 @@ webhooks: type: string enum: - unpinned - enterprise: *742 - installation: *743 - issue: *769 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + issue: *771 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164342,12 +164508,12 @@ webhooks: type: string enum: - untyped - enterprise: *742 - installation: *743 - issue: *767 + enterprise: *744 + installation: *745 + issue: *769 type: *245 - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164427,11 +164593,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164509,11 +164675,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164623,11 +164789,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - label: *761 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + label: *763 + organization: *746 + repository: *747 sender: *4 required: - action @@ -164709,9 +164875,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: &770 + enterprise: *744 + installation: *745 + marketplace_purchase: &772 title: Marketplace Purchase type: object required: @@ -164799,8 +164965,8 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: &771 + organization: *746 + previous_marketplace_purchase: &773 title: Marketplace Purchase type: object properties: @@ -164884,7 +165050,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -164964,10 +165130,10 @@ webhooks: - changed effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165055,7 +165221,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -165137,10 +165303,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165226,7 +165392,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *747 sender: *4 required: - action @@ -165307,8 +165473,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 marketplace_purchase: title: Marketplace Purchase type: object @@ -165394,9 +165560,9 @@ webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -165476,12 +165642,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *770 - organization: *744 - previous_marketplace_purchase: *771 - repository: *745 + enterprise: *744 + installation: *745 + marketplace_purchase: *772 + organization: *746 + previous_marketplace_purchase: *773 + repository: *747 sender: *4 required: - action @@ -165583,11 +165749,11 @@ webhooks: type: string required: - to - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165689,11 +165855,11 @@ webhooks: type: - string - 'null' - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165772,11 +165938,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 sender: *4 required: - action @@ -165854,11 +166020,11 @@ webhooks: type: string enum: - added - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165936,7 +166102,7 @@ webhooks: required: - login - id - team: &772 + team: &774 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -166166,11 +166332,11 @@ webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *762 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + member: *764 + organization: *746 + repository: *747 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166249,7 +166415,7 @@ webhooks: required: - login - id - team: *772 + team: *774 required: - action - scope @@ -166331,8 +166497,8 @@ webhooks: type: string enum: - checks_requested - installation: *743 - merge_group: &773 + installation: *745 + merge_group: &775 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -166358,8 +166524,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166445,10 +166611,10 @@ webhooks: - merged - invalidated - dequeued - installation: *743 - merge_group: *773 - organization: *744 - repository: *745 + installation: *745 + merge_group: *775 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166521,7 +166687,7 @@ webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *744 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -166630,12 +166796,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *743 - organization: *744 + installation: *745 + organization: *746 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -166715,11 +166881,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -166798,9 +166964,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - milestone: &774 + enterprise: *744 + installation: *745 + milestone: &776 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166942,8 +167108,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167022,11 +167188,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167136,11 +167302,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - milestone: *768 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *770 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167220,11 +167386,11 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - milestone: *774 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + milestone: *776 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167303,11 +167469,11 @@ webhooks: type: string enum: - blocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167386,11 +167552,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *762 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *764 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167469,9 +167635,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - membership: &775 + enterprise: *744 + installation: *745 + membership: &777 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -167581,8 +167747,8 @@ webhooks: - role - organization_url - user - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167660,11 +167826,11 @@ webhooks: type: string enum: - member_added - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -167743,8 +167909,8 @@ webhooks: type: string enum: - member_invited - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -167866,10 +168032,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 - user: *762 + user: *764 required: - action - invitation @@ -167947,11 +168113,11 @@ webhooks: type: string enum: - member_removed - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -168038,11 +168204,11 @@ webhooks: properties: from: type: string - enterprise: *742 - installation: *743 - membership: *775 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + membership: *777 + organization: *746 + repository: *747 sender: *4 required: - action @@ -168119,9 +168285,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -168644,7 +168810,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &776 + items: &778 title: Ruby Gems metadata type: object properties: @@ -168741,7 +168907,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -168817,9 +168983,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 package: description: Information about the package. type: object @@ -169181,7 +169347,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 source_url: type: string format: uri @@ -169252,7 +169418,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -169432,12 +169598,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *742 + enterprise: *744 id: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - id @@ -169514,7 +169680,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &777 + personal_access_token_request: &779 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -169664,10 +169830,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *742 - organization: *744 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -169744,11 +169910,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -169824,11 +169990,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *777 - enterprise: *742 - organization: *744 + personal_access_token_request: *779 + enterprise: *744 + organization: *746 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -169903,11 +170069,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *777 - organization: *744 - enterprise: *742 + personal_access_token_request: *779 + organization: *746 + enterprise: *744 sender: *4 - installation: *743 + installation: *745 required: - action - personal_access_token_request @@ -170012,7 +170178,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *778 + last_response: *780 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -170044,8 +170210,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 zen: description: Random string of GitHub zen. @@ -170290,10 +170456,10 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: &779 + enterprise: *744 + installation: *745 + organization: *746 + project_card: &781 title: Project Card type: object properties: @@ -170416,7 +170582,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -170497,11 +170663,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -170581,9 +170747,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: title: Project Card type: object @@ -170713,7 +170879,7 @@ webhooks: repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -170807,11 +170973,11 @@ webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: *779 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_card: *781 + repository: *747 sender: *4 required: - action @@ -170905,9 +171071,9 @@ webhooks: - from required: - column_id - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 project_card: allOf: - title: Project Card @@ -171104,7 +171270,7 @@ webhooks: type: string required: - after_id - repository: *745 + repository: *747 sender: *4 required: - action @@ -171184,10 +171350,10 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - organization: *744 - project: &781 + enterprise: *744 + installation: *745 + organization: *746 + project: &783 title: Project type: object properties: @@ -171314,7 +171480,7 @@ webhooks: - creator - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -171394,10 +171560,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_column: &780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: &782 title: Project Column type: object properties: @@ -171437,7 +171603,7 @@ webhooks: - name - created_at - updated_at - repository: *745 + repository: *747 sender: *4 required: - action @@ -171516,14 +171682,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -171612,11 +171778,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -171696,11 +171862,11 @@ webhooks: type: string enum: - moved - enterprise: *742 - installation: *743 - organization: *744 - project_column: *780 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project_column: *782 + repository: *747 sender: *4 required: - action @@ -171780,11 +171946,11 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -171864,14 +172030,14 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project: *781 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 repository: anyOf: - type: 'null' - - *745 + - *747 sender: *4 required: - action @@ -171972,11 +172138,11 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -172055,11 +172221,11 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - organization: *744 - project: *781 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + project: *783 + repository: *747 sender: *4 required: - action @@ -172140,8 +172306,8 @@ webhooks: type: string enum: - closed - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -172223,8 +172389,8 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -172306,8 +172472,8 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -172429,8 +172595,8 @@ webhooks: type: string to: type: string - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -172514,7 +172680,7 @@ webhooks: type: string enum: - archived - changes: &785 + changes: &787 type: object properties: archived_at: @@ -172530,9 +172696,9 @@ webhooks: - string - 'null' format: date-time - installation: *743 - organization: *744 - projects_v2_item: &782 + installation: *745 + organization: *746 + projects_v2_item: &784 title: Projects v2 Item description: An item belonging to a project type: object @@ -172672,9 +172838,9 @@ webhooks: - 'null' to: type: string - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172756,9 +172922,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172839,9 +173005,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -172946,7 +173112,7 @@ webhooks: oneOf: - type: string - type: integer - - &783 + - &785 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -172970,7 +173136,7 @@ webhooks: required: - id - name - - &784 + - &786 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -173010,8 +173176,8 @@ webhooks: oneOf: - type: string - type: integer - - *783 - - *784 + - *785 + - *786 type: - 'null' - string @@ -173034,9 +173200,9 @@ webhooks: - 'null' required: - body - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -173133,9 +173299,9 @@ webhooks: type: - string - 'null' - installation: *743 - organization: *744 - projects_v2_item: *782 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -173218,10 +173384,10 @@ webhooks: type: string enum: - restored - changes: *785 - installation: *743 - organization: *744 - projects_v2_item: *782 + changes: *787 + installation: *745 + organization: *746 + projects_v2_item: *784 sender: *4 required: - action @@ -173303,8 +173469,8 @@ webhooks: type: string enum: - reopened - installation: *743 - organization: *744 + installation: *745 + organization: *746 projects_v2: *278 sender: *4 required: @@ -173386,9 +173552,9 @@ webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -173469,9 +173635,9 @@ webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -173617,9 +173783,9 @@ webhooks: - string - 'null' format: date - installation: *743 - organization: *744 - projects_v2_status_update: *786 + installation: *745 + organization: *746 + projects_v2_status_update: *788 sender: *4 required: - action @@ -173690,10 +173856,10 @@ webhooks: title: public event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - repository @@ -173770,13 +173936,13 @@ webhooks: type: string enum: - assigned - assignee: *762 - enterprise: *742 - installation: *743 - number: &787 + assignee: *764 + enterprise: *744 + installation: *745 + number: &789 description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -176147,7 +176313,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -176244,11 +176410,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -178612,7 +178778,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -178709,11 +178875,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -181077,7 +181243,7 @@ webhooks: - draft reason: type: string - repository: *745 + repository: *747 sender: *4 required: - action @@ -181174,11 +181340,11 @@ webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: &788 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: &790 allOf: - *596 - type: object @@ -181242,7 +181408,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *745 + repository: *747 sender: *4 required: - action @@ -181323,12 +181489,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -181408,11 +181574,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: &789 + number: *789 + organization: *746 + pull_request: &791 title: Pull Request type: object properties: @@ -183803,7 +183969,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *745 + repository: *747 sender: *4 required: - action @@ -183882,11 +184048,11 @@ webhooks: type: string enum: - dequeued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -186254,7 +186420,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *745 + repository: *747 sender: *4 required: - action @@ -186386,12 +186552,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -186471,11 +186637,11 @@ webhooks: type: string enum: - enqueued - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -188828,7 +188994,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -188916,11 +189082,11 @@ webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -191290,7 +191456,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -191386,10 +191552,10 @@ webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -193757,7 +193923,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -193852,12 +194018,12 @@ webhooks: type: string enum: - milestoned - enterprise: *742 + enterprise: *744 milestone: *281 - number: *787 - organization: *744 - pull_request: *789 - repository: *745 + number: *789 + organization: *746 + pull_request: *791 + repository: *747 sender: *4 required: - action @@ -193936,12 +194102,12 @@ webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -194022,12 +194188,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -194107,12 +194273,12 @@ webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - number: *787 - organization: *744 - pull_request: *788 - repository: *745 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 + pull_request: *790 + repository: *747 sender: *4 required: - action @@ -194487,9 +194653,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -196741,7 +196907,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -196836,7 +197002,7 @@ webhooks: type: string enum: - deleted - comment: &791 + comment: &793 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -197129,9 +197295,9 @@ webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -199371,7 +199537,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -199466,11 +199632,11 @@ webhooks: type: string enum: - edited - changes: *790 - comment: *791 - enterprise: *742 - installation: *743 - organization: *744 + changes: *792 + comment: *793 + enterprise: *744 + installation: *745 + organization: *746 pull_request: type: object properties: @@ -201713,7 +201879,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *747 sender: *4 required: - action @@ -201809,9 +201975,9 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -204066,7 +204232,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 review: description: The review that was affected. type: object @@ -204332,9 +204498,9 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -206448,8 +206614,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: &792 + repository: *747 + review: &794 description: The review that was affected. type: object properties: @@ -206695,12 +206861,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -209069,7 +209235,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -209155,12 +209321,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -211536,7 +211702,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211754,12 +211920,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -214130,7 +214296,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_reviewer: title: User type: @@ -214217,12 +214383,12 @@ webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *744 + installation: *745 number: description: The pull request number. type: integer - organization: *744 + organization: *746 pull_request: title: Pull Request type: object @@ -216584,7 +216750,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 requested_team: title: Team description: Groups of organization members that gives permissions @@ -216791,9 +216957,9 @@ webhooks: type: string enum: - submitted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -219051,8 +219217,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: *792 + repository: *747 + review: *794 sender: *4 required: - action @@ -219147,9 +219313,9 @@ webhooks: type: string enum: - resolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -221302,7 +221468,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -221707,9 +221873,9 @@ webhooks: type: string enum: - unresolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 pull_request: title: Simple Pull Request type: object @@ -223845,7 +224011,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *747 sender: *4 thread: type: object @@ -224252,10 +224418,10 @@ webhooks: type: string before: type: string - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -226612,7 +226778,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -226709,11 +226875,11 @@ webhooks: type: string enum: - unassigned - assignee: *793 - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + assignee: *795 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -229085,7 +229251,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -229179,11 +229345,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - label: *761 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + label: *763 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -231544,7 +231710,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -231640,10 +231806,10 @@ webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 - number: *787 - organization: *744 + enterprise: *744 + installation: *745 + number: *789 + organization: *746 pull_request: title: Pull Request type: object @@ -233994,7 +234160,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *747 sender: *4 required: - action @@ -234212,7 +234378,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *742 + enterprise: *744 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234307,8 +234473,8 @@ webhooks: - url - author - committer - installation: *743 - organization: *744 + installation: *745 + organization: *746 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -234907,9 +235073,9 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -235386,7 +235552,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -235442,7 +235608,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -235520,9 +235686,9 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 registry_package: type: object properties: @@ -235834,7 +236000,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *778 summary: type: string tag_name: @@ -235884,7 +236050,7 @@ webhooks: - owner - package_version - registry - repository: *745 + repository: *747 sender: *4 required: - action @@ -235961,10 +236127,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - release: &794 + enterprise: *744 + installation: *745 + organization: *746 + release: &796 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -236295,7 +236461,7 @@ webhooks: - updated_at - zipball_url - body - repository: *745 + repository: *747 sender: *4 required: - action @@ -236372,11 +236538,11 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -236493,11 +236659,11 @@ webhooks: type: boolean required: - to - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -236575,9 +236741,9 @@ webhooks: type: string enum: - prereleased - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -236913,7 +237079,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -236989,10 +237155,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - release: &795 + enterprise: *744 + installation: *745 + organization: *746 + release: &797 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -237325,7 +237491,7 @@ webhooks: - string - 'null' format: uri - repository: *745 + repository: *747 sender: *4 required: - action @@ -237401,11 +237567,11 @@ webhooks: type: string enum: - released - enterprise: *742 - installation: *743 - organization: *744 - release: *794 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *796 + repository: *747 sender: *4 required: - action @@ -237481,11 +237647,11 @@ webhooks: type: string enum: - unpublished - enterprise: *742 - installation: *743 - organization: *744 - release: *795 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + release: *797 + repository: *747 sender: *4 required: - action @@ -237561,10 +237727,10 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -237641,10 +237807,10 @@ webhooks: type: string enum: - reported - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_advisory: *665 sender: *4 required: @@ -237721,10 +237887,10 @@ webhooks: type: string enum: - archived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237801,10 +237967,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237882,10 +238048,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -237970,10 +238136,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238088,10 +238254,10 @@ webhooks: - 'null' items: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238163,10 +238329,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 status: type: string @@ -238247,10 +238413,10 @@ webhooks: type: string enum: - privatized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238327,10 +238493,10 @@ webhooks: type: string enum: - publicized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238424,10 +238590,10 @@ webhooks: - name required: - repository - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -238507,10 +238673,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -238589,10 +238755,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 sender: *4 required: @@ -238671,10 +238837,10 @@ webhooks: type: string enum: - edited - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 repository_ruleset: *323 changes: type: object @@ -238982,10 +239148,10 @@ webhooks: - from required: - owner - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239063,10 +239229,10 @@ webhooks: type: string enum: - unarchived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239144,7 +239310,7 @@ webhooks: type: string enum: - create - alert: &796 + alert: &798 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239269,10 +239435,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239482,10 +239648,10 @@ webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239563,11 +239729,11 @@ webhooks: type: string enum: - reopen - alert: *796 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *798 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239769,10 +239935,10 @@ webhooks: enum: - fixed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -239850,7 +240016,7 @@ webhooks: type: string enum: - assigned - alert: &797 + alert: &799 type: object properties: number: *180 @@ -239990,10 +240156,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240071,11 +240237,11 @@ webhooks: type: string enum: - created - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240156,11 +240322,11 @@ webhooks: type: string enum: - created - alert: *797 - installation: *743 - location: *798 - organization: *744 - repository: *745 + alert: *799 + installation: *745 + location: *800 + organization: *746 + repository: *747 sender: *4 required: - location @@ -240398,11 +240564,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240480,11 +240646,11 @@ webhooks: type: string enum: - reopened - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240562,11 +240728,11 @@ webhooks: type: string enum: - resolved - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240644,12 +240810,12 @@ webhooks: type: string enum: - unassigned - alert: *797 + alert: *799 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240727,11 +240893,11 @@ webhooks: type: string enum: - validated - alert: *797 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -240861,10 +241027,10 @@ webhooks: - organization - enterprise - - repository: *745 - enterprise: *742 - installation: *743 - organization: *744 + repository: *747 + enterprise: *744 + installation: *745 + organization: *746 sender: *4 required: - action @@ -240942,11 +241108,11 @@ webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: &799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: &801 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241150,11 +241316,11 @@ webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: *799 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 + security_advisory: *801 sender: *4 required: - action @@ -241227,10 +241393,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241425,9 +241591,9 @@ webhooks: type: object properties: security_and_analysis: *296 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: *340 sender: *4 required: @@ -241506,12 +241672,12 @@ webhooks: type: string enum: - cancelled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: &800 + sponsorship: &802 type: object properties: created_at: @@ -241816,12 +241982,12 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -241909,12 +242075,12 @@ webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -241991,17 +242157,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &801 + effective_date: &803 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: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - sponsorship @@ -242075,7 +242241,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &802 + changes: &804 type: object properties: tier: @@ -242119,13 +242285,13 @@ webhooks: - from required: - tier - effective_date: *801 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + effective_date: *803 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -242202,13 +242368,13 @@ webhooks: type: string enum: - tier_changed - changes: *802 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + changes: *804 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - sponsorship: *800 + sponsorship: *802 required: - action - changes @@ -242282,10 +242448,10 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242369,10 +242535,10 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242806,15 +242972,15 @@ webhooks: type: - string - 'null' - enterprise: *742 + enterprise: *744 id: description: The unique identifier of the status. type: integer - installation: *743 + installation: *745 name: type: string - organization: *744 - repository: *745 + organization: *746 + repository: *747 sender: *4 sha: description: The Commit SHA. @@ -242930,9 +243096,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -243021,9 +243187,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -243112,9 +243278,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -243203,9 +243369,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *743 - organization: *744 - repository: *745 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -243281,12 +243447,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 - team: &803 + team: &805 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243516,9 +243682,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -243988,7 +244154,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -244064,9 +244230,9 @@ webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -244536,7 +244702,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -244613,9 +244779,9 @@ webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -245085,7 +245251,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -245229,9 +245395,9 @@ webhooks: - from required: - permissions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -245701,7 +245867,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - changes @@ -245779,9 +245945,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *744 + installation: *745 + organization: *746 repository: title: Repository description: A git repository @@ -246251,7 +246417,7 @@ webhooks: - topics - visibility sender: *4 - team: *803 + team: *805 required: - action - team @@ -246327,10 +246493,10 @@ webhooks: type: string enum: - started - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *744 + installation: *745 + organization: *746 + repository: *747 sender: *4 required: - action @@ -246403,17 +246569,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *742 + enterprise: *744 inputs: type: - object - 'null' additionalProperties: true - installation: *743 - organization: *744 + installation: *745 + organization: *746 ref: type: string - repository: *745 + repository: *747 sender: *4 workflow: type: s{"code":"deadline_exceeded","msg":"operation timed out"}