diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index e26b5ddcc0..3454d9a96c 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -37766,7 +37766,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" ], @@ -37812,12 +37812,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" } } } @@ -75921,7 +75921,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" ], @@ -75964,12 +75964,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" } } } @@ -134522,6 +134522,144 @@ "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": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "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" + ], + "example": "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.", + "example": 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", @@ -310356,6 +310494,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/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 520656877d..a2caefe244 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -27835,6 +27835,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 @@ -27866,10 +27868,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" @@ -55617,6 +55619,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 @@ -55646,10 +55650,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" @@ -99167,6 +99171,122 @@ 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: + nullable: true + type: string + email: + nullable: true + type: string + login: + type: string + example: octocat + id: + type: integer + format: int64 + example: 1 + node_id: + type: string + example: MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + example: https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: string + example: 41d064eb2195891e12d0413f63227ea7 + nullable: true + url: + type: string + format: uri + example: https://api.github.com/users/octocat + html_url: + type: string + format: uri + example: https://github.com/octocat + followers_url: + type: string + format: uri + example: https://api.github.com/users/octocat/followers + following_url: + type: string + example: https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + example: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + example: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + example: https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + example: https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + example: https://api.github.com/users/octocat/repos + events_url: + type: string + example: https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + example: https://api.github.com/users/octocat/received_events + type: + type: string + example: User + site_admin: + type: boolean + starred_at: + type: string + example: '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + example: 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 + example: 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. + example: 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 @@ -233390,6 +233510,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/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 4c00d0ccaa..d5d2a9306b 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -37719,7 +37719,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" ], @@ -37765,12 +37765,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" } } } @@ -75838,7 +75838,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" ], @@ -75881,12 +75881,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" } } } @@ -133964,6 +133964,144 @@ "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": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "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" + ], + "example": "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.", + "example": 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", @@ -309609,6 +309747,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/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index fd4230999e..2bced99696 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -27798,6 +27798,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 @@ -27829,10 +27831,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" @@ -55545,6 +55547,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 @@ -55574,10 +55578,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" @@ -98724,6 +98728,122 @@ 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: + nullable: true + type: string + email: + nullable: true + type: string + login: + type: string + example: octocat + id: + type: integer + format: int64 + example: 1 + node_id: + type: string + example: MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + example: https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: string + example: 41d064eb2195891e12d0413f63227ea7 + nullable: true + url: + type: string + format: uri + example: https://api.github.com/users/octocat + html_url: + type: string + format: uri + example: https://github.com/octocat + followers_url: + type: string + format: uri + example: https://api.github.com/users/octocat/followers + following_url: + type: string + example: https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + example: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + example: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + example: https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + example: https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + example: https://api.github.com/users/octocat/repos + events_url: + type: string + example: https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + example: https://api.github.com/users/octocat/received_events + type: + type: string + example: User + site_admin: + type: boolean + starred_at: + type: string + example: '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + example: 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 + example: 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. + example: 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 @@ -232716,6 +232836,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/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index a8ab216371..69f51fec60 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -37978,7 +37978,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" ], @@ -38024,12 +38024,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" } } } @@ -76228,7 +76228,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" ], @@ -76271,12 +76271,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" } } } @@ -135548,6 +135548,144 @@ "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": { + "nullable": true, + "type": "string" + }, + "email": { + "nullable": true, + "type": "string" + }, + "login": { + "type": "string", + "example": "octocat" + }, + "id": { + "type": "integer", + "format": "int64", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VXNlcjE=" + }, + "avatar_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/images/error/octocat_happy.gif" + }, + "gravatar_id": { + "type": "string", + "example": "41d064eb2195891e12d0413f63227ea7", + "nullable": true + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat" + }, + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" + }, + "following_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/following{/other_user}" + }, + "gists_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/gists{/gist_id}" + }, + "starred_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + }, + "subscriptions_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/subscriptions" + }, + "organizations_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/orgs" + }, + "repos_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/repos" + }, + "events_url": { + "type": "string", + "example": "https://api.github.com/users/octocat/events{/privacy}" + }, + "received_events_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/received_events" + }, + "type": { + "type": "string", + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "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" + ], + "example": "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.", + "example": 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", @@ -312503,6 +312641,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/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 2d3acaa9f7..e18c8cdf79 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -27948,6 +27948,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 @@ -27979,10 +27981,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" @@ -55805,6 +55807,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 @@ -55834,10 +55838,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" @@ -99879,6 +99883,122 @@ 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: + nullable: true + type: string + email: + nullable: true + type: string + login: + type: string + example: octocat + id: + type: integer + format: int64 + example: 1 + node_id: + type: string + example: MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + example: https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: string + example: 41d064eb2195891e12d0413f63227ea7 + nullable: true + url: + type: string + format: uri + example: https://api.github.com/users/octocat + html_url: + type: string + format: uri + example: https://github.com/octocat + followers_url: + type: string + format: uri + example: https://api.github.com/users/octocat/followers + following_url: + type: string + example: https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + example: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + example: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + example: https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + example: https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + example: https://api.github.com/users/octocat/repos + events_url: + type: string + example: https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + example: https://api.github.com/users/octocat/received_events + type: + type: string + example: User + site_admin: + type: boolean + starred_at: + type: string + example: '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + example: 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 + example: 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. + example: 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 @@ -234798,6 +234918,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index b5229b1ae0..fa187610c3 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -231736,7 +231736,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" ], @@ -231806,8 +231806,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": { @@ -231906,6 +231906,20 @@ "user_view_type": { "type": "string", "example": "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" + ], + "example": "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.", + "example": false } }, "required": [ @@ -231951,7 +231965,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 } ] } @@ -611120,7 +611136,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" ], @@ -611181,8 +611197,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": { @@ -611281,6 +611297,20 @@ "user_view_type": { "type": "string", "example": "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" + ], + "example": "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.", + "example": false } }, "required": [ @@ -611326,7 +611356,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index c44d9fcd6b..e8c577a4a8 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -14098,7 +14098,7 @@ paths: properties: action: type: string - discussion: &790 + discussion: &792 title: Discussion description: A Discussion in a repository. type: object @@ -16445,7 +16445,7 @@ paths: url: type: string format: uri - user: &714 + user: &716 title: Public User description: Public User type: object @@ -22311,7 +22311,7 @@ paths: parameters: - *78 - *124 - - &766 + - &768 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 @@ -22423,7 +22423,7 @@ paths: - *124 - *125 - *126 - - &767 + - &769 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22431,7 +22431,7 @@ paths: schema: type: string - *129 - - &768 + - &770 name: sku description: The SKU to query for usage. in: query @@ -29944,12 +29944,12 @@ paths: required: - subject_digests examples: - default: &747 + default: &749 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &748 + withPredicateType: &750 value: subject_digests: - sha256:abc123 @@ -30007,7 +30007,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &749 + default: &751 value: attestations_subject_digests: - sha256:abc: @@ -42043,7 +42043,7 @@ paths: parameters: - *78 - *269 - - &730 + - &732 name: repo_name description: repo_name parameter in: path @@ -43084,7 +43084,7 @@ paths: - nuget - container - *78 - - &731 + - &733 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43125,7 +43125,7 @@ paths: default: *276 '403': *29 '401': *25 - '400': &733 + '400': &735 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45222,7 +45222,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &821 + properties: &823 id: type: number description: The unique identifier of the status update. @@ -45270,7 +45270,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &822 + required: &824 - id - node_id - created_at @@ -46088,7 +46088,7 @@ paths: - updated_at - project_url examples: - default: &753 + default: &755 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46265,7 +46265,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &754 + items: &756 type: object properties: name: @@ -46302,7 +46302,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &755 + iteration_configuration: &757 type: object description: The configuration for iteration fields. properties: @@ -46352,7 +46352,7 @@ paths: value: name: Due date data_type: date - single_select_field: &756 + single_select_field: &758 summary: Create a single select field value: name: Priority @@ -46379,7 +46379,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &757 + iteration_field: &759 summary: Create an iteration field value: name: Sprint @@ -46405,7 +46405,7 @@ paths: application/json: schema: *297 examples: - text_field: &758 + text_field: &760 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46414,7 +46414,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: &759 + number_field: &761 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46423,7 +46423,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: &760 + date_field: &762 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46432,7 +46432,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: &761 + single_select_field: &763 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46466,7 +46466,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &762 + iteration_field: &764 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46512,7 +46512,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *293 - - &763 + - &765 name: field_id description: The unique identifier of the field. in: path @@ -46527,7 +46527,7 @@ paths: application/json: schema: *297 examples: - default: &764 + default: &766 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47724,7 +47724,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &744 + schema: &746 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47901,7 +47901,7 @@ paths: parameters: - *293 - *78 - - &765 + - &767 name: view_number description: The number that identifies the project view. in: path @@ -55015,6 +55015,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 @@ -55045,9 +55047,147 @@ paths: application/json: schema: type: array - items: *4 + items: &710 + 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: + nullable: true + type: string + email: + nullable: true + type: string + login: + type: string + example: octocat + id: + type: integer + format: int64 + example: 1 + node_id: + type: string + example: MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + example: https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: string + example: 41d064eb2195891e12d0413f63227ea7 + nullable: true + url: + type: string + format: uri + example: https://api.github.com/users/octocat + html_url: + type: string + format: uri + example: https://github.com/octocat + followers_url: + type: string + format: uri + example: https://api.github.com/users/octocat/followers + following_url: + type: string + example: https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + example: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + example: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + example: https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + example: https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + example: https://api.github.com/users/octocat/repos + events_url: + type: string + example: https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + example: https://api.github.com/users/octocat/received_events + type: + type: string + example: User + site_admin: + type: boolean + starred_at: + type: string + example: '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + example: 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 + example: 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. + example: 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: *73 + default: &711 + 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: *70 x-github: @@ -55112,7 +55252,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &710 + response-if-user-is-a-team-maintainer: &712 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55177,7 +55317,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: &711 + response-if-users-membership-with-team-is-now-pending: &713 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55291,7 +55431,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &712 + schema: &714 title: Team Repository description: A team's access to a repository. type: object @@ -55948,7 +56088,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: &713 + response-if-child-teams-exist: &715 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61601,7 +61741,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &784 + properties: &786 url: type: string format: uri @@ -61686,7 +61826,7 @@ paths: nullable: true properties: *83 required: *84 - required: &785 + required: &787 - id - node_id - sha @@ -67781,7 +67921,7 @@ paths: check. type: array items: *93 - deployment: &777 + deployment: &779 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68693,7 +68833,7 @@ paths: type: string format: date-time nullable: true - head_commit: &805 + head_commit: &807 title: Simple Commit description: A commit. type: object @@ -73419,14 +73559,14 @@ paths: type: integer machines: type: array - items: &719 + items: &721 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *477 required: *478 examples: - default: &720 + default: &722 value: total_count: 2 machines: @@ -84215,7 +84355,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &813 + last_response: &815 title: Hook Response type: object properties: @@ -85267,7 +85407,7 @@ paths: parameters: - *354 - *355 - - &742 + - &744 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85852,7 +85992,7 @@ paths: type: array items: *556 examples: - default: &735 + default: &737 value: - id: 1 repository: @@ -101412,7 +101552,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &835 + items: &837 type: object properties: type: @@ -107053,6 +107193,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 @@ -107081,9 +107223,9 @@ paths: application/json: schema: type: array - items: *4 + items: *710 examples: - default: *73 + default: *711 headers: Link: *70 '404': *6 @@ -107234,7 +107376,7 @@ paths: application/json: schema: *353 examples: - response-if-user-is-a-team-maintainer: *710 + response-if-user-is-a-team-maintainer: *712 '404': *6 x-github: githubCloudOnly: false @@ -107295,7 +107437,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: *711 + response-if-users-membership-with-team-is-now-pending: *713 '403': description: Forbidden if team synchronization is set up '422': @@ -107407,7 +107549,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *712 + schema: *714 examples: alternative-response-with-extra-repository-information: value: @@ -107649,7 +107791,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: *713 + response-if-child-teams-exist: *715 headers: Link: *70 '404': *6 @@ -107682,7 +107824,7 @@ paths: application/json: schema: oneOf: - - &715 + - &717 title: Private User description: Private User type: object @@ -107885,7 +108027,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *714 + - *716 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -108038,7 +108180,7 @@ paths: description: Response content: application/json: - schema: *715 + schema: *717 examples: default: value: @@ -108436,7 +108578,7 @@ paths: type: integer secrets: type: array - items: &716 + items: &718 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108552,7 +108694,7 @@ paths: description: Response content: application/json: - schema: *716 + schema: *718 examples: default: value: @@ -108965,7 +109107,7 @@ paths: description: Response content: application/json: - schema: &717 + schema: &719 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -109006,7 +109148,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &718 + default: &720 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -109051,9 +109193,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *719 examples: - default: *718 + default: *720 '404': *6 x-github: githubCloudOnly: false @@ -109090,9 +109232,9 @@ paths: type: integer machines: type: array - items: *719 + items: *721 examples: - default: *720 + default: *722 '304': *37 '500': *55 '401': *25 @@ -110031,7 +110173,7 @@ paths: type: array items: *275 examples: - default: &732 + default: &734 value: - id: 197 name: hello_docker @@ -110132,7 +110274,7 @@ paths: application/json: schema: type: array - items: &721 + items: &723 title: Email description: Email type: object @@ -110197,9 +110339,9 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: - default: &734 + default: &736 value: - email: octocat@github.com verified: true @@ -110274,7 +110416,7 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: default: value: @@ -110530,7 +110672,7 @@ paths: application/json: schema: type: array - items: &722 + items: &724 title: GPG Key description: A unique encryption key type: object @@ -110661,7 +110803,7 @@ paths: - subkeys - revoked examples: - default: &751 + default: &753 value: - id: 3 name: Octocat's GPG Key @@ -110746,9 +110888,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *724 examples: - default: &723 + default: &725 value: id: 3 name: Octocat's GPG Key @@ -110805,7 +110947,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &724 + - &726 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -110817,9 +110959,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *724 examples: - default: *723 + default: *725 '404': *6 '304': *37 '403': *29 @@ -110842,7 +110984,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *724 + - *726 responses: '204': description: Response @@ -111309,7 +111451,7 @@ paths: application/json: schema: type: array - items: &725 + items: &727 title: Key description: Key type: object @@ -111410,9 +111552,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *727 examples: - default: &726 + default: &728 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111451,9 +111593,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *727 examples: - default: *726 + default: *728 '404': *6 '304': *37 '403': *29 @@ -111509,7 +111651,7 @@ paths: application/json: schema: type: array - items: &727 + items: &729 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -111577,7 +111719,7 @@ paths: - account - plan examples: - default: &728 + default: &730 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -111639,9 +111781,9 @@ paths: application/json: schema: type: array - items: *727 + items: *729 examples: - default: *728 + default: *730 headers: Link: *70 '304': *37 @@ -111884,7 +112026,7 @@ paths: application/json: schema: *266 examples: - default: &729 + default: &731 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -111933,7 +112075,7 @@ paths: application/json: schema: *266 examples: - default: *729 + default: *731 '403': *29 '404': *6 '422': *15 @@ -112658,7 +112800,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *269 - - *730 + - *732 responses: '204': description: Response @@ -112773,7 +112915,7 @@ paths: - docker - nuget - container - - *731 + - *733 - *19 - *17 responses: @@ -112785,8 +112927,8 @@ paths: type: array items: *275 examples: - default: *732 - '400': *733 + default: *734 + '400': *735 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112815,7 +112957,7 @@ paths: application/json: schema: *275 examples: - default: &752 + default: &754 value: id: 40201 name: octo-name @@ -113177,9 +113319,9 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: - default: *734 + default: *736 headers: Link: *70 '304': *37 @@ -113292,7 +113434,7 @@ paths: type: array items: *82 examples: - default: &741 + default: &743 summary: Default response value: - id: 1296269 @@ -113638,7 +113780,7 @@ paths: type: array items: *556 examples: - default: *735 + default: *737 headers: Link: *70 '304': *37 @@ -113717,7 +113859,7 @@ paths: application/json: schema: type: array - items: &736 + items: &738 title: Social account description: Social media account type: object @@ -113732,7 +113874,7 @@ paths: - provider - url examples: - default: &737 + default: &739 value: - provider: twitter url: https://twitter.com/github @@ -113794,9 +113936,9 @@ paths: application/json: schema: type: array - items: *736 + items: *738 examples: - default: *737 + default: *739 '422': *15 '304': *37 '404': *6 @@ -113883,7 +114025,7 @@ paths: application/json: schema: type: array - items: &738 + items: &740 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -113903,7 +114045,7 @@ paths: - title - created_at examples: - default: &769 + default: &771 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113967,9 +114109,9 @@ paths: description: Response content: application/json: - schema: *738 + schema: *740 examples: - default: &739 + default: &741 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113999,7 +114141,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: - - &740 + - &742 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -114011,9 +114153,9 @@ paths: description: Response content: application/json: - schema: *738 + schema: *740 examples: - default: *739 + default: *741 '404': *6 '304': *37 '403': *29 @@ -114036,7 +114178,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: - - *740 + - *742 responses: '204': description: Response @@ -114065,7 +114207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &770 + - &772 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 @@ -114090,11 +114232,11 @@ paths: type: array items: *82 examples: - default-response: *741 + default-response: *743 application/vnd.github.v3.star+json: schema: type: array - items: &771 + items: &773 title: Starred Repository description: Starred Repository type: object @@ -114463,10 +114605,10 @@ paths: application/json: schema: oneOf: - - *715 - - *714 + - *717 + - *716 examples: - default-response: &745 + default-response: &747 summary: Default response value: login: octocat @@ -114501,7 +114643,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &746 + response-with-git-hub-plan-information: &748 summary: Response with GitHub plan information value: login: octocat @@ -114558,7 +114700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &743 + - &745 name: user_id description: The unique identifier of the user. in: path @@ -114624,7 +114766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *742 + - *744 - *17 responses: '200': @@ -114659,7 +114801,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *743 + - *745 - *293 requestBody: required: true @@ -114731,7 +114873,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *744 + schema: *746 examples: table_view: summary: Response for creating a table view @@ -114783,11 +114925,11 @@ paths: application/json: schema: oneOf: - - *715 - - *714 + - *717 + - *716 examples: - default-response: *745 - response-with-git-hub-plan-information: *746 + default-response: *747 + response-with-git-hub-plan-information: *748 '404': *6 x-github: githubCloudOnly: false @@ -114837,8 +114979,8 @@ paths: required: - subject_digests examples: - default: *747 - withPredicateType: *748 + default: *749 + withPredicateType: *750 responses: '200': description: Response @@ -114891,7 +115033,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *749 + default: *751 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115377,7 +115519,7 @@ paths: application/json: schema: *204 examples: - default: &750 + default: &752 summary: Example response for a user copilot space value: id: 42 @@ -115478,7 +115620,7 @@ paths: application/json: schema: *204 examples: - default: *750 + default: *752 '403': *29 '404': *6 x-github: @@ -115601,7 +115743,7 @@ paths: application/json: schema: *204 examples: - default: *750 + default: *752 '403': *29 '404': *6 '422': *15 @@ -116369,7 +116511,7 @@ paths: type: array items: *275 examples: - default: *732 + default: *734 '403': *29 '401': *25 x-github: @@ -116753,9 +116895,9 @@ paths: application/json: schema: type: array - items: *722 + items: *724 examples: - default: *751 + default: *753 headers: Link: *70 x-github: @@ -116983,7 +117125,7 @@ paths: - docker - nuget - container - - *731 + - *733 - *74 - *19 - *17 @@ -116996,10 +117138,10 @@ paths: type: array items: *275 examples: - default: *732 + default: *734 '403': *29 '401': *25 - '400': *733 + '400': *735 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117029,7 +117171,7 @@ paths: application/json: schema: *275 examples: - default: *752 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117378,7 +117520,7 @@ paths: type: array items: *297 examples: - default: *753 + default: *755 headers: Link: *70 '304': *37 @@ -117438,7 +117580,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *754 + items: *756 required: - name - data_type @@ -117454,7 +117596,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *755 + iteration_configuration: *757 required: - name - data_type @@ -117476,8 +117618,8 @@ paths: value: name: Due date data_type: date - single_select_field: *756 - iteration_field: *757 + single_select_field: *758 + iteration_field: *759 responses: '201': description: Response @@ -117485,11 +117627,11 @@ paths: application/json: schema: *297 examples: - text_field: *758 - number_field: *759 - date_field: *760 - single_select_field: *761 - iteration_field: *762 + text_field: *760 + number_field: *761 + date_field: *762 + single_select_field: *763 + iteration_field: *764 '304': *37 '403': *29 '401': *25 @@ -117511,7 +117653,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *293 - - *763 + - *765 - *74 responses: '200': @@ -117520,7 +117662,7 @@ paths: application/json: schema: *297 examples: - default: *764 + default: *766 headers: Link: *70 '304': *37 @@ -117874,7 +118016,7 @@ paths: parameters: - *293 - *74 - - *765 + - *767 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -118413,7 +118555,7 @@ paths: parameters: - *74 - *124 - - *766 + - *768 - *126 responses: '200': @@ -118512,9 +118654,9 @@ paths: - *124 - *125 - *126 - - *767 + - *769 - *129 - - *768 + - *770 responses: '200': description: Response when getting a billing usage summary @@ -118648,9 +118790,9 @@ paths: application/json: schema: type: array - items: *736 + items: *738 examples: - default: *737 + default: *739 headers: Link: *70 x-github: @@ -118680,9 +118822,9 @@ paths: application/json: schema: type: array - items: *738 + items: *740 examples: - default: *769 + default: *771 headers: Link: *70 x-github: @@ -118707,7 +118849,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *770 + - *772 - *62 - *17 - *19 @@ -118719,11 +118861,11 @@ paths: schema: anyOf: - type: array - items: *771 + items: *773 - type: array items: *82 examples: - default-response: *741 + default-response: *743 headers: Link: *70 x-github: @@ -118882,7 +119024,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &772 + enterprise: &774 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -118940,7 +119082,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &773 + installation: &775 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -118959,7 +119101,7 @@ x-webhooks: required: - id - node_id - organization: &774 + organization: &776 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -119019,13 +119161,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &775 + repository: &777 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &807 + properties: &809 id: description: Unique identifier of the repository example: 42 @@ -119720,7 +119862,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &808 + required: &810 - archive_url - assignees_url - blobs_url @@ -119871,10 +120013,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -119950,11 +120092,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: &776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: &778 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) @@ -120177,11 +120319,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: *776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: *778 sender: *4 required: - action @@ -120364,11 +120506,11 @@ x-webhooks: - everyone required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: *776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: *778 sender: *4 required: - action @@ -120452,7 +120594,7 @@ x-webhooks: type: string enum: - completed - check_run: &778 + check_run: &780 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120543,7 +120685,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *777 + deployment: *779 details_url: example: https://example.com type: string @@ -120628,10 +120770,10 @@ x-webhooks: - output - app - pull_requests - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -121022,11 +121164,11 @@ x-webhooks: type: string enum: - created - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -121420,11 +121562,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 requested_action: description: The action requested by the user. type: object @@ -121827,11 +121969,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -122801,10 +122943,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -123503,10 +123645,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -124199,10 +124341,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -124513,20 +124655,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &779 + commit_oid: &781 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: *772 - installation: *773 - organization: *774 - ref: &780 + enterprise: *774 + installation: *775 + organization: *776 + ref: &782 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: *775 + repository: *777 sender: *4 required: - action @@ -124921,12 +125063,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125192,12 +125334,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125529,12 +125671,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125808,16 +125950,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *775 + repository: *777 sender: *4 required: - action @@ -126054,12 +126196,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -126370,10 +126512,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -126628,10 +126770,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -126711,18 +126853,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *774 - pusher_type: &781 + organization: *776 + pusher_type: &783 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &782 + ref: &784 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -126732,7 +126874,7 @@ x-webhooks: enum: - tag - branch - repository: *775 + repository: *777 sender: *4 required: - ref @@ -126815,9 +126957,9 @@ x-webhooks: enum: - created definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126902,9 +127044,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126982,9 +127124,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -127062,9 +127204,9 @@ x-webhooks: enum: - updated definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -127141,10 +127283,10 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - repository: *775 - organization: *774 + enterprise: *774 + installation: *775 + repository: *777 + organization: *776 sender: *4 new_property_values: type: array @@ -127229,18 +127371,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - pusher_type: *781 - ref: *782 + enterprise: *774 + installation: *775 + organization: *776 + pusher_type: *783 + ref: *784 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *775 + repository: *777 sender: *4 required: - ref @@ -127321,10 +127463,10 @@ x-webhooks: enum: - assignees_changed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127405,10 +127547,10 @@ x-webhooks: enum: - auto_dismissed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127490,10 +127632,10 @@ x-webhooks: enum: - auto_reopened alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127575,10 +127717,10 @@ x-webhooks: enum: - created alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127658,10 +127800,10 @@ x-webhooks: enum: - dismissed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127741,10 +127883,10 @@ x-webhooks: enum: - fixed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127825,10 +127967,10 @@ x-webhooks: enum: - reintroduced alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127908,10 +128050,10 @@ x-webhooks: enum: - reopened alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127988,9 +128130,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - key: &783 + enterprise: *774 + installation: *775 + key: &785 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -128026,8 +128168,8 @@ x-webhooks: - verified - created_at - read_only - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -128104,11 +128246,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - key: *783 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + key: *785 + organization: *776 + repository: *777 sender: *4 required: - action @@ -128664,12 +128806,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: &789 + workflow: &791 title: Workflow type: object nullable: true @@ -129410,15 +129552,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *784 - required: *785 + properties: *786 + required: *787 nullable: true pull_requests: type: array items: *625 - repository: *775 - organization: *774 - installation: *773 + repository: *777 + organization: *776 + installation: *775 sender: *4 responses: '200': @@ -129489,7 +129631,7 @@ x-webhooks: type: string enum: - approved - approver: &786 + approver: &788 type: object properties: avatar_url: @@ -129532,11 +129674,11 @@ x-webhooks: type: string comment: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - reviewers: &787 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + reviewers: &789 type: array items: type: object @@ -129615,7 +129757,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &788 + workflow_job_run: &790 type: object properties: conclusion: @@ -130346,18 +130488,18 @@ x-webhooks: type: string enum: - rejected - approver: *786 + approver: *788 comment: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - reviewers: *787 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + reviewers: *789 sender: *4 since: type: string - workflow_job_run: *788 + workflow_job_run: *790 workflow_job_runs: type: array items: @@ -131061,13 +131203,13 @@ x-webhooks: type: string enum: - requested - enterprise: *772 + enterprise: *774 environment: type: string - installation: *773 - organization: *774 - repository: *775 - requestor: &794 + installation: *775 + organization: *776 + repository: *777 + requestor: &796 title: User type: object nullable: true @@ -132956,12 +133098,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: *789 + workflow: *791 workflow_run: title: Deployment Workflow Run type: object @@ -133641,7 +133783,7 @@ x-webhooks: type: string enum: - answered - answer: &792 + answer: &794 type: object properties: author_association: @@ -133798,11 +133940,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -133929,11 +134071,11 @@ x-webhooks: - from required: - category - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134016,11 +134158,11 @@ x-webhooks: type: string enum: - closed - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134102,7 +134244,7 @@ x-webhooks: type: string enum: - created - comment: &791 + comment: &793 type: object properties: author_association: @@ -134259,11 +134401,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134346,12 +134488,12 @@ x-webhooks: type: string enum: - deleted - comment: *791 - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + comment: *793 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134446,12 +134588,12 @@ x-webhooks: - from required: - body - comment: *791 - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + comment: *793 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134535,11 +134677,11 @@ x-webhooks: type: string enum: - created - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134621,11 +134763,11 @@ x-webhooks: type: string enum: - deleted - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134725,11 +134867,11 @@ x-webhooks: type: string required: - from - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134811,10 +134953,10 @@ x-webhooks: type: string enum: - labeled - discussion: *790 - enterprise: *772 - installation: *773 - label: &793 + discussion: *792 + enterprise: *774 + installation: *775 + label: &795 title: Label type: object properties: @@ -134846,8 +134988,8 @@ x-webhooks: - color - default - description - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134930,11 +135072,11 @@ x-webhooks: type: string enum: - locked - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135016,11 +135158,11 @@ x-webhooks: type: string enum: - pinned - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135102,11 +135244,11 @@ x-webhooks: type: string enum: - reopened - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135191,16 +135333,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *790 - new_repository: *775 + new_discussion: *792 + new_repository: *777 required: - new_discussion - new_repository - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135283,10 +135425,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *790 - old_answer: *792 - organization: *774 - repository: *775 + discussion: *792 + old_answer: *794 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135368,12 +135510,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *790 - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135456,11 +135598,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135542,11 +135684,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135619,7 +135761,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *772 + enterprise: *774 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -136279,9 +136421,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - forkee @@ -136427,9 +136569,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pages: description: The pages that were updated. type: array @@ -136466,7 +136608,7 @@ x-webhooks: - action - sha - html_url - repository: *775 + repository: *777 sender: *4 required: - pages @@ -136542,10 +136684,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: &795 + organization: *776 + repositories: &797 description: An array of repository objects that the installation can access. type: array @@ -136571,8 +136713,8 @@ x-webhooks: - name - full_name - private - repository: *775 - requester: *794 + repository: *777 + requester: *796 sender: *4 required: - action @@ -136647,11 +136789,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -136727,11 +136869,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -136807,10 +136949,10 @@ x-webhooks: type: string enum: - added - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories_added: &796 + organization: *776 + repositories_added: &798 description: An array of repository objects, which were added to the installation. type: array @@ -136856,15 +136998,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *775 - repository_selection: &797 + repository: *777 + repository_selection: &799 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *794 + requester: *796 sender: *4 required: - action @@ -136943,10 +137085,10 @@ x-webhooks: type: string enum: - removed - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories_added: *796 + organization: *776 + repositories_added: *798 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -136973,9 +137115,9 @@ x-webhooks: - name - full_name - private - repository: *775 - repository_selection: *797 - requester: *794 + repository: *777 + repository_selection: *799 + requester: *796 sender: *4 required: - action @@ -137054,11 +137196,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -137236,10 +137378,10 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 target_type: type: string @@ -137318,11 +137460,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -137589,8 +137731,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138729,8 +138871,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -138810,7 +138952,7 @@ x-webhooks: type: string enum: - deleted - comment: &798 + comment: &800 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -138990,8 +139132,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140128,8 +140270,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -140209,7 +140351,7 @@ x-webhooks: type: string enum: - edited - changes: &827 + changes: &829 description: The changes to the comment. type: object properties: @@ -140221,9 +140363,9 @@ x-webhooks: type: string required: - from - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141361,8 +141503,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -141443,9 +141585,9 @@ x-webhooks: type: string enum: - pinned - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142587,8 +142729,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -142668,9 +142810,9 @@ x-webhooks: type: string enum: - unpinned - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143812,8 +143954,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143902,9 +144044,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143993,9 +144135,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -144083,9 +144225,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -144174,9 +144316,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -144256,10 +144398,10 @@ x-webhooks: type: string enum: - assigned - assignee: *794 - enterprise: *772 - installation: *773 - issue: &799 + assignee: *796 + enterprise: *774 + installation: *775 + issue: &801 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145172,8 +145314,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -145253,8 +145395,8 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146307,8 +146449,8 @@ x-webhooks: required: - state - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -146387,8 +146529,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147296,8 +147438,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -147376,8 +147518,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148286,7 +148428,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &800 + milestone: &802 title: Milestone description: A collection of related issues and pull requests. type: object @@ -148424,8 +148566,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -148524,8 +148666,8 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149438,9 +149580,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *793 - organization: *774 - repository: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149520,9 +149662,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 issue_field: type: object description: The issue field whose value was set or updated on the @@ -149676,8 +149818,8 @@ x-webhooks: - id required: - from - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149757,9 +149899,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -149840,8 +149982,8 @@ x-webhooks: nullable: true required: - id - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149921,8 +150063,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150834,9 +150976,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *793 - organization: *774 - repository: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -150916,8 +151058,8 @@ x-webhooks: type: string enum: - locked - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151830,8 +151972,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -151910,8 +152052,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152818,9 +152960,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *800 - organization: *774 - repository: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -154268,8 +154410,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155181,8 +155323,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -155262,9 +155404,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *772 - installation: *773 - issue: &801 + enterprise: *774 + installation: *775 + issue: &803 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -156170,8 +156312,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -156250,8 +156392,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157163,8 +157305,8 @@ x-webhooks: user_view_type: type: string type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158632,11 +158774,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *772 - installation: *773 - issue: *801 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *803 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158716,12 +158858,12 @@ x-webhooks: type: string enum: - typed - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158802,7 +158944,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &830 + assignee: &832 title: User type: object nullable: true @@ -158872,11 +159014,11 @@ x-webhooks: required: - login - id - enterprise: *772 - installation: *773 - issue: *799 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *801 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158955,12 +159097,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *772 - installation: *773 - issue: *799 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *801 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159040,8 +159182,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159952,8 +160094,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160033,11 +160175,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *772 - installation: *773 - issue: *801 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *803 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160116,12 +160258,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160201,11 +160343,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160283,11 +160425,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160397,11 +160539,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160483,9 +160625,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: &802 + enterprise: *774 + installation: *775 + marketplace_purchase: &804 title: Marketplace Purchase type: object required: @@ -160568,8 +160710,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *774 - previous_marketplace_purchase: &803 + organization: *776 + previous_marketplace_purchase: &805 title: Marketplace Purchase type: object properties: @@ -160649,7 +160791,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -160729,10 +160871,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160815,7 +160957,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -160897,10 +161039,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160982,7 +161124,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -161063,8 +161205,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 marketplace_purchase: title: Marketplace Purchase type: object @@ -161146,9 +161288,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *774 - previous_marketplace_purchase: *803 - repository: *775 + organization: *776 + previous_marketplace_purchase: *805 + repository: *777 sender: *4 required: - action @@ -161228,12 +161370,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 - previous_marketplace_purchase: *803 - repository: *775 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 + previous_marketplace_purchase: *805 + repository: *777 sender: *4 required: - action @@ -161335,11 +161477,11 @@ x-webhooks: type: string required: - to - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161439,11 +161581,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161522,11 +161664,11 @@ x-webhooks: type: string enum: - removed - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161604,11 +161746,11 @@ x-webhooks: type: string enum: - added - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161684,7 +161826,7 @@ x-webhooks: required: - login - id - team: &804 + team: &806 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -161907,11 +162049,11 @@ x-webhooks: type: string enum: - removed - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161988,7 +162130,7 @@ x-webhooks: required: - login - id - team: *804 + team: *806 required: - action - scope @@ -162070,8 +162212,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *773 - merge_group: &806 + installation: *775 + merge_group: &808 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -162090,15 +162232,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *805 + head_commit: *807 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162184,10 +162326,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *773 - merge_group: *806 - organization: *774 - repository: *775 + installation: *775 + merge_group: *808 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162260,7 +162402,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 + enterprise: *774 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -162369,16 +162511,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *773 - organization: *774 + installation: *775 + organization: *776 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -162459,11 +162601,11 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162542,9 +162684,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - milestone: &809 + enterprise: *774 + installation: *775 + milestone: &811 title: Milestone description: A collection of related issues and pull requests. type: object @@ -162681,8 +162823,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162761,11 +162903,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162875,11 +163017,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162959,11 +163101,11 @@ x-webhooks: type: string enum: - opened - enterprise: *772 - installation: *773 - milestone: *809 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *811 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163042,11 +163184,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *794 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + blocked_user: *796 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163125,11 +163267,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *794 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + blocked_user: *796 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163208,9 +163350,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - membership: &810 + enterprise: *774 + installation: *775 + membership: &812 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -163317,8 +163459,8 @@ x-webhooks: - role - organization_url - user - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163396,11 +163538,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163479,8 +163621,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -163596,10 +163738,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 - user: *794 + user: *796 required: - action - invitation @@ -163677,11 +163819,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163768,11 +163910,11 @@ x-webhooks: properties: from: type: string - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163849,9 +163991,9 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 package: description: Information about the package. type: object @@ -164350,7 +164492,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &811 + items: &813 title: Ruby Gems metadata type: object properties: @@ -164445,7 +164587,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -164521,9 +164663,9 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 package: description: Information about the package. type: object @@ -164876,7 +165018,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *811 + items: *813 source_url: type: string format: uri @@ -164946,7 +165088,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -165122,12 +165264,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *772 + enterprise: *774 id: type: integer - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - id @@ -165204,7 +165346,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &812 + personal_access_token_request: &814 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -165350,10 +165492,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *772 - organization: *774 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165430,11 +165572,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *812 - enterprise: *772 - organization: *774 + personal_access_token_request: *814 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165510,11 +165652,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *812 - enterprise: *772 - organization: *774 + personal_access_token_request: *814 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165589,11 +165731,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *812 - organization: *774 - enterprise: *772 + personal_access_token_request: *814 + organization: *776 + enterprise: *774 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165698,7 +165840,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *813 + last_response: *815 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -165730,8 +165872,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 zen: description: Random string of GitHub zen. @@ -165976,10 +166118,10 @@ x-webhooks: - from required: - note - enterprise: *772 - installation: *773 - organization: *774 - project_card: &814 + enterprise: *774 + installation: *775 + organization: *776 + project_card: &816 title: Project Card type: object properties: @@ -166098,7 +166240,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -166179,11 +166321,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project_card: *814 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_card: *816 + repository: *777 sender: *4 required: - action @@ -166263,9 +166405,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 project_card: title: Project Card type: object @@ -166393,8 +166535,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -166488,11 +166630,11 @@ x-webhooks: - from required: - note - enterprise: *772 - installation: *773 - organization: *774 - project_card: *814 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_card: *816 + repository: *777 sender: *4 required: - action @@ -166586,9 +166728,9 @@ x-webhooks: - from required: - column_id - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 project_card: allOf: - title: Project Card @@ -166778,7 +166920,7 @@ x-webhooks: type: string required: - after_id - repository: *775 + repository: *777 sender: *4 required: - action @@ -166858,10 +167000,10 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - organization: *774 - project: &816 + enterprise: *774 + installation: *775 + organization: *776 + project: &818 title: Project type: object properties: @@ -166985,7 +167127,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -167065,10 +167207,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project_column: &815 + enterprise: *774 + installation: *775 + organization: *776 + project_column: &817 title: Project Column type: object properties: @@ -167107,7 +167249,7 @@ x-webhooks: - name - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -167186,18 +167328,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -167287,11 +167429,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 + repository: *777 sender: *4 required: - action @@ -167371,11 +167513,11 @@ x-webhooks: type: string enum: - moved - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 + repository: *777 sender: *4 required: - action @@ -167455,11 +167597,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167539,18 +167681,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - project: *816 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -167652,11 +167794,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167735,11 +167877,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167820,8 +167962,8 @@ x-webhooks: type: string enum: - closed - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167903,8 +168045,8 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167986,8 +168128,8 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -168105,8 +168247,8 @@ x-webhooks: type: string to: type: string - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -168190,7 +168332,7 @@ x-webhooks: type: string enum: - archived - changes: &820 + changes: &822 type: object properties: archived_at: @@ -168204,9 +168346,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *773 - organization: *774 - projects_v2_item: &817 + installation: *775 + organization: *776 + projects_v2_item: &819 title: Projects v2 Item description: An item belonging to a project type: object @@ -168341,9 +168483,9 @@ x-webhooks: nullable: true to: type: string - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168425,9 +168567,9 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168508,9 +168650,9 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168616,7 +168758,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &818 + - &820 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -168638,7 +168780,7 @@ x-webhooks: required: - id - name - - &819 + - &821 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -168672,8 +168814,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *818 - - *819 + - *820 + - *821 required: - field_value - type: object @@ -168689,9 +168831,9 @@ x-webhooks: nullable: true required: - body - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168786,9 +168928,9 @@ x-webhooks: to: type: string nullable: true - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168871,10 +169013,10 @@ x-webhooks: type: string enum: - restored - changes: *820 - installation: *773 - organization: *774 - projects_v2_item: *817 + changes: *822 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168956,8 +169098,8 @@ x-webhooks: type: string enum: - reopened - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -169039,14 +169181,14 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 - projects_v2_status_update: &823 + installation: *775 + organization: *776 + projects_v2_status_update: &825 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *821 - required: *822 + properties: *823 + required: *824 sender: *4 required: - action @@ -169127,9 +169269,9 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 - projects_v2_status_update: *823 + installation: *775 + organization: *776 + projects_v2_status_update: *825 sender: *4 required: - action @@ -169265,9 +169407,9 @@ x-webhooks: type: string format: date nullable: true - installation: *773 - organization: *774 - projects_v2_status_update: *823 + installation: *775 + organization: *776 + projects_v2_status_update: *825 sender: *4 required: - action @@ -169338,10 +169480,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - repository @@ -169418,13 +169560,13 @@ x-webhooks: type: string enum: - assigned - assignee: *794 - enterprise: *772 - installation: *773 - number: &824 + assignee: *796 + enterprise: *774 + installation: *775 + number: &826 description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -171729,7 +171871,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -171811,11 +171953,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -174115,7 +174257,7 @@ x-webhooks: - draft reason: type: string - repository: *775 + repository: *777 sender: *4 required: - action @@ -174197,11 +174339,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -176501,7 +176643,7 @@ x-webhooks: - draft reason: type: string - repository: *775 + repository: *777 sender: *4 required: - action @@ -176583,11 +176725,11 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: &825 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: &827 allOf: - *625 - type: object @@ -176651,7 +176793,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *775 + repository: *777 sender: *4 required: - action @@ -176732,12 +176874,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -176817,11 +176959,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *772 + enterprise: *774 milestone: *609 - number: *824 - organization: *774 - pull_request: &826 + number: *826 + organization: *776 + pull_request: &828 title: Pull Request type: object properties: @@ -179106,7 +179248,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -179185,11 +179327,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -181493,7 +181635,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *775 + repository: *777 sender: *4 required: - action @@ -181617,12 +181759,12 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -181702,11 +181844,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -183995,7 +184137,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -184075,11 +184217,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *772 - installation: *773 - label: *793 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + label: *795 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -186383,7 +186525,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -186464,10 +186606,10 @@ x-webhooks: type: string enum: - locked - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -188769,7 +188911,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -188849,12 +188991,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *772 + enterprise: *774 milestone: *609 - number: *824 - organization: *774 - pull_request: *826 - repository: *775 + number: *826 + organization: *776 + pull_request: *828 + repository: *777 sender: *4 required: - action @@ -188933,12 +189075,12 @@ x-webhooks: type: string enum: - opened - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -189019,12 +189161,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -189104,12 +189246,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -189475,9 +189617,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -191669,7 +191811,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -191749,7 +191891,7 @@ x-webhooks: type: string enum: - deleted - comment: &828 + comment: &830 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -192034,9 +192176,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -194216,7 +194358,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -194296,11 +194438,11 @@ x-webhooks: type: string enum: - edited - changes: *827 - comment: *828 - enterprise: *772 - installation: *773 - organization: *774 + changes: *829 + comment: *830 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -196483,7 +196625,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -196564,9 +196706,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -198761,7 +198903,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 review: description: The review that was affected. type: object @@ -199008,9 +199150,9 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -201064,8 +201206,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 - review: &829 + repository: *777 + review: &831 description: The review that was affected. type: object properties: @@ -201298,12 +201440,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -203608,7 +203750,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_reviewer: title: User type: object @@ -203692,12 +203834,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -206009,7 +206151,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_team: title: Team description: Groups of organization members that gives permissions @@ -206201,12 +206343,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -208513,7 +208655,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_reviewer: title: User type: object @@ -208598,12 +208740,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -210901,7 +211043,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211082,9 +211224,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -213281,8 +213423,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 - review: *829 + repository: *777 + review: *831 sender: *4 required: - action @@ -213362,9 +213504,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -215456,7 +215598,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 sender: *4 thread: type: object @@ -215843,9 +215985,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -217923,7 +218065,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 sender: *4 thread: type: object @@ -218313,10 +218455,10 @@ x-webhooks: type: string before: type: string - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -220609,7 +220751,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -220691,11 +220833,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *830 - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + assignee: *832 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -223000,7 +223142,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -223079,11 +223221,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *772 - installation: *773 - label: *793 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + label: *795 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -225378,7 +225520,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -225459,10 +225601,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -227749,7 +227891,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -227949,7 +228091,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *772 + enterprise: *774 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -228041,8 +228183,8 @@ x-webhooks: - url - author - committer - installation: *773 - organization: *774 + installation: *775 + organization: *776 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -228628,9 +228770,9 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 registry_package: type: object properties: @@ -229076,7 +229218,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *811 + items: *813 summary: type: string tag_name: @@ -229130,7 +229272,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -229208,9 +229350,9 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 registry_package: type: object properties: @@ -229518,7 +229660,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *811 + items: *813 summary: type: string tag_name: @@ -229567,7 +229709,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -229644,10 +229786,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - release: &831 + enterprise: *774 + installation: *775 + organization: *776 + release: &833 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229965,7 +230107,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *775 + repository: *777 sender: *4 required: - action @@ -230042,11 +230184,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -230163,11 +230305,11 @@ x-webhooks: type: boolean required: - to - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -230245,9 +230387,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -230569,7 +230711,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *775 + repository: *777 sender: *4 required: - action @@ -230645,10 +230787,10 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - release: &832 + enterprise: *774 + installation: *775 + organization: *776 + release: &834 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -230967,7 +231109,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *775 + repository: *777 sender: *4 required: - action @@ -231043,11 +231185,11 @@ x-webhooks: type: string enum: - released - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -231123,11 +231265,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *772 - installation: *773 - organization: *774 - release: *832 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *834 + repository: *777 sender: *4 required: - action @@ -231203,10 +231345,10 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_advisory: *694 sender: *4 required: @@ -231283,10 +231425,10 @@ x-webhooks: type: string enum: - reported - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_advisory: *694 sender: *4 required: @@ -231363,10 +231505,10 @@ x-webhooks: type: string enum: - archived - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231443,10 +231585,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231524,10 +231666,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231611,10 +231753,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231726,10 +231868,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231801,10 +231943,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 status: type: string @@ -231885,10 +232027,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231965,10 +232107,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232062,10 +232204,10 @@ x-webhooks: - name required: - repository - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232145,10 +232287,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 sender: *4 required: @@ -232227,10 +232369,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 sender: *4 required: @@ -232309,10 +232451,10 @@ x-webhooks: type: string enum: - edited - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 changes: type: object @@ -232617,10 +232759,10 @@ x-webhooks: - from required: - owner - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232698,10 +232840,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232779,7 +232921,7 @@ x-webhooks: type: string enum: - create - alert: &833 + alert: &835 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -232901,10 +233043,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233110,10 +233252,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233191,11 +233333,11 @@ x-webhooks: type: string enum: - reopen - alert: *833 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *835 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233394,10 +233536,10 @@ x-webhooks: enum: - fixed - open - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233475,7 +233617,7 @@ x-webhooks: type: string enum: - assigned - alert: &834 + alert: &836 type: object properties: number: *188 @@ -233618,10 +233760,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233699,11 +233841,11 @@ x-webhooks: type: string enum: - created - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233784,11 +233926,11 @@ x-webhooks: type: string enum: - created - alert: *834 - installation: *773 - location: *835 - organization: *774 - repository: *775 + alert: *836 + installation: *775 + location: *837 + organization: *776 + repository: *777 sender: *4 required: - location @@ -234026,11 +234168,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -234108,11 +234250,11 @@ x-webhooks: type: string enum: - reopened - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -234190,11 +234332,11 @@ x-webhooks: type: string enum: - resolved - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -234272,12 +234414,12 @@ x-webhooks: type: string enum: - unassigned - alert: *834 + alert: *836 assignee: *4 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -234355,11 +234497,11 @@ x-webhooks: type: string enum: - validated - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -234485,10 +234627,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *775 - enterprise: *772 - installation: *773 - organization: *774 + repository: *777 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -234566,11 +234708,11 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - security_advisory: &836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + security_advisory: &838 description: The details of the security advisory, including summary, description, and severity. type: object @@ -234753,11 +234895,11 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - security_advisory: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + security_advisory: *838 sender: *4 required: - action @@ -234830,10 +234972,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -235018,9 +235160,9 @@ x-webhooks: type: object properties: security_and_analysis: *312 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: *357 sender: *4 required: @@ -235099,12 +235241,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: &837 + sponsorship: &839 type: object properties: created_at: @@ -235405,12 +235547,12 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - sponsorship @@ -235498,12 +235640,12 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -235580,17 +235722,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &838 + effective_date: &840 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: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - sponsorship @@ -235664,7 +235806,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &839 + changes: &841 type: object properties: tier: @@ -235708,13 +235850,13 @@ x-webhooks: - from required: - tier - effective_date: *838 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + effective_date: *840 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -235791,13 +235933,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *839 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + changes: *841 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -235871,10 +236013,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235957,10 +236099,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -236380,15 +236522,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *772 + enterprise: *774 id: description: The unique identifier of the status. type: integer - installation: *773 + installation: *775 name: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 sha: description: The Commit SHA. @@ -236503,9 +236645,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -236594,9 +236736,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -236685,9 +236827,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -236776,9 +236918,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -236854,12 +236996,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - team: &840 + team: &842 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -237082,9 +237224,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -237542,7 +237684,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -237618,9 +237760,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -238078,7 +238220,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -238155,9 +238297,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -238615,7 +238757,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -238759,9 +238901,9 @@ x-webhooks: - from required: - permissions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -239219,7 +239361,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - changes @@ -239297,9 +239439,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -239757,7 +239899,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -239833,10 +239975,10 @@ x-webhooks: type: string enum: - started - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -239909,16 +240051,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *772 + enterprise: *774 inputs: type: object nullable: true additionalProperties: true - installation: *773 - organization: *774 + installation: *775 + organization: *776 ref: type: string - repository: *775 + repository: *777 sender: *4 workflow: type: string @@ -240000,10 +240142,10 @@ x-webhooks: type: string enum: - completed - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: allOf: @@ -240319,10 +240461,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: allOf: @@ -240661,10 +240803,10 @@ x-webhooks: type: string enum: - queued - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: type: object @@ -240878,10 +241020,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: type: object @@ -241097,12 +241239,12 @@ x-webhooks: type: string enum: - completed - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: *789 + workflow: *791 workflow_run: title: Workflow Run type: object @@ -242101,12 +242243,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: *789 + workflow: *791 workflow_run: title: Workflow Run type: object @@ -243090,12 +243232,12 @@ x-webhooks: type: string enum: - requested - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: *789 + workflow: *791 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index a441d331fa..c0ac5771e0 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -225862,7 +225862,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" ], @@ -225932,8 +225932,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": { @@ -226032,6 +226032,20 @@ "user_view_type": { "type": "string", "example": "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" + ], + "example": "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.", + "example": false } }, "required": [ @@ -226077,7 +226091,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 } ] } @@ -600042,7 +600058,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" ], @@ -600103,8 +600119,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": { @@ -600203,6 +600219,20 @@ "user_view_type": { "type": "string", "example": "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" + ], + "example": "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.", + "example": false } }, "required": [ @@ -600248,7 +600278,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/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 562011a061..1d6d6bd969 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -14028,7 +14028,7 @@ paths: properties: action: type: string - discussion: &790 + discussion: &792 title: Discussion description: A Discussion in a repository. type: object @@ -22005,7 +22005,7 @@ paths: parameters: - *78 - *124 - - &766 + - &768 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 @@ -22117,7 +22117,7 @@ paths: - *124 - *125 - *126 - - &767 + - &769 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22125,7 +22125,7 @@ paths: schema: type: string - *129 - - &768 + - &770 name: sku description: The SKU to query for usage. in: query @@ -29629,12 +29629,12 @@ paths: required: - subject_digests examples: - default: &747 + default: &749 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &748 + withPredicateType: &750 value: subject_digests: - sha256:abc123 @@ -29678,7 +29678,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &749 + default: &751 value: attestations_subject_digests: - sha256:abc: @@ -41697,7 +41697,7 @@ paths: parameters: - *78 - *269 - - &729 + - &731 name: repo_name description: repo_name parameter in: path @@ -42625,7 +42625,7 @@ paths: - nuget - container - *78 - - &730 + - &732 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -42666,7 +42666,7 @@ paths: default: *276 '403': *29 '401': *25 - '400': &732 + '400': &734 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44874,7 +44874,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &821 + properties: &823 id: type: number description: The unique identifier of the status update. @@ -44922,7 +44922,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &822 + required: &824 - id - node_id - created_at @@ -45727,7 +45727,7 @@ paths: - updated_at - project_url examples: - default: &753 + default: &755 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45904,7 +45904,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &754 + items: &756 type: object properties: name: @@ -45941,7 +45941,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &755 + iteration_configuration: &757 type: object description: The configuration for iteration fields. properties: @@ -45991,7 +45991,7 @@ paths: value: name: Due date data_type: date - single_select_field: &756 + single_select_field: &758 summary: Create a single select field value: name: Priority @@ -46018,7 +46018,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &757 + iteration_field: &759 summary: Create an iteration field value: name: Sprint @@ -46044,7 +46044,7 @@ paths: application/json: schema: *297 examples: - text_field: &758 + text_field: &760 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46053,7 +46053,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: &759 + number_field: &761 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46062,7 +46062,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: &760 + date_field: &762 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46071,7 +46071,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: &761 + single_select_field: &763 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46105,7 +46105,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &762 + iteration_field: &764 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46151,7 +46151,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *293 - - &763 + - &765 name: field_id description: The unique identifier of the field. in: path @@ -46166,7 +46166,7 @@ paths: application/json: schema: *297 examples: - default: &764 + default: &766 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47363,7 +47363,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &744 + schema: &746 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47540,7 +47540,7 @@ paths: parameters: - *293 - *78 - - &765 + - &767 name: view_number description: The number that identifies the project view. in: path @@ -54621,6 +54621,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 @@ -54651,9 +54653,147 @@ paths: application/json: schema: type: array - items: *4 + items: &710 + 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: + nullable: true + type: string + email: + nullable: true + type: string + login: + type: string + example: octocat + id: + type: integer + format: int64 + example: 1 + node_id: + type: string + example: MDQ6VXNlcjE= + avatar_url: + type: string + format: uri + example: https://github.com/images/error/octocat_happy.gif + gravatar_id: + type: string + example: 41d064eb2195891e12d0413f63227ea7 + nullable: true + url: + type: string + format: uri + example: https://api.github.com/users/octocat + html_url: + type: string + format: uri + example: https://github.com/octocat + followers_url: + type: string + format: uri + example: https://api.github.com/users/octocat/followers + following_url: + type: string + example: https://api.github.com/users/octocat/following{/other_user} + gists_url: + type: string + example: https://api.github.com/users/octocat/gists{/gist_id} + starred_url: + type: string + example: https://api.github.com/users/octocat/starred{/owner}{/repo} + subscriptions_url: + type: string + format: uri + example: https://api.github.com/users/octocat/subscriptions + organizations_url: + type: string + format: uri + example: https://api.github.com/users/octocat/orgs + repos_url: + type: string + format: uri + example: https://api.github.com/users/octocat/repos + events_url: + type: string + example: https://api.github.com/users/octocat/events{/privacy} + received_events_url: + type: string + format: uri + example: https://api.github.com/users/octocat/received_events + type: + type: string + example: User + site_admin: + type: boolean + starred_at: + type: string + example: '"2020-07-09T00:17:55Z"' + user_view_type: + type: string + example: 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 + example: 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. + example: 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: *73 + default: &711 + 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: *70 x-github: @@ -54718,7 +54858,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &710 + response-if-user-is-a-team-maintainer: &712 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -54783,7 +54923,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: &711 + response-if-users-membership-with-team-is-now-pending: &713 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -54897,7 +55037,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &712 + schema: &714 title: Team Repository description: A team's access to a repository. type: object @@ -55547,7 +55687,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: &713 + response-if-child-teams-exist: &715 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61192,7 +61332,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &784 + properties: &786 url: type: string format: uri @@ -61277,7 +61417,7 @@ paths: nullable: true properties: *83 required: *84 - required: &785 + required: &787 - id - node_id - sha @@ -67349,7 +67489,7 @@ paths: check. type: array items: *93 - deployment: &777 + deployment: &779 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68261,7 +68401,7 @@ paths: type: string format: date-time nullable: true - head_commit: &805 + head_commit: &807 title: Simple Commit description: A commit. type: object @@ -72985,14 +73125,14 @@ paths: type: integer machines: type: array - items: &718 + items: &720 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *477 required: *478 examples: - default: &719 + default: &721 value: total_count: 2 machines: @@ -83781,7 +83921,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &813 + last_response: &815 title: Hook Response type: object properties: @@ -84833,7 +84973,7 @@ paths: parameters: - *354 - *355 - - &742 + - &744 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85418,7 +85558,7 @@ paths: type: array items: *556 examples: - default: &734 + default: &736 value: - id: 1 repository: @@ -100875,7 +101015,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &835 + items: &837 type: object properties: type: @@ -106502,6 +106642,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 @@ -106530,9 +106672,9 @@ paths: application/json: schema: type: array - items: *4 + items: *710 examples: - default: *73 + default: *711 headers: Link: *70 '404': *6 @@ -106683,7 +106825,7 @@ paths: application/json: schema: *353 examples: - response-if-user-is-a-team-maintainer: *710 + response-if-user-is-a-team-maintainer: *712 '404': *6 x-github: githubCloudOnly: false @@ -106744,7 +106886,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: *711 + response-if-users-membership-with-team-is-now-pending: *713 '403': description: Forbidden if team synchronization is set up '422': @@ -106856,7 +106998,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *712 + schema: *714 examples: alternative-response-with-extra-repository-information: value: @@ -107097,7 +107239,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: *713 + response-if-child-teams-exist: *715 headers: Link: *70 '404': *6 @@ -107130,7 +107272,7 @@ paths: application/json: schema: oneOf: - - &714 + - &716 title: Private User description: Private User type: object @@ -107333,7 +107475,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &741 + - &743 title: Public User description: Public User type: object @@ -107645,7 +107787,7 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: default: value: @@ -108043,7 +108185,7 @@ paths: type: integer secrets: type: array - items: &715 + items: &717 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108159,7 +108301,7 @@ paths: description: Response content: application/json: - schema: *715 + schema: *717 examples: default: value: @@ -108572,7 +108714,7 @@ paths: description: Response content: application/json: - schema: &716 + schema: &718 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -108613,7 +108755,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &717 + default: &719 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -108658,9 +108800,9 @@ paths: description: Response content: application/json: - schema: *716 + schema: *718 examples: - default: *717 + default: *719 '404': *6 x-github: githubCloudOnly: false @@ -108697,9 +108839,9 @@ paths: type: integer machines: type: array - items: *718 + items: *720 examples: - default: *719 + default: *721 '304': *37 '500': *55 '401': *25 @@ -109638,7 +109780,7 @@ paths: type: array items: *275 examples: - default: &731 + default: &733 value: - id: 197 name: hello_docker @@ -109739,7 +109881,7 @@ paths: application/json: schema: type: array - items: &720 + items: &722 title: Email description: Email type: object @@ -109804,9 +109946,9 @@ paths: application/json: schema: type: array - items: *720 + items: *722 examples: - default: &733 + default: &735 value: - email: octocat@github.com verified: true @@ -109881,7 +110023,7 @@ paths: application/json: schema: type: array - items: *720 + items: *722 examples: default: value: @@ -110137,7 +110279,7 @@ paths: application/json: schema: type: array - items: &721 + items: &723 title: GPG Key description: A unique encryption key type: object @@ -110268,7 +110410,7 @@ paths: - subkeys - revoked examples: - default: &751 + default: &753 value: - id: 3 name: Octocat's GPG Key @@ -110353,9 +110495,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: &722 + default: &724 value: id: 3 name: Octocat's GPG Key @@ -110412,7 +110554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &723 + - &725 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -110424,9 +110566,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: *722 + default: *724 '404': *6 '304': *37 '403': *29 @@ -110449,7 +110591,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *723 + - *725 responses: '204': description: Response @@ -110916,7 +111058,7 @@ paths: application/json: schema: type: array - items: &724 + items: &726 title: Key description: Key type: object @@ -111017,9 +111159,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *726 examples: - default: &725 + default: &727 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111058,9 +111200,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *726 examples: - default: *725 + default: *727 '404': *6 '304': *37 '403': *29 @@ -111116,7 +111258,7 @@ paths: application/json: schema: type: array - items: &726 + items: &728 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -111184,7 +111326,7 @@ paths: - account - plan examples: - default: &727 + default: &729 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -111246,9 +111388,9 @@ paths: application/json: schema: type: array - items: *726 + items: *728 examples: - default: *727 + default: *729 headers: Link: *70 '304': *37 @@ -111491,7 +111633,7 @@ paths: application/json: schema: *266 examples: - default: &728 + default: &730 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -111540,7 +111682,7 @@ paths: application/json: schema: *266 examples: - default: *728 + default: *730 '403': *29 '404': *6 '422': *15 @@ -112265,7 +112407,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *269 - - *729 + - *731 responses: '204': description: Response @@ -112378,7 +112520,7 @@ paths: - docker - nuget - container - - *730 + - *732 - *19 - *17 responses: @@ -112390,8 +112532,8 @@ paths: type: array items: *275 examples: - default: *731 - '400': *732 + default: *733 + '400': *734 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112420,7 +112562,7 @@ paths: application/json: schema: *275 examples: - default: &752 + default: &754 value: id: 40201 name: octo-name @@ -112782,9 +112924,9 @@ paths: application/json: schema: type: array - items: *720 + items: *722 examples: - default: *733 + default: *735 headers: Link: *70 '304': *37 @@ -112897,7 +113039,7 @@ paths: type: array items: *82 examples: - default: &740 + default: &742 summary: Default response value: - id: 1296269 @@ -113244,7 +113386,7 @@ paths: type: array items: *556 examples: - default: *734 + default: *736 headers: Link: *70 '304': *37 @@ -113324,7 +113466,7 @@ paths: application/json: schema: type: array - items: &735 + items: &737 title: Social account description: Social media account type: object @@ -113339,7 +113481,7 @@ paths: - provider - url examples: - default: &736 + default: &738 value: - provider: twitter url: https://twitter.com/github @@ -113401,9 +113543,9 @@ paths: application/json: schema: type: array - items: *735 + items: *737 examples: - default: *736 + default: *738 '422': *15 '304': *37 '404': *6 @@ -113490,7 +113632,7 @@ paths: application/json: schema: type: array - items: &737 + items: &739 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -113510,7 +113652,7 @@ paths: - title - created_at examples: - default: &769 + default: &771 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113574,9 +113716,9 @@ paths: description: Response content: application/json: - schema: *737 + schema: *739 examples: - default: &738 + default: &740 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113606,7 +113748,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: - - &739 + - &741 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -113618,9 +113760,9 @@ paths: description: Response content: application/json: - schema: *737 + schema: *739 examples: - default: *738 + default: *740 '404': *6 '304': *37 '403': *29 @@ -113643,7 +113785,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: - - *739 + - *741 responses: '204': description: Response @@ -113672,7 +113814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &770 + - &772 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 @@ -113697,11 +113839,11 @@ paths: type: array items: *82 examples: - default-response: *740 + default-response: *742 application/vnd.github.v3.star+json: schema: type: array - items: &771 + items: &773 title: Starred Repository description: Starred Repository type: object @@ -114070,10 +114212,10 @@ paths: application/json: schema: oneOf: - - *714 - - *741 + - *716 + - *743 examples: - default-response: &745 + default-response: &747 summary: Default response value: login: octocat @@ -114108,7 +114250,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &746 + response-with-git-hub-plan-information: &748 summary: Response with GitHub plan information value: login: octocat @@ -114165,7 +114307,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &743 + - &745 name: user_id description: The unique identifier of the user. in: path @@ -114231,7 +114373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *742 + - *744 - *17 responses: '200': @@ -114266,7 +114408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *743 + - *745 - *293 requestBody: required: true @@ -114338,7 +114480,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *744 + schema: *746 examples: table_view: summary: Response for creating a table view @@ -114390,11 +114532,11 @@ paths: application/json: schema: oneOf: - - *714 - - *741 + - *716 + - *743 examples: - default-response: *745 - response-with-git-hub-plan-information: *746 + default-response: *747 + response-with-git-hub-plan-information: *748 '404': *6 x-github: githubCloudOnly: false @@ -114444,8 +114586,8 @@ paths: required: - subject_digests examples: - default: *747 - withPredicateType: *748 + default: *749 + withPredicateType: *750 responses: '200': description: Response @@ -114484,7 +114626,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *749 + default: *751 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114954,7 +115096,7 @@ paths: application/json: schema: *204 examples: - default: &750 + default: &752 summary: Example response for a user copilot space value: id: 42 @@ -115055,7 +115197,7 @@ paths: application/json: schema: *204 examples: - default: *750 + default: *752 '403': *29 '404': *6 x-github: @@ -115178,7 +115320,7 @@ paths: application/json: schema: *204 examples: - default: *750 + default: *752 '403': *29 '404': *6 '422': *15 @@ -115946,7 +116088,7 @@ paths: type: array items: *275 examples: - default: *731 + default: *733 '403': *29 '401': *25 x-github: @@ -116330,9 +116472,9 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: - default: *751 + default: *753 headers: Link: *70 x-github: @@ -116560,7 +116702,7 @@ paths: - docker - nuget - container - - *730 + - *732 - *74 - *19 - *17 @@ -116573,10 +116715,10 @@ paths: type: array items: *275 examples: - default: *731 + default: *733 '403': *29 '401': *25 - '400': *732 + '400': *734 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116606,7 +116748,7 @@ paths: application/json: schema: *275 examples: - default: *752 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116955,7 +117097,7 @@ paths: type: array items: *297 examples: - default: *753 + default: *755 headers: Link: *70 '304': *37 @@ -117015,7 +117157,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *754 + items: *756 required: - name - data_type @@ -117031,7 +117173,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *755 + iteration_configuration: *757 required: - name - data_type @@ -117053,8 +117195,8 @@ paths: value: name: Due date data_type: date - single_select_field: *756 - iteration_field: *757 + single_select_field: *758 + iteration_field: *759 responses: '201': description: Response @@ -117062,11 +117204,11 @@ paths: application/json: schema: *297 examples: - text_field: *758 - number_field: *759 - date_field: *760 - single_select_field: *761 - iteration_field: *762 + text_field: *760 + number_field: *761 + date_field: *762 + single_select_field: *763 + iteration_field: *764 '304': *37 '403': *29 '401': *25 @@ -117088,7 +117230,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *293 - - *763 + - *765 - *74 responses: '200': @@ -117097,7 +117239,7 @@ paths: application/json: schema: *297 examples: - default: *764 + default: *766 headers: Link: *70 '304': *37 @@ -117451,7 +117593,7 @@ paths: parameters: - *293 - *74 - - *765 + - *767 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -117990,7 +118132,7 @@ paths: parameters: - *74 - *124 - - *766 + - *768 - *126 responses: '200': @@ -118089,9 +118231,9 @@ paths: - *124 - *125 - *126 - - *767 + - *769 - *129 - - *768 + - *770 responses: '200': description: Response when getting a billing usage summary @@ -118225,9 +118367,9 @@ paths: application/json: schema: type: array - items: *735 + items: *737 examples: - default: *736 + default: *738 headers: Link: *70 x-github: @@ -118257,9 +118399,9 @@ paths: application/json: schema: type: array - items: *737 + items: *739 examples: - default: *769 + default: *771 headers: Link: *70 x-github: @@ -118284,7 +118426,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *770 + - *772 - *62 - *17 - *19 @@ -118296,11 +118438,11 @@ paths: schema: anyOf: - type: array - items: *771 + items: *773 - type: array items: *82 examples: - default-response: *740 + default-response: *742 headers: Link: *70 x-github: @@ -118459,7 +118601,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &772 + enterprise: &774 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -118517,7 +118659,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &773 + installation: &775 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -118536,7 +118678,7 @@ x-webhooks: required: - id - node_id - organization: &774 + organization: &776 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -118596,13 +118738,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &775 + repository: &777 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &807 + properties: &809 id: description: Unique identifier of the repository example: 42 @@ -119286,7 +119428,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &808 + required: &810 - archive_url - assignees_url - blobs_url @@ -119437,10 +119579,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -119516,11 +119658,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: &776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: &778 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) @@ -119743,11 +119885,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: *776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: *778 sender: *4 required: - action @@ -119930,11 +120072,11 @@ x-webhooks: - everyone required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - rule: *776 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + rule: *778 sender: *4 required: - action @@ -120018,7 +120160,7 @@ x-webhooks: type: string enum: - completed - check_run: &778 + check_run: &780 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120109,7 +120251,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *777 + deployment: *779 details_url: example: https://example.com type: string @@ -120194,10 +120336,10 @@ x-webhooks: - output - app - pull_requests - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -120588,11 +120730,11 @@ x-webhooks: type: string enum: - created - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -120986,11 +121128,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 requested_action: description: The action requested by the user. type: object @@ -121393,11 +121535,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *778 - installation: *773 - enterprise: *772 - organization: *774 - repository: *775 + check_run: *780 + installation: *775 + enterprise: *774 + organization: *776 + repository: *777 sender: *4 required: - check_run @@ -122367,10 +122509,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -123069,10 +123211,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -123765,10 +123907,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -124079,20 +124221,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &779 + commit_oid: &781 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: *772 - installation: *773 - organization: *774 - ref: &780 + enterprise: *774 + installation: *775 + organization: *776 + ref: &782 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: *775 + repository: *777 sender: *4 required: - action @@ -124487,12 +124629,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -124758,12 +124900,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125095,12 +125237,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125374,16 +125516,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *775 + repository: *777 sender: *4 required: - action @@ -125620,12 +125762,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *779 - enterprise: *772 - installation: *773 - organization: *774 - ref: *780 - repository: *775 + commit_oid: *781 + enterprise: *774 + installation: *775 + organization: *776 + ref: *782 + repository: *777 sender: *4 required: - action @@ -125936,10 +126078,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -126194,10 +126336,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -126277,18 +126419,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *774 - pusher_type: &781 + organization: *776 + pusher_type: &783 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &782 + ref: &784 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -126298,7 +126440,7 @@ x-webhooks: enum: - tag - branch - repository: *775 + repository: *777 sender: *4 required: - ref @@ -126381,9 +126523,9 @@ x-webhooks: enum: - created definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126468,9 +126610,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126548,9 +126690,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126628,9 +126770,9 @@ x-webhooks: enum: - updated definition: *305 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -126707,10 +126849,10 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - repository: *775 - organization: *774 + enterprise: *774 + installation: *775 + repository: *777 + organization: *776 sender: *4 new_property_values: type: array @@ -126795,18 +126937,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - pusher_type: *781 - ref: *782 + enterprise: *774 + installation: *775 + organization: *776 + pusher_type: *783 + ref: *784 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *775 + repository: *777 sender: *4 required: - ref @@ -126887,10 +127029,10 @@ x-webhooks: enum: - assignees_changed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -126971,10 +127113,10 @@ x-webhooks: enum: - auto_dismissed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127056,10 +127198,10 @@ x-webhooks: enum: - auto_reopened alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127141,10 +127283,10 @@ x-webhooks: enum: - created alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127224,10 +127366,10 @@ x-webhooks: enum: - dismissed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127307,10 +127449,10 @@ x-webhooks: enum: - fixed alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127391,10 +127533,10 @@ x-webhooks: enum: - reintroduced alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127474,10 +127616,10 @@ x-webhooks: enum: - reopened alert: *512 - installation: *773 - organization: *774 - enterprise: *772 - repository: *775 + installation: *775 + organization: *776 + enterprise: *774 + repository: *777 sender: *4 required: - action @@ -127554,9 +127696,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - key: &783 + enterprise: *774 + installation: *775 + key: &785 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127592,8 +127734,8 @@ x-webhooks: - verified - created_at - read_only - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -127670,11 +127812,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - key: *783 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + key: *785 + organization: *776 + repository: *777 sender: *4 required: - action @@ -128230,12 +128372,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: &789 + workflow: &791 title: Workflow type: object nullable: true @@ -128976,15 +129118,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *784 - required: *785 + properties: *786 + required: *787 nullable: true pull_requests: type: array items: *625 - repository: *775 - organization: *774 - installation: *773 + repository: *777 + organization: *776 + installation: *775 sender: *4 responses: '200': @@ -129055,7 +129197,7 @@ x-webhooks: type: string enum: - approved - approver: &786 + approver: &788 type: object properties: avatar_url: @@ -129098,11 +129240,11 @@ x-webhooks: type: string comment: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - reviewers: &787 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + reviewers: &789 type: array items: type: object @@ -129181,7 +129323,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &788 + workflow_job_run: &790 type: object properties: conclusion: @@ -129912,18 +130054,18 @@ x-webhooks: type: string enum: - rejected - approver: *786 + approver: *788 comment: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - reviewers: *787 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + reviewers: *789 sender: *4 since: type: string - workflow_job_run: *788 + workflow_job_run: *790 workflow_job_runs: type: array items: @@ -130627,13 +130769,13 @@ x-webhooks: type: string enum: - requested - enterprise: *772 + enterprise: *774 environment: type: string - installation: *773 - organization: *774 - repository: *775 - requestor: &794 + installation: *775 + organization: *776 + repository: *777 + requestor: &796 title: User type: object nullable: true @@ -132522,12 +132664,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - workflow: *789 + workflow: *791 workflow_run: title: Deployment Workflow Run type: object @@ -133207,7 +133349,7 @@ x-webhooks: type: string enum: - answered - answer: &792 + answer: &794 type: object properties: author_association: @@ -133364,11 +133506,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -133495,11 +133637,11 @@ x-webhooks: - from required: - category - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -133582,11 +133724,11 @@ x-webhooks: type: string enum: - closed - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -133668,7 +133810,7 @@ x-webhooks: type: string enum: - created - comment: &791 + comment: &793 type: object properties: author_association: @@ -133825,11 +133967,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -133912,12 +134054,12 @@ x-webhooks: type: string enum: - deleted - comment: *791 - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + comment: *793 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134012,12 +134154,12 @@ x-webhooks: - from required: - body - comment: *791 - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + comment: *793 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134101,11 +134243,11 @@ x-webhooks: type: string enum: - created - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134187,11 +134329,11 @@ x-webhooks: type: string enum: - deleted - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134291,11 +134433,11 @@ x-webhooks: type: string required: - from - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134377,10 +134519,10 @@ x-webhooks: type: string enum: - labeled - discussion: *790 - enterprise: *772 - installation: *773 - label: &793 + discussion: *792 + enterprise: *774 + installation: *775 + label: &795 title: Label type: object properties: @@ -134412,8 +134554,8 @@ x-webhooks: - color - default - description - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134496,11 +134638,11 @@ x-webhooks: type: string enum: - locked - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134582,11 +134724,11 @@ x-webhooks: type: string enum: - pinned - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134668,11 +134810,11 @@ x-webhooks: type: string enum: - reopened - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134757,16 +134899,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *790 - new_repository: *775 + new_discussion: *792 + new_repository: *777 required: - new_discussion - new_repository - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134849,10 +134991,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *790 - old_answer: *792 - organization: *774 - repository: *775 + discussion: *792 + old_answer: *794 + organization: *776 + repository: *777 sender: *4 required: - action @@ -134934,12 +135076,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *790 - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135022,11 +135164,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135108,11 +135250,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *790 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + discussion: *792 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -135185,7 +135327,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *772 + enterprise: *774 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -135845,9 +135987,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - forkee @@ -135993,9 +136135,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pages: description: The pages that were updated. type: array @@ -136032,7 +136174,7 @@ x-webhooks: - action - sha - html_url - repository: *775 + repository: *777 sender: *4 required: - pages @@ -136108,10 +136250,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: &795 + organization: *776 + repositories: &797 description: An array of repository objects that the installation can access. type: array @@ -136137,8 +136279,8 @@ x-webhooks: - name - full_name - private - repository: *775 - requester: *794 + repository: *777 + requester: *796 sender: *4 required: - action @@ -136213,11 +136355,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -136293,11 +136435,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -136373,10 +136515,10 @@ x-webhooks: type: string enum: - added - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories_added: &796 + organization: *776 + repositories_added: &798 description: An array of repository objects, which were added to the installation. type: array @@ -136422,15 +136564,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *775 - repository_selection: &797 + repository: *777 + repository_selection: &799 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *794 + requester: *796 sender: *4 required: - action @@ -136509,10 +136651,10 @@ x-webhooks: type: string enum: - removed - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories_added: *796 + organization: *776 + repositories_added: *798 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -136539,9 +136681,9 @@ x-webhooks: - name - full_name - private - repository: *775 - repository_selection: *797 - requester: *794 + repository: *777 + repository_selection: *799 + requester: *796 sender: *4 required: - action @@ -136620,11 +136762,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -136802,10 +136944,10 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 target_type: type: string @@ -136884,11 +137026,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *772 + enterprise: *774 installation: *22 - organization: *774 - repositories: *795 - repository: *775 + organization: *776 + repositories: *797 + repository: *777 requester: nullable: true sender: *4 @@ -137155,8 +137297,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138295,8 +138437,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -138376,7 +138518,7 @@ x-webhooks: type: string enum: - deleted - comment: &798 + comment: &800 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -138556,8 +138698,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139694,8 +139836,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -139775,7 +139917,7 @@ x-webhooks: type: string enum: - edited - changes: &827 + changes: &829 description: The changes to the comment. type: object properties: @@ -139787,9 +139929,9 @@ x-webhooks: type: string required: - from - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140927,8 +141069,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -141009,9 +141151,9 @@ x-webhooks: type: string enum: - pinned - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142153,8 +142295,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -142234,9 +142376,9 @@ x-webhooks: type: string enum: - unpinned - comment: *798 - enterprise: *772 - installation: *773 + comment: *800 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143378,8 +143520,8 @@ x-webhooks: - state - locked - assignee - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143468,9 +143610,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143559,9 +143701,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143649,9 +143791,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143740,9 +143882,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -143822,10 +143964,10 @@ x-webhooks: type: string enum: - assigned - assignee: *794 - enterprise: *772 - installation: *773 - issue: &799 + assignee: *796 + enterprise: *774 + installation: *775 + issue: &801 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144738,8 +144880,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -144819,8 +144961,8 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145873,8 +146015,8 @@ x-webhooks: required: - state - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -145953,8 +146095,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146862,8 +147004,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -146942,8 +147084,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147852,7 +147994,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &800 + milestone: &802 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147990,8 +148132,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -148090,8 +148232,8 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149004,9 +149146,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *793 - organization: *774 - repository: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149086,9 +149228,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 issue_field: type: object description: The issue field whose value was set or updated on the @@ -149242,8 +149384,8 @@ x-webhooks: - id required: - from - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149323,9 +149465,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -149406,8 +149548,8 @@ x-webhooks: nullable: true required: - id - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -149487,8 +149629,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150400,9 +150542,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *793 - organization: *774 - repository: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -150482,8 +150624,8 @@ x-webhooks: type: string enum: - locked - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151396,8 +151538,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -151476,8 +151618,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152384,9 +152526,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *800 - organization: *774 - repository: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -153834,8 +153976,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154747,8 +154889,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -154828,9 +154970,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *772 - installation: *773 - issue: &801 + enterprise: *774 + installation: *775 + issue: &803 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -155736,8 +155878,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -155816,8 +155958,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156729,8 +156871,8 @@ x-webhooks: user_view_type: type: string type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158198,11 +158340,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *772 - installation: *773 - issue: *801 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *803 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158282,12 +158424,12 @@ x-webhooks: type: string enum: - typed - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158368,7 +158510,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &830 + assignee: &832 title: User type: object nullable: true @@ -158438,11 +158580,11 @@ x-webhooks: required: - login - id - enterprise: *772 - installation: *773 - issue: *799 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *801 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158521,12 +158663,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *772 - installation: *773 - issue: *799 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *801 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -158606,8 +158748,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159518,8 +159660,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159599,11 +159741,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *772 - installation: *773 - issue: *801 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + issue: *803 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159682,12 +159824,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *772 - installation: *773 - issue: *799 + enterprise: *774 + installation: *775 + issue: *801 type: *257 - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159767,11 +159909,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159849,11 +159991,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -159963,11 +160105,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - label: *793 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + label: *795 + organization: *776 + repository: *777 sender: *4 required: - action @@ -160049,9 +160191,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: &802 + enterprise: *774 + installation: *775 + marketplace_purchase: &804 title: Marketplace Purchase type: object required: @@ -160134,8 +160276,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *774 - previous_marketplace_purchase: &803 + organization: *776 + previous_marketplace_purchase: &805 title: Marketplace Purchase type: object properties: @@ -160215,7 +160357,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -160295,10 +160437,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160381,7 +160523,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -160463,10 +160605,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160548,7 +160690,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *775 + repository: *777 sender: *4 required: - action @@ -160629,8 +160771,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 marketplace_purchase: title: Marketplace Purchase type: object @@ -160712,9 +160854,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *774 - previous_marketplace_purchase: *803 - repository: *775 + organization: *776 + previous_marketplace_purchase: *805 + repository: *777 sender: *4 required: - action @@ -160794,12 +160936,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *772 - installation: *773 - marketplace_purchase: *802 - organization: *774 - previous_marketplace_purchase: *803 - repository: *775 + enterprise: *774 + installation: *775 + marketplace_purchase: *804 + organization: *776 + previous_marketplace_purchase: *805 + repository: *777 sender: *4 required: - action @@ -160901,11 +161043,11 @@ x-webhooks: type: string required: - to - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161005,11 +161147,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161088,11 +161230,11 @@ x-webhooks: type: string enum: - removed - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161170,11 +161312,11 @@ x-webhooks: type: string enum: - added - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161250,7 +161392,7 @@ x-webhooks: required: - login - id - team: &804 + team: &806 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -161473,11 +161615,11 @@ x-webhooks: type: string enum: - removed - enterprise: *772 - installation: *773 - member: *794 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + member: *796 + organization: *776 + repository: *777 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161554,7 +161696,7 @@ x-webhooks: required: - login - id - team: *804 + team: *806 required: - action - scope @@ -161636,8 +161778,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *773 - merge_group: &806 + installation: *775 + merge_group: &808 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -161656,15 +161798,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *805 + head_commit: *807 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161750,10 +161892,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *773 - merge_group: *806 - organization: *774 - repository: *775 + installation: *775 + merge_group: *808 + organization: *776 + repository: *777 sender: *4 required: - action @@ -161826,7 +161968,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 + enterprise: *774 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -161935,16 +162077,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *773 - organization: *774 + installation: *775 + organization: *776 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -162025,11 +162167,11 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162108,9 +162250,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - milestone: &809 + enterprise: *774 + installation: *775 + milestone: &811 title: Milestone description: A collection of related issues and pull requests. type: object @@ -162247,8 +162389,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162327,11 +162469,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162441,11 +162583,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - milestone: *800 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *802 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162525,11 +162667,11 @@ x-webhooks: type: string enum: - opened - enterprise: *772 - installation: *773 - milestone: *809 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + milestone: *811 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162608,11 +162750,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *794 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + blocked_user: *796 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162691,11 +162833,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *794 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + blocked_user: *796 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162774,9 +162916,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - membership: &810 + enterprise: *774 + installation: *775 + membership: &812 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -162883,8 +163025,8 @@ x-webhooks: - role - organization_url - user - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -162962,11 +163104,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163045,8 +163187,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -163162,10 +163304,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 - user: *794 + user: *796 required: - action - invitation @@ -163243,11 +163385,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163334,11 +163476,11 @@ x-webhooks: properties: from: type: string - enterprise: *772 - installation: *773 - membership: *810 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + membership: *812 + organization: *776 + repository: *777 sender: *4 required: - action @@ -163415,9 +163557,9 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 package: description: Information about the package. type: object @@ -163916,7 +164058,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &811 + items: &813 title: Ruby Gems metadata type: object properties: @@ -164011,7 +164153,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -164087,9 +164229,9 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 package: description: Information about the package. type: object @@ -164442,7 +164584,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *811 + items: *813 source_url: type: string format: uri @@ -164512,7 +164654,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -164688,12 +164830,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *772 + enterprise: *774 id: type: integer - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - id @@ -164770,7 +164912,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &812 + personal_access_token_request: &814 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -164916,10 +165058,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *772 - organization: *774 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -164996,11 +165138,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *812 - enterprise: *772 - organization: *774 + personal_access_token_request: *814 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165076,11 +165218,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *812 - enterprise: *772 - organization: *774 + personal_access_token_request: *814 + enterprise: *774 + organization: *776 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165155,11 +165297,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *812 - organization: *774 - enterprise: *772 + personal_access_token_request: *814 + organization: *776 + enterprise: *774 sender: *4 - installation: *773 + installation: *775 required: - action - personal_access_token_request @@ -165264,7 +165406,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *813 + last_response: *815 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -165296,8 +165438,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 zen: description: Random string of GitHub zen. @@ -165542,10 +165684,10 @@ x-webhooks: - from required: - note - enterprise: *772 - installation: *773 - organization: *774 - project_card: &814 + enterprise: *774 + installation: *775 + organization: *776 + project_card: &816 title: Project Card type: object properties: @@ -165664,7 +165806,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -165745,11 +165887,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project_card: *814 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_card: *816 + repository: *777 sender: *4 required: - action @@ -165829,9 +165971,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 project_card: title: Project Card type: object @@ -165959,8 +166101,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -166054,11 +166196,11 @@ x-webhooks: - from required: - note - enterprise: *772 - installation: *773 - organization: *774 - project_card: *814 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_card: *816 + repository: *777 sender: *4 required: - action @@ -166152,9 +166294,9 @@ x-webhooks: - from required: - column_id - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 project_card: allOf: - title: Project Card @@ -166344,7 +166486,7 @@ x-webhooks: type: string required: - after_id - repository: *775 + repository: *777 sender: *4 required: - action @@ -166424,10 +166566,10 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - organization: *774 - project: &816 + enterprise: *774 + installation: *775 + organization: *776 + project: &818 title: Project type: object properties: @@ -166551,7 +166693,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -166631,10 +166773,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project_column: &815 + enterprise: *774 + installation: *775 + organization: *776 + project_column: &817 title: Project Column type: object properties: @@ -166673,7 +166815,7 @@ x-webhooks: - name - created_at - updated_at - repository: *775 + repository: *777 sender: *4 required: - action @@ -166752,18 +166894,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -166853,11 +166995,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 + repository: *777 sender: *4 required: - action @@ -166937,11 +167079,11 @@ x-webhooks: type: string enum: - moved - enterprise: *772 - installation: *773 - organization: *774 - project_column: *815 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project_column: *817 + repository: *777 sender: *4 required: - action @@ -167021,11 +167163,11 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167105,18 +167247,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - project: *816 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *807 - required: *808 + properties: *809 + required: *810 nullable: true sender: *4 required: @@ -167218,11 +167360,11 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167301,11 +167443,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 - organization: *774 - project: *816 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + project: *818 + repository: *777 sender: *4 required: - action @@ -167386,8 +167528,8 @@ x-webhooks: type: string enum: - closed - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167469,8 +167611,8 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167552,8 +167694,8 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167671,8 +167813,8 @@ x-webhooks: type: string to: type: string - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -167756,7 +167898,7 @@ x-webhooks: type: string enum: - archived - changes: &820 + changes: &822 type: object properties: archived_at: @@ -167770,9 +167912,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *773 - organization: *774 - projects_v2_item: &817 + installation: *775 + organization: *776 + projects_v2_item: &819 title: Projects v2 Item description: An item belonging to a project type: object @@ -167907,9 +168049,9 @@ x-webhooks: nullable: true to: type: string - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -167991,9 +168133,9 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168074,9 +168216,9 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168182,7 +168324,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &818 + - &820 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -168204,7 +168346,7 @@ x-webhooks: required: - id - name - - &819 + - &821 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -168238,8 +168380,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *818 - - *819 + - *820 + - *821 required: - field_value - type: object @@ -168255,9 +168397,9 @@ x-webhooks: nullable: true required: - body - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168352,9 +168494,9 @@ x-webhooks: to: type: string nullable: true - installation: *773 - organization: *774 - projects_v2_item: *817 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168437,10 +168579,10 @@ x-webhooks: type: string enum: - restored - changes: *820 - installation: *773 - organization: *774 - projects_v2_item: *817 + changes: *822 + installation: *775 + organization: *776 + projects_v2_item: *819 sender: *4 required: - action @@ -168522,8 +168664,8 @@ x-webhooks: type: string enum: - reopened - installation: *773 - organization: *774 + installation: *775 + organization: *776 projects_v2: *291 sender: *4 required: @@ -168605,14 +168747,14 @@ x-webhooks: type: string enum: - created - installation: *773 - organization: *774 - projects_v2_status_update: &823 + installation: *775 + organization: *776 + projects_v2_status_update: &825 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *821 - required: *822 + properties: *823 + required: *824 sender: *4 required: - action @@ -168693,9 +168835,9 @@ x-webhooks: type: string enum: - deleted - installation: *773 - organization: *774 - projects_v2_status_update: *823 + installation: *775 + organization: *776 + projects_v2_status_update: *825 sender: *4 required: - action @@ -168831,9 +168973,9 @@ x-webhooks: type: string format: date nullable: true - installation: *773 - organization: *774 - projects_v2_status_update: *823 + installation: *775 + organization: *776 + projects_v2_status_update: *825 sender: *4 required: - action @@ -168904,10 +169046,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - repository @@ -168984,13 +169126,13 @@ x-webhooks: type: string enum: - assigned - assignee: *794 - enterprise: *772 - installation: *773 - number: &824 + assignee: *796 + enterprise: *774 + installation: *775 + number: &826 description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -171277,7 +171419,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -171359,11 +171501,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -173645,7 +173787,7 @@ x-webhooks: - draft reason: type: string - repository: *775 + repository: *777 sender: *4 required: - action @@ -173727,11 +173869,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -176013,7 +176155,7 @@ x-webhooks: - draft reason: type: string - repository: *775 + repository: *777 sender: *4 required: - action @@ -176095,11 +176237,11 @@ x-webhooks: type: string enum: - closed - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: &825 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: &827 allOf: - *625 - type: object @@ -176163,7 +176305,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *775 + repository: *777 sender: *4 required: - action @@ -176244,12 +176386,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -176329,11 +176471,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *772 + enterprise: *774 milestone: *609 - number: *824 - organization: *774 - pull_request: &826 + number: *826 + organization: *776 + pull_request: &828 title: Pull Request type: object properties: @@ -178614,7 +178756,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -178693,11 +178835,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -180997,7 +181139,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *775 + repository: *777 sender: *4 required: - action @@ -181121,12 +181263,12 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -181206,11 +181348,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -183495,7 +183637,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -183575,11 +183717,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *772 - installation: *773 - label: *793 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + label: *795 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -185865,7 +186007,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -185946,10 +186088,10 @@ x-webhooks: type: string enum: - locked - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -188233,7 +188375,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -188313,12 +188455,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *772 + enterprise: *774 milestone: *609 - number: *824 - organization: *774 - pull_request: *826 - repository: *775 + number: *826 + organization: *776 + pull_request: *828 + repository: *777 sender: *4 required: - action @@ -188397,12 +188539,12 @@ x-webhooks: type: string enum: - opened - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -188483,12 +188625,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -188568,12 +188710,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *772 - installation: *773 - number: *824 - organization: *774 - pull_request: *825 - repository: *775 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 + pull_request: *827 + repository: *777 sender: *4 required: - action @@ -188939,9 +189081,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -191115,7 +191257,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -191195,7 +191337,7 @@ x-webhooks: type: string enum: - deleted - comment: &828 + comment: &830 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -191480,9 +191622,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -193644,7 +193786,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -193724,11 +193866,11 @@ x-webhooks: type: string enum: - edited - changes: *827 - comment: *828 - enterprise: *772 - installation: *773 - organization: *774 + changes: *829 + comment: *830 + enterprise: *774 + installation: *775 + organization: *776 pull_request: type: object properties: @@ -195893,7 +196035,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *775 + repository: *777 sender: *4 required: - action @@ -195974,9 +196116,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -198153,7 +198295,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 review: description: The review that was affected. type: object @@ -198400,9 +198542,9 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -200452,8 +200594,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 - review: &829 + repository: *777 + review: &831 description: The review that was affected. type: object properties: @@ -200686,12 +200828,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -202978,7 +203120,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_reviewer: title: User type: object @@ -203062,12 +203204,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -205361,7 +205503,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205553,12 +205695,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -207847,7 +207989,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_reviewer: title: User type: object @@ -207932,12 +208074,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *772 - installation: *773 + enterprise: *774 + installation: *775 number: description: The pull request number. type: integer - organization: *774 + organization: *776 pull_request: title: Pull Request type: object @@ -210217,7 +210359,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210398,9 +210540,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -212579,8 +212721,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 - review: *829 + repository: *777 + review: *831 sender: *4 required: - action @@ -212660,9 +212802,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -214750,7 +214892,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 sender: *4 thread: type: object @@ -215137,9 +215279,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 pull_request: title: Simple Pull Request type: object @@ -217213,7 +217355,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *775 + repository: *777 sender: *4 thread: type: object @@ -217603,10 +217745,10 @@ x-webhooks: type: string before: type: string - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -219881,7 +220023,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -219963,11 +220105,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *830 - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + assignee: *832 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -222254,7 +222396,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -222333,11 +222475,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *772 - installation: *773 - label: *793 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + label: *795 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -224614,7 +224756,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -224695,10 +224837,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *772 - installation: *773 - number: *824 - organization: *774 + enterprise: *774 + installation: *775 + number: *826 + organization: *776 pull_request: title: Pull Request type: object @@ -226967,7 +227109,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *775 + repository: *777 sender: *4 required: - action @@ -227167,7 +227309,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *772 + enterprise: *774 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -227259,8 +227401,8 @@ x-webhooks: - url - author - committer - installation: *773 - organization: *774 + installation: *775 + organization: *776 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -227846,9 +227988,9 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 registry_package: type: object properties: @@ -228294,7 +228436,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *811 + items: *813 summary: type: string tag_name: @@ -228348,7 +228490,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -228426,9 +228568,9 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 registry_package: type: object properties: @@ -228736,7 +228878,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *811 + items: *813 summary: type: string tag_name: @@ -228785,7 +228927,7 @@ x-webhooks: - owner - package_version - registry - repository: *775 + repository: *777 sender: *4 required: - action @@ -228862,10 +229004,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - release: &831 + enterprise: *774 + installation: *775 + organization: *776 + release: &833 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229183,7 +229325,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *775 + repository: *777 sender: *4 required: - action @@ -229260,11 +229402,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -229381,11 +229523,11 @@ x-webhooks: type: boolean required: - to - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -229463,9 +229605,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -229787,7 +229929,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *775 + repository: *777 sender: *4 required: - action @@ -229863,10 +230005,10 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - release: &832 + enterprise: *774 + installation: *775 + organization: *776 + release: &834 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -230185,7 +230327,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *775 + repository: *777 sender: *4 required: - action @@ -230261,11 +230403,11 @@ x-webhooks: type: string enum: - released - enterprise: *772 - installation: *773 - organization: *774 - release: *831 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *833 + repository: *777 sender: *4 required: - action @@ -230341,11 +230483,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *772 - installation: *773 - organization: *774 - release: *832 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + release: *834 + repository: *777 sender: *4 required: - action @@ -230421,10 +230563,10 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_advisory: *694 sender: *4 required: @@ -230501,10 +230643,10 @@ x-webhooks: type: string enum: - reported - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_advisory: *694 sender: *4 required: @@ -230581,10 +230723,10 @@ x-webhooks: type: string enum: - archived - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -230661,10 +230803,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -230742,10 +230884,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -230829,10 +230971,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -230944,10 +231086,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231019,10 +231161,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 status: type: string @@ -231103,10 +231245,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231183,10 +231325,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231280,10 +231422,10 @@ x-webhooks: - name required: - repository - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231363,10 +231505,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 sender: *4 required: @@ -231445,10 +231587,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 sender: *4 required: @@ -231527,10 +231669,10 @@ x-webhooks: type: string enum: - edited - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 repository_ruleset: *339 changes: type: object @@ -231835,10 +231977,10 @@ x-webhooks: - from required: - owner - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231916,10 +232058,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -231997,7 +232139,7 @@ x-webhooks: type: string enum: - create - alert: &833 + alert: &835 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -232119,10 +232261,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232328,10 +232470,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232409,11 +232551,11 @@ x-webhooks: type: string enum: - reopen - alert: *833 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *835 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232612,10 +232754,10 @@ x-webhooks: enum: - fixed - open - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232693,7 +232835,7 @@ x-webhooks: type: string enum: - assigned - alert: &834 + alert: &836 type: object properties: number: *188 @@ -232836,10 +232978,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -232917,11 +233059,11 @@ x-webhooks: type: string enum: - created - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233002,11 +233144,11 @@ x-webhooks: type: string enum: - created - alert: *834 - installation: *773 - location: *835 - organization: *774 - repository: *775 + alert: *836 + installation: *775 + location: *837 + organization: *776 + repository: *777 sender: *4 required: - location @@ -233244,11 +233386,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233326,11 +233468,11 @@ x-webhooks: type: string enum: - reopened - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233408,11 +233550,11 @@ x-webhooks: type: string enum: - resolved - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233490,12 +233632,12 @@ x-webhooks: type: string enum: - unassigned - alert: *834 + alert: *836 assignee: *4 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233573,11 +233715,11 @@ x-webhooks: type: string enum: - validated - alert: *834 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + alert: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -233703,10 +233845,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *775 - enterprise: *772 - installation: *773 - organization: *774 + repository: *777 + enterprise: *774 + installation: *775 + organization: *776 sender: *4 required: - action @@ -233784,11 +233926,11 @@ x-webhooks: type: string enum: - published - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - security_advisory: &836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + security_advisory: &838 description: The details of the security advisory, including summary, description, and severity. type: object @@ -233959,11 +234101,11 @@ x-webhooks: type: string enum: - updated - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 - security_advisory: *836 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 + security_advisory: *838 sender: *4 required: - action @@ -234036,10 +234178,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -234212,9 +234354,9 @@ x-webhooks: type: object properties: security_and_analysis: *312 - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: *357 sender: *4 required: @@ -234293,12 +234435,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: &837 + sponsorship: &839 type: object properties: created_at: @@ -234599,12 +234741,12 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - sponsorship @@ -234692,12 +234834,12 @@ x-webhooks: type: string required: - from - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -234774,17 +234916,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &838 + effective_date: &840 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: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - sponsorship @@ -234858,7 +235000,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &839 + changes: &841 type: object properties: tier: @@ -234902,13 +235044,13 @@ x-webhooks: - from required: - tier - effective_date: *838 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + effective_date: *840 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -234985,13 +235127,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *839 - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + changes: *841 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - sponsorship: *837 + sponsorship: *839 required: - action - changes @@ -235065,10 +235207,10 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235151,10 +235293,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235574,15 +235716,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *772 + enterprise: *774 id: description: The unique identifier of the status. type: integer - installation: *773 + installation: *775 name: type: string - organization: *774 - repository: *775 + organization: *776 + repository: *777 sender: *4 sha: description: The Commit SHA. @@ -235697,9 +235839,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -235788,9 +235930,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -235879,9 +236021,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -235970,9 +236112,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *773 - organization: *774 - repository: *775 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -236048,12 +236190,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 - team: &840 + team: &842 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -236276,9 +236418,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -236736,7 +236878,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -236812,9 +236954,9 @@ x-webhooks: type: string enum: - created - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -237272,7 +237414,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -237349,9 +237491,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -237809,7 +237951,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -237953,9 +238095,9 @@ x-webhooks: - from required: - permissions - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -238413,7 +238555,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - changes @@ -238491,9 +238633,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *772 - installation: *773 - organization: *774 + enterprise: *774 + installation: *775 + organization: *776 repository: title: Repository description: A git repository @@ -238951,7 +239093,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *840 + team: *842 required: - action - team @@ -239027,10 +239169,10 @@ x-webhooks: type: string enum: - started - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 required: - action @@ -239103,16 +239245,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *772 + enterprise: *774 inputs: type: object nullable: true additionalProperties: true - installation: *773 - organization: *774 + installation: *775 + organization: *776 ref: type: string - repository: *775 + repository: *777 sender: *4 workflow: type: string @@ -239194,10 +239336,10 @@ x-webhooks: type: string enum: - completed - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: allOf: @@ -239513,10 +239655,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: allOf: @@ -239855,10 +239997,10 @@ x-webhooks: type: string enum: - queued - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: type: object @@ -240072,10 +240214,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *772 - installation: *773 - organization: *774 - repository: *775 + enterprise: *774 + installation: *775 + organization: *776 + repository: *777 sender: *4 workflow_job: {"code":"deadline_exceeded","msg":"operation timed out"}