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 d5541cefa4..513e405202 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 @@ -49722,7 +49722,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -62324,7 +62324,15 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/issue" + "allOf": [ + { + "$ref": "#/components/schemas/issue" + }, + { + "type": "object", + "properties": {} + } + ] }, "examples": { "default": { @@ -118923,6 +118931,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -143703,6 +143716,41 @@ "to" ] }, + "issue-type-webhook": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "issue-event": { "title": "Issue Event", "description": "Issue Event", @@ -143777,6 +143825,12 @@ "rename": { "$ref": "#/components/schemas/issue-event-rename" }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, "author_association": { "$ref": "#/components/schemas/author-association" }, @@ -144770,6 +144824,163 @@ "performed_via_github_app" ] }, + "issue-type-added-issue-event": { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-removed-issue-event": { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-changed-issue-event": { + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, "issue-event-for-issue": { "title": "Issue Event for Issue", "description": "Issue Event for Issue", @@ -144818,6 +145029,15 @@ }, { "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -145712,6 +145932,15 @@ }, { "$ref": "#/components/schemas/state-change-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -319461,12 +319690,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -319478,18 +319709,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", 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 f6ea513ae8..31a1bbadeb 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 @@ -36505,7 +36505,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -45937,7 +45937,10 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/issue" + allOf: + - "$ref": "#/components/schemas/issue" + - type: object + properties: {} examples: default: "$ref": "#/components/examples/issue" @@ -86937,6 +86940,10 @@ components: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -106306,6 +106313,34 @@ components: required: - from - to + issue-type-webhook: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name issue-event: title: Issue Event description: Issue Event @@ -106361,6 +106396,10 @@ components: "$ref": "#/components/schemas/issue-event-project-card" rename: "$ref": "#/components/schemas/issue-event-rename" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" author_association: "$ref": "#/components/schemas/author-association" lock_reason: @@ -107091,6 +107130,123 @@ components: - commit_url - created_at - performed_via_github_app + issue-type-added-issue-event: + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-removed-issue-event: + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-changed-issue-event: + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app issue-event-for-issue: title: Issue Event for Issue description: Issue Event for Issue @@ -107110,6 +107266,9 @@ components: - "$ref": "#/components/schemas/moved-column-in-project-issue-event" - "$ref": "#/components/schemas/removed-from-project-issue-event" - "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" timeline-comment-event: title: Timeline Comment Event description: Timeline Comment Event @@ -107764,6 +107923,9 @@ components: - "$ref": "#/components/schemas/timeline-assigned-issue-event" - "$ref": "#/components/schemas/timeline-unassigned-issue-event" - "$ref": "#/components/schemas/state-change-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" deploy-key: title: Deploy Key description: An SSH key granting access to a single repository. @@ -241299,10 +241461,12 @@ components: issue-field-value-items: value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -241311,14 +241475,17 @@ components: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend 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 ac92d6ab1f..28608d8ffa 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 @@ -49649,7 +49649,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -62241,7 +62241,15 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/issue" + "allOf": [ + { + "$ref": "#/components/schemas/issue" + }, + { + "type": "object", + "properties": {} + } + ] }, "examples": { "default": { @@ -118731,6 +118739,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -143128,6 +143141,41 @@ "to" ] }, + "issue-type-webhook": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "issue-event": { "title": "Issue Event", "description": "Issue Event", @@ -143202,6 +143250,12 @@ "rename": { "$ref": "#/components/schemas/issue-event-rename" }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, "author_association": { "$ref": "#/components/schemas/author-association" }, @@ -144195,6 +144249,163 @@ "performed_via_github_app" ] }, + "issue-type-added-issue-event": { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-removed-issue-event": { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-changed-issue-event": { + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, "issue-event-for-issue": { "title": "Issue Event for Issue", "description": "Issue Event for Issue", @@ -144243,6 +144454,15 @@ }, { "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -145137,6 +145357,15 @@ }, { "$ref": "#/components/schemas/state-change-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -318666,12 +318895,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -318683,18 +318914,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", 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 c96b636e31..bd6753637a 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 @@ -36445,7 +36445,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -45865,7 +45865,10 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/issue" + allOf: + - "$ref": "#/components/schemas/issue" + - type: object + properties: {} examples: default: "$ref": "#/components/examples/issue" @@ -86774,6 +86777,10 @@ components: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -105849,6 +105856,34 @@ components: required: - from - to + issue-type-webhook: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name issue-event: title: Issue Event description: Issue Event @@ -105904,6 +105939,10 @@ components: "$ref": "#/components/schemas/issue-event-project-card" rename: "$ref": "#/components/schemas/issue-event-rename" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" author_association: "$ref": "#/components/schemas/author-association" lock_reason: @@ -106634,6 +106673,123 @@ components: - commit_url - created_at - performed_via_github_app + issue-type-added-issue-event: + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-removed-issue-event: + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-changed-issue-event: + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app issue-event-for-issue: title: Issue Event for Issue description: Issue Event for Issue @@ -106653,6 +106809,9 @@ components: - "$ref": "#/components/schemas/moved-column-in-project-issue-event" - "$ref": "#/components/schemas/removed-from-project-issue-event" - "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" timeline-comment-event: title: Timeline Comment Event description: Timeline Comment Event @@ -107307,6 +107466,9 @@ components: - "$ref": "#/components/schemas/timeline-assigned-issue-event" - "$ref": "#/components/schemas/timeline-unassigned-issue-event" - "$ref": "#/components/schemas/state-change-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" deploy-key: title: Deploy Key description: An SSH key granting access to a single repository. @@ -240580,10 +240742,12 @@ components: issue-field-value-items: value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -240592,14 +240756,17 @@ components: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index de280fabbc..0274b009c6 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -49982,7 +49982,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -62612,7 +62612,15 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/issue" + "allOf": [ + { + "$ref": "#/components/schemas/issue" + }, + { + "type": "object", + "properties": {} + } + ] }, "examples": { "default": { @@ -119534,6 +119542,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -144913,6 +144926,41 @@ "to" ] }, + "issue-type-webhook": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "issue-event": { "title": "Issue Event", "description": "Issue Event", @@ -144987,6 +145035,12 @@ "rename": { "$ref": "#/components/schemas/issue-event-rename" }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, "author_association": { "$ref": "#/components/schemas/author-association" }, @@ -145980,6 +146034,163 @@ "performed_via_github_app" ] }, + "issue-type-added-issue-event": { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-removed-issue-event": { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-changed-issue-event": { + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, "issue-event-for-issue": { "title": "Issue Event for Issue", "description": "Issue Event for Issue", @@ -146028,6 +146239,15 @@ }, { "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -146922,6 +147142,15 @@ }, { "$ref": "#/components/schemas/state-change-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -321668,12 +321897,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -321685,18 +321916,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 26ab99a5c0..5d4d332682 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -36643,7 +36643,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -46115,7 +46115,10 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/issue" + allOf: + - "$ref": "#/components/schemas/issue" + - type: object + properties: {} examples: default: "$ref": "#/components/examples/issue" @@ -87335,6 +87338,10 @@ components: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -107165,6 +107172,34 @@ components: required: - from - to + issue-type-webhook: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name issue-event: title: Issue Event description: Issue Event @@ -107220,6 +107255,10 @@ components: "$ref": "#/components/schemas/issue-event-project-card" rename: "$ref": "#/components/schemas/issue-event-rename" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" author_association: "$ref": "#/components/schemas/author-association" lock_reason: @@ -107950,6 +107989,123 @@ components: - commit_url - created_at - performed_via_github_app + issue-type-added-issue-event: + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-removed-issue-event: + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-changed-issue-event: + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app issue-event-for-issue: title: Issue Event for Issue description: Issue Event for Issue @@ -107969,6 +108125,9 @@ components: - "$ref": "#/components/schemas/moved-column-in-project-issue-event" - "$ref": "#/components/schemas/removed-from-project-issue-event" - "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" timeline-comment-event: title: Timeline Comment Event description: Timeline Comment Event @@ -108623,6 +108782,9 @@ components: - "$ref": "#/components/schemas/timeline-assigned-issue-event" - "$ref": "#/components/schemas/timeline-unassigned-issue-event" - "$ref": "#/components/schemas/state-change-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" deploy-key: title: Deploy Key description: An SSH key granting access to a single repository. @@ -242737,10 +242899,12 @@ components: issue-field-value-items: value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -242749,14 +242913,17 @@ components: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend 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 5d7dcb48b2..26ab194cc5 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 @@ -35645,6 +35645,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -39006,6 +39011,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -57706,6 +57716,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -64874,6 +64889,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -68235,6 +68255,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -136897,6 +136922,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -140258,6 +140288,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -156018,6 +156053,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -183348,6 +183388,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -192874,6 +192919,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -309187,7 +309237,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -362231,6 +362281,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -365592,6 +365647,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -390534,6 +390594,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -394004,6 +394069,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -402468,6 +402538,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -403413,6 +403488,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -407088,6 +407233,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -408033,6 +408183,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -411583,6 +411803,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -412390,551 +412615,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", - "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": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -413059,409 +412811,52 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "nullable": true - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" - }, - "license": { - "title": "License Simple", - "description": "License Simple", - "type": "object", - "properties": { - "key": { - "type": "string", - "example": "mit" - }, - "name": { - "type": "string", - "example": "MIT License" - }, - "url": { - "type": "string", - "nullable": true, - "format": "uri", - "example": "https://api.github.com/licenses/mit" - }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" - }, - "node_id": { - "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" - }, - "html_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "key", - "name", - "url", - "spdx_id", - "node_id" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "forks": { - "type": "integer" - }, - "permissions": { - "type": "object", - "properties": { - "admin": { - "type": "boolean" - }, - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - } - }, - "required": [ - "admin", - "pull", - "push" - ] + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "owner": { + "assignee": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -413583,561 +412978,190 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", + ], "nullable": true }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { + "assignees": { "type": "array", "items": { - "type": "string" + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] } }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_downloads": { - "description": "Whether downloads are enabled.", - "default": true, - "type": "boolean", - "example": true, - "deprecated": true - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" - ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", - "nullable": true - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { - "type": "string" - }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "use_squash_pr_title_as_default": { - "type": "boolean", - "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", - "default": false, - "deprecated": true - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" - }, - "master_branch": { - "type": "string" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" - }, - "code_search_index_status": { + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", "type": "object", - "description": "The status of the code search index for this repository", "properties": { - "lexical_search_ok": { - "type": "boolean" + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" }, - "lexical_commit_sha": { + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" + }, + "labels_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" + }, + "id": { + "type": "integer", + "example": 1002604 + }, + "node_id": { + "type": "string", + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + }, + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", + "type": "string", + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", "type": "string" - } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_downloads", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -414259,294 +413283,123 @@ "subscriptions_url", "type", "url" - ] + ], + "nullable": true }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", + }, + "required": [ + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", + "url", + "created_at", + "updated_at" + ], "nullable": true }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" + "locked": { + "type": "boolean" }, - "created_at": { + "active_lock_reason": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "comments": { + "type": "integer" }, - "permissions": { - "description": "The set of permissions for the GitHub app", + "pull_request": { "type": "object", "properties": { - "issues": { - "type": "string" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": true }, - "checks": { - "type": "string" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "metadata": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "contents": { - "type": "string" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "deployments": { - "type": "string" + "url": { + "type": "string", + "format": "uri", + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } + "required": [ + "diff_url", + "html_url", + "patch_url", + "url" + ] }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { + "closed_at": { "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" + "format": "date-time", + "nullable": true }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", + "created_at": { "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" + "format": "date-time" }, - "html_url": { + "updated_at": { "type": "string", - "format": "uri" + "format": "date-time" }, - "user": { + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -414671,34 +413524,818 @@ ], "nullable": true }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_html": { + "type": "string" }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_text": { + "type": "string" }, - "issue_url": { + "timeline_url": { "type": "string", "format": "uri" }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true + }, + "fork": { + "type": "boolean" + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" + }, + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" + }, + "assignees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" + }, + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" + }, + "branches_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" + }, + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/events" + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/forks" + }, + "git_commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" + }, + "git_refs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" + }, + "git_tags_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" + }, + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/languages" + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/merges" + }, + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" + }, + "statuses_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { + "type": "boolean" + }, + "has_downloads": { + "description": "Whether downloads are enabled.", + "default": true, + "type": "boolean", + "example": true, + "deprecated": true + }, + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", + "type": "string", + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" + }, + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "use_squash_pr_title_as_default": { + "type": "boolean", + "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", + "default": false, + "deprecated": true + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "master_branch": { + "type": "string" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_downloads", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" ] }, "performed_via_github_app": { @@ -414849,532 +414486,1133 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true - } - }, - "required": [ - "id", - "node_id", - "html_url", - "issue_url", - "user", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 - } - ], - "nullable": true - }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", "type": "object", "properties": { - "id": { - "description": "Unique identifier for the option.", + "issue_field_id": { + "description": "Unique identifier for the issue field.", "type": "integer", "format": "int64", "example": 1 }, - "name": { - "description": "The name of the option", + "issue_field_name": { + "description": "The human-readable name of the issue field.", "type": "string", - "example": "High" + "example": "Priority" }, - "color": { - "description": "The color of the option", + "node_id": { "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ], - "nullable": true - }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "required": [ - "id", - "name", - "color" - ] + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } }, - "nullable": true + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } + } + }, + "required": [ + "assignee", + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", + "id", + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] + }, + { + "type": "object", + "properties": {} } - }, - "required": [ - "assignee", - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" ] }, "examples": { @@ -418683,6 +418921,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -421918,6 +422161,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -427099,6 +427347,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -430421,6 +430674,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -433821,6 +434079,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -437241,6 +437504,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -440616,8 +440884,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -441076,20 +441830,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -441102,8 +441860,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -441562,24 +442320,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -441592,8 +442793,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -442525,8 +443726,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -442985,7 +444186,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -443109,217 +444361,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -443442,10 +445346,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -443458,8 +445716,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -443918,32 +446176,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -443956,8 +446222,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -444416,14 +446682,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -444436,8 +446728,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -444896,40 +447188,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -444942,8 +447238,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -445402,40 +447698,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -445448,8 +447748,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -445908,546 +448208,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -446625,6 +448459,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -446732,12 +448571,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -446749,18 +448590,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -447021,6 +448865,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -447128,12 +448977,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -447145,18 +448996,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -447527,6 +449381,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -447634,12 +449493,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -447651,18 +449512,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -452633,6 +454497,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -456928,6 +458797,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -460252,6 +462126,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -463552,6 +465431,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -466951,6 +468835,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -478575,6 +480464,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -480878,132 +482772,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -481012,13 +484405,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -481477,12 +484869,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -579255,6 +582715,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -620720,6 +624185,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -648642,6 +652112,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -665494,6 +668969,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -668855,6 +672335,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -675894,6 +679379,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -679255,6 +682745,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -686304,6 +689799,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -689665,6 +693165,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -706767,6 +710272,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -720946,6 +724456,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -724307,6 +727822,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -731342,6 +734862,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -734703,6 +738228,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -930218,6 +933748,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -933210,6 +936745,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -938503,6 +942043,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -941495,6 +945040,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -946788,6 +950338,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -950524,6 +954079,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -955073,6 +958633,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -958809,6 +962374,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -962474,6 +966044,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -966213,6 +969788,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -970144,6 +973724,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -973893,6 +977478,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -977815,6 +981405,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -981591,6 +985186,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -985531,6 +989131,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -989373,6 +992978,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -993172,6 +996782,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -996897,6 +1000512,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -999997,6 +1003617,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1002798,6 +1006423,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1007228,6 +1010858,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1010980,6 +1014615,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1014599,6 +1018239,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1017416,6 +1021061,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1021150,6 +1024800,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1025042,6 +1028697,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1028776,6 +1032436,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1032573,6 +1036238,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1036277,6 +1039947,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1040010,6 +1043685,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1401255,6 +1404935,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1404991,6 +1408676,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1409541,6 +1413231,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1413277,6 +1416972,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1417827,6 +1421527,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1421563,6 +1425268,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1426113,6 +1429823,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1429849,6 +1433564,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" 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 28d28ad1de..4e0323a8ca 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 @@ -1030,7 +1030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &678 + - &682 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -14098,7 +14098,7 @@ paths: properties: action: type: string - discussion: &771 + discussion: &775 title: Discussion description: A Discussion in a repository. type: object @@ -14843,7 +14843,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &689 + sub_issues_summary: &693 title: Sub-issues Summary type: object properties: @@ -14930,7 +14930,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &584 + properties: &585 pinned_at: type: string format: date-time @@ -14942,7 +14942,7 @@ paths: properties: *20 required: *21 nullable: true - required: &585 + required: &586 - pinned_at - pinned_by nullable: true @@ -14956,7 +14956,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &690 + issue_dependencies_summary: &694 title: Issue Dependencies Summary type: object properties: @@ -14975,7 +14975,7 @@ paths: - total_blocking issue_field_values: type: array - items: &568 + items: &569 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14986,6 +14986,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -15764,7 +15769,7 @@ paths: type: string release: allOf: - - &618 + - &622 title: Release description: A release. type: object @@ -15835,7 +15840,7 @@ paths: author: *4 assets: type: array - items: &619 + items: &623 title: Release Asset description: Data related to a release. type: object @@ -16426,7 +16431,7 @@ paths: url: type: string format: uri - user: &696 + user: &700 title: Public User description: Public User type: object @@ -19830,7 +19835,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &594 + - &598 name: all description: If `true`, show notifications marked as read. in: query @@ -19838,7 +19843,7 @@ paths: schema: type: boolean default: false - - &595 + - &599 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19848,7 +19853,7 @@ paths: type: boolean default: false - *95 - - &596 + - &600 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20378,7 +20383,7 @@ paths: - url - subscription_url examples: - default: &597 + default: &601 value: - id: '1' repository: @@ -22259,7 +22264,7 @@ paths: parameters: - *78 - *124 - - &747 + - &751 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 @@ -22371,7 +22376,7 @@ paths: - *124 - *125 - *126 - - &748 + - &752 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22379,7 +22384,7 @@ paths: schema: type: string - *129 - - &749 + - &753 name: sku description: The SKU to query for usage. in: query @@ -29892,12 +29897,12 @@ paths: required: - subject_digests examples: - default: &728 + default: &732 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &729 + withPredicateType: &733 value: subject_digests: - sha256:abc123 @@ -29955,7 +29960,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &730 + default: &734 value: attestations_subject_digests: - sha256:abc: @@ -41980,7 +41985,7 @@ paths: parameters: - *78 - *269 - - &711 + - &715 name: repo_name description: repo_name parameter in: path @@ -43021,7 +43026,7 @@ paths: - nuget - container - *78 - - &712 + - &716 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43062,7 +43067,7 @@ paths: default: *276 '403': *29 '401': *25 - '400': &714 + '400': &718 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45159,7 +45164,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &802 + properties: &806 id: type: number description: The unique identifier of the status update. @@ -45207,7 +45212,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &803 + required: &807 - id - node_id - created_at @@ -45647,7 +45652,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &604 + auto_merge: &608 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46025,7 +46030,7 @@ paths: - updated_at - project_url examples: - default: &734 + default: &738 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46202,7 +46207,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &735 + items: &739 type: object properties: name: @@ -46239,7 +46244,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &736 + iteration_configuration: &740 type: object description: The configuration for iteration fields. properties: @@ -46289,7 +46294,7 @@ paths: value: name: Due date data_type: date - single_select_field: &737 + single_select_field: &741 summary: Create a single select field value: name: Priority @@ -46316,7 +46321,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &738 + iteration_field: &742 summary: Create an iteration field value: name: Sprint @@ -46342,7 +46347,7 @@ paths: application/json: schema: *297 examples: - text_field: &739 + text_field: &743 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46351,7 +46356,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: &740 + number_field: &744 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46360,7 +46365,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: &741 + date_field: &745 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46369,7 +46374,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: &742 + single_select_field: &746 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46403,7 +46408,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &743 + iteration_field: &747 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46449,7 +46454,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *293 - - &744 + - &748 name: field_id description: The unique identifier of the field. in: path @@ -46464,7 +46469,7 @@ paths: application/json: schema: *297 examples: - default: &745 + default: &749 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47661,7 +47666,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &725 + schema: &729 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47838,7 +47843,7 @@ paths: parameters: - *293 - *78 - - &746 + - &750 name: view_number description: The number that identifies the project view. in: path @@ -49805,7 +49810,7 @@ paths: - *78 - *17 - *19 - - &626 + - &630 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50087,7 +50092,7 @@ paths: - repository_property rules: type: array - items: &627 + items: &631 title: Repository Rule type: object description: A repository rule. @@ -50149,7 +50154,7 @@ paths: type: string enum: - required_linear_history - - &625 + - &629 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51051,7 +51056,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &628 + - &632 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -51066,7 +51071,7 @@ paths: in: query schema: type: string - - &629 + - &633 name: time_period description: |- The time period to filter by. @@ -51082,14 +51087,14 @@ paths: - week - month default: day - - &630 + - &634 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &631 + - &635 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51102,7 +51107,7 @@ paths: - bypass - all default: all - - &632 + - &636 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -51125,7 +51130,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &637 title: Rule Suites description: Response type: array @@ -51180,7 +51185,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &634 + default: &638 value: - id: 21 actor_id: 12 @@ -51224,7 +51229,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &635 + - &639 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51240,7 +51245,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &640 title: Rule Suite description: Response type: object @@ -51339,7 +51344,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &637 + default: &641 value: id: 21 actor_id: 12 @@ -51586,7 +51591,7 @@ paths: type: string format: date-time examples: - default: &639 + default: &643 value: - version_id: 3 actor: @@ -51639,7 +51644,7 @@ paths: description: Response content: application/json: - schema: &640 + schema: &644 allOf: - *342 - type: object @@ -51711,7 +51716,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &641 + - &645 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51722,7 +51727,7 @@ paths: enum: - open - resolved - - &642 + - &646 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51732,7 +51737,7 @@ paths: required: false schema: type: string - - &643 + - &647 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51743,7 +51748,7 @@ paths: required: false schema: type: string - - &644 + - &648 name: exclude_providers in: query description: |- @@ -51754,7 +51759,7 @@ paths: required: false schema: type: string - - &645 + - &649 name: providers in: query description: |- @@ -51765,7 +51770,7 @@ paths: required: false schema: type: string - - &646 + - &650 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51774,7 +51779,7 @@ paths: required: false schema: type: string - - &647 + - &651 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51793,7 +51798,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &648 + - &652 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -51808,7 +51813,7 @@ paths: - *62 - *19 - *17 - - &649 + - &653 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -51818,7 +51823,7 @@ paths: required: false schema: type: string - - &650 + - &654 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -51828,7 +51833,7 @@ paths: required: false schema: type: string - - &651 + - &655 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51837,7 +51842,7 @@ paths: required: false schema: type: string - - &652 + - &656 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51846,7 +51851,7 @@ paths: schema: type: boolean default: false - - &653 + - &657 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51855,7 +51860,7 @@ paths: schema: type: boolean default: false - - &654 + - &658 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51864,7 +51869,7 @@ paths: schema: type: boolean default: false - - &655 + - &659 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51901,14 +51906,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &656 + state: &660 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &657 + resolution: &661 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52025,8 +52030,8 @@ paths: pull request. ' - oneOf: &658 - - &660 + oneOf: &662 + - &664 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52084,7 +52089,7 @@ paths: - blob_url - commit_sha - commit_url - - &661 + - &665 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -52139,7 +52144,7 @@ paths: - page_url - commit_sha - commit_url - - &662 + - &666 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52159,7 +52164,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &663 + - &667 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52179,7 +52184,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &664 + - &668 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52199,7 +52204,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &665 + - &669 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52213,7 +52218,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &666 + - &670 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52227,7 +52232,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &667 + - &671 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52241,7 +52246,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &668 + - &672 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -52261,7 +52266,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &669 + - &673 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -52281,7 +52286,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &670 + - &674 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -52301,7 +52306,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &671 + - &675 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -52321,7 +52326,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &672 + - &676 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52840,7 +52845,7 @@ paths: application/json: schema: type: array - items: &676 + items: &680 description: A repository security advisory. type: object properties: @@ -53131,7 +53136,7 @@ paths: - private_fork additionalProperties: false examples: - default: &677 + default: &681 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55049,7 +55054,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &692 + response-if-user-is-a-team-maintainer: &696 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55114,7 +55119,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: &693 + response-if-users-membership-with-team-is-now-pending: &697 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55228,7 +55233,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &694 + schema: &698 title: Team Repository description: A team's access to a repository. type: object @@ -55885,7 +55890,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: &695 + response-if-child-teams-exist: &699 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61538,7 +61543,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &765 + properties: &769 url: type: string format: uri @@ -61623,7 +61628,7 @@ paths: nullable: true properties: *83 required: *84 - required: &766 + required: &770 - id - node_id - sha @@ -67718,7 +67723,7 @@ paths: check. type: array items: *93 - deployment: &758 + deployment: &762 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68630,7 +68635,7 @@ paths: type: string format: date-time nullable: true - head_commit: &786 + head_commit: &790 title: Simple Commit description: A commit. type: object @@ -70386,7 +70391,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -73117,14 +73122,14 @@ paths: type: integer machines: type: array - items: &701 + items: &705 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *475 required: *476 examples: - default: &702 + default: &706 value: total_count: 2 machines: @@ -74762,7 +74767,7 @@ paths: type: array items: *487 examples: - default: &611 + default: &615 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75053,7 +75058,7 @@ paths: type: array items: *491 examples: - default: &603 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -75611,7 +75616,7 @@ paths: application/json: schema: *487 examples: - default: &590 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76270,7 +76275,7 @@ paths: application/json: schema: type: array - items: &681 + items: &685 title: Status description: The status of a commit. type: object @@ -77239,7 +77244,7 @@ paths: - size - type - url - - &616 + - &620 title: Content File description: Content File type: object @@ -77853,7 +77858,7 @@ paths: items: type: object properties: - placeholder_id: &673 + placeholder_id: &677 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83897,7 +83902,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &794 + last_response: &798 title: Hook Response type: object properties: @@ -84949,7 +84954,7 @@ paths: parameters: - *354 - *355 - - &723 + - &727 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85534,7 +85539,7 @@ paths: type: array items: *554 examples: - default: &716 + default: &720 value: - id: 1 repository: @@ -85980,7 +85985,7 @@ paths: type: array items: *88 examples: - default: &567 + default: &568 value: - id: 1 node_id: MDU6SXNzdWUx @@ -86268,7 +86273,7 @@ paths: application/json: schema: *88 examples: - default: &564 + default: &565 value: id: 1 node_id: MDU6SXNzdWUx @@ -86477,7 +86482,7 @@ paths: type: array items: *557 examples: - default: &566 + default: &567 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -86932,7 +86937,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: Issue Event description: Issue Event type: object @@ -87085,6 +87090,35 @@ paths: required: - from - to + issue_type: &563 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *563 author_association: *85 lock_reason: type: string @@ -87296,7 +87330,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -87525,7 +87559,7 @@ paths: parameters: - *354 - *355 - - &565 + - &566 name: issue_number description: The number that identifies the issue. in: path @@ -87541,7 +87575,7 @@ paths: examples: default: summary: Issue - value: *564 + value: *565 pinned_comment: summary: Issue with pinned comment value: @@ -87769,7 +87803,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -87897,9 +87931,13 @@ paths: description: Response content: application/json: - schema: *88 + schema: + allOf: + - *88 + - type: object + properties: {} examples: - default: *564 + default: *565 '422': *15 '503': *122 '403': *29 @@ -87925,7 +87963,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -87953,7 +87991,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87971,7 +88009,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: content: application/json: @@ -87998,7 +88036,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88022,7 +88060,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: assignee in: path required: true @@ -88064,7 +88102,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *95 - *17 - *19 @@ -88077,7 +88115,7 @@ paths: type: array items: *557 examples: - default: *566 + default: *567 headers: Link: *70 '404': *6 @@ -88112,7 +88150,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -88173,7 +88211,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -88185,7 +88223,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '301': *358 @@ -88220,7 +88258,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -88244,7 +88282,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -88285,7 +88323,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -88299,7 +88337,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '301': *358 '400': *14 '401': *25 @@ -88333,7 +88371,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -88345,7 +88383,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '301': *358 @@ -88369,7 +88407,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -88383,7 +88421,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &571 + - &572 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -88437,7 +88475,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -88573,7 +88611,7 @@ paths: - performed_via_github_app - assignee - assigner - - &573 + - &574 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -88624,7 +88662,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &575 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -88675,7 +88713,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -88729,7 +88767,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &577 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -88776,7 +88814,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -88823,7 +88861,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -88883,7 +88921,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Locked Issue Event description: Locked Issue Event type: object @@ -88931,7 +88969,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -88997,7 +89035,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &582 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -89063,7 +89101,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &583 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -89129,7 +89167,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &583 + - &584 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89185,6 +89223,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &587 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *563 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &588 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + prev_issue_type: *563 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &589 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *563 + prev_issue_type: *563 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -89239,7 +89414,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -89249,15 +89424,17 @@ paths: application/json: schema: type: array - items: *568 + items: *569 examples: - default: &569 + default: &570 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -89266,14 +89443,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -89319,7 +89499,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89389,9 +89569,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *568 + items: *569 examples: - default: *569 + default: *570 '400': *14 '403': *29 '404': *6 @@ -89429,7 +89609,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89494,9 +89674,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *568 + items: *569 examples: - default: *569 + default: *570 '400': *14 '403': *29 '404': *6 @@ -89529,7 +89709,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *256 responses: '204': @@ -89557,7 +89737,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -89569,7 +89749,7 @@ paths: type: array items: *87 examples: - default: &570 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89607,7 +89787,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89652,7 +89832,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 '301': *358 '404': *6 '410': *556 @@ -89674,7 +89854,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89736,7 +89916,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 '301': *358 '404': *6 '410': *556 @@ -89758,7 +89938,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '204': description: Response @@ -89785,7 +89965,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: name in: path required: true @@ -89833,7 +90013,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89881,7 +90061,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '204': description: Response @@ -89913,7 +90093,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '200': description: Response @@ -89921,7 +90101,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '301': *358 '404': *6 '410': *556 @@ -89943,7 +90123,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -89995,7 +90175,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -90060,7 +90240,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *560 responses: '204': @@ -90092,7 +90272,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -90116,7 +90296,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -90151,7 +90331,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -90163,7 +90343,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '404': *6 @@ -90197,7 +90377,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -90226,7 +90406,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -90255,7 +90435,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -90288,7 +90468,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '403': *29 '404': *6 '422': *7 @@ -90312,7 +90492,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -90327,7 +90507,6 @@ paths: description: Timeline Event type: object anyOf: - - *571 - *572 - *573 - *574 @@ -90340,6 +90519,7 @@ paths: - *581 - *582 - *583 + - *584 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -90400,8 +90580,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true required: - event @@ -90656,7 +90836,7 @@ paths: type: string comments: type: array - items: &605 + items: &609 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -91005,6 +91185,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *587 + - *588 + - *589 examples: default: value: @@ -91188,7 +91371,7 @@ paths: application/json: schema: type: array - items: &586 + items: &590 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -91291,9 +91474,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *590 examples: - default: &587 + default: &591 value: id: 1 key: ssh-rsa AAA... @@ -91329,7 +91512,7 @@ paths: parameters: - *354 - *355 - - &588 + - &592 name: key_id description: The unique identifier of the key. in: path @@ -91341,9 +91524,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *590 examples: - default: *587 + default: *591 '404': *6 x-github: githubCloudOnly: false @@ -91363,7 +91546,7 @@ paths: parameters: - *354 - *355 - - *588 + - *592 responses: '204': description: Response @@ -91396,7 +91579,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 headers: Link: *70 '404': *6 @@ -91456,7 +91639,7 @@ paths: application/json: schema: *87 examples: - default: &589 + default: &593 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91502,7 +91685,7 @@ paths: application/json: schema: *87 examples: - default: *589 + default: *593 '404': *6 x-github: githubCloudOnly: false @@ -91902,7 +92085,7 @@ paths: application/json: schema: *487 examples: - default: *590 + default: *594 '204': description: Response when already merged '404': @@ -91969,7 +92152,7 @@ paths: application/json: schema: type: array - items: &591 + items: &595 title: Milestone description: A collection of related issues and pull requests. type: object @@ -92071,9 +92254,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: &592 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -92134,7 +92317,7 @@ paths: parameters: - *354 - *355 - - &593 + - &597 name: milestone_number description: The number that identifies the milestone. in: path @@ -92146,9 +92329,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: *592 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -92167,7 +92350,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 requestBody: required: false content: @@ -92205,9 +92388,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: *592 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92225,7 +92408,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 responses: '204': description: Response @@ -92248,7 +92431,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 - *17 - *19 responses: @@ -92260,7 +92443,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 headers: Link: *70 x-github: @@ -92281,10 +92464,10 @@ paths: parameters: - *354 - *355 - - *594 - - *595 + - *598 + - *599 - *95 - - *596 + - *600 - *17 - *19 responses: @@ -92296,7 +92479,7 @@ paths: type: array items: *115 examples: - default: *597 + default: *601 headers: Link: *70 x-github: @@ -92386,7 +92569,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &602 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -92511,7 +92694,7 @@ paths: - custom_404 - public examples: - default: &599 + default: &603 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -92607,9 +92790,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *602 examples: - default: *599 + default: *603 '422': *15 '409': *54 x-github: @@ -92770,7 +92953,7 @@ paths: application/json: schema: type: array - items: &600 + items: &604 title: Page Build description: Page Build type: object @@ -92917,9 +93100,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *604 examples: - default: &601 + default: &605 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -92979,9 +93162,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *604 examples: - default: *601 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93109,7 +93292,7 @@ paths: parameters: - *354 - *355 - - &602 + - &606 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -93169,7 +93352,7 @@ paths: parameters: - *354 - *355 - - *602 + - *606 responses: '204': *61 '404': *6 @@ -93704,7 +93887,7 @@ paths: type: array items: *491 examples: - default: *603 + default: *607 headers: Link: *70 '304': *37 @@ -93802,7 +93985,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &611 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -94013,7 +94196,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *604 + auto_merge: *608 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -94105,7 +94288,7 @@ paths: - merged_by - review_comments examples: - default: &608 + default: &612 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -94662,9 +94845,9 @@ paths: application/json: schema: type: array - items: *605 + items: *609 examples: - default: &610 + default: &614 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94749,9 +94932,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: - default: &606 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94850,9 +95033,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: - default: *606 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95055,7 +95238,7 @@ paths: parameters: - *354 - *355 - - &609 + - &613 name: pull_number description: The number that identifies the pull request. in: path @@ -95068,9 +95251,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *607 + schema: *611 examples: - default: *608 + default: *612 '304': *37 '404': *6 '406': @@ -95107,7 +95290,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -95149,9 +95332,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *611 examples: - default: *608 + default: *612 '422': *15 '403': *29 x-github: @@ -95175,7 +95358,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -95277,7 +95460,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -95298,9 +95481,9 @@ paths: application/json: schema: type: array - items: *605 + items: *609 examples: - default: *610 + default: *614 headers: Link: *70 x-github: @@ -95335,7 +95518,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -95440,7 +95623,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: example-for-a-multi-line-comment: value: @@ -95530,7 +95713,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *104 requestBody: required: true @@ -95553,7 +95736,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: default: value: @@ -95641,7 +95824,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -95653,7 +95836,7 @@ paths: type: array items: *487 examples: - default: *611 + default: *615 headers: Link: *70 x-github: @@ -95685,7 +95868,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -95735,7 +95918,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 responses: '204': description: Response if pull request has been merged @@ -95760,7 +95943,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -95873,7 +96056,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 responses: '200': description: Response @@ -95950,7 +96133,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -96525,7 +96708,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -97066,7 +97249,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -97076,7 +97259,7 @@ paths: application/json: schema: type: array - items: &612 + items: &616 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -97229,7 +97412,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -97315,9 +97498,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: &614 + default: &618 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97382,8 +97565,8 @@ paths: parameters: - *354 - *355 - - *609 - - &613 + - *613 + - &617 name: review_id description: The unique identifier of the review. in: path @@ -97395,9 +97578,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: &615 + default: &619 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -97458,8 +97641,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -97482,7 +97665,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: default: value: @@ -97546,16 +97729,16 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 responses: '200': description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: *614 + default: *618 '422': *7 '404': *6 x-github: @@ -97584,8 +97767,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 - *17 - *19 responses: @@ -97822,8 +98005,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -97851,7 +98034,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: default: value: @@ -97916,8 +98099,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -97952,9 +98135,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: *615 + default: *619 '404': *6 '422': *7 '403': *29 @@ -97978,7 +98161,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -98055,9 +98238,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *620 examples: - default: &617 + default: &621 value: type: file encoding: base64 @@ -98120,9 +98303,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *620 examples: - default: *617 + default: *621 '404': *6 '422': *15 x-github: @@ -98155,7 +98338,7 @@ paths: application/json: schema: type: array - items: *618 + items: *622 examples: default: value: @@ -98326,9 +98509,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: &622 + default: &626 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -98435,7 +98618,7 @@ paths: parameters: - *354 - *355 - - &620 + - &624 name: asset_id description: The unique identifier of the asset. in: path @@ -98447,9 +98630,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: &621 + default: &625 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -98502,7 +98685,7 @@ paths: parameters: - *354 - *355 - - *620 + - *624 requestBody: required: false content: @@ -98530,9 +98713,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: *621 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98550,7 +98733,7 @@ paths: parameters: - *354 - *355 - - *620 + - *624 responses: '204': description: Response @@ -98668,9 +98851,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -98702,9 +98885,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -98728,7 +98911,7 @@ paths: parameters: - *354 - *355 - - &623 + - &627 name: release_id description: The unique identifier of the release. in: path @@ -98742,9 +98925,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '401': description: Unauthorized x-github: @@ -98764,7 +98947,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 requestBody: required: false content: @@ -98828,9 +99011,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': description: Not Found if the discussion category name is invalid content: @@ -98853,7 +99036,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 responses: '204': description: Response @@ -98876,7 +99059,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - *17 - *19 responses: @@ -98886,7 +99069,7 @@ paths: application/json: schema: type: array - items: *619 + items: *623 examples: default: value: @@ -98969,7 +99152,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - name: name in: query required: true @@ -98995,7 +99178,7 @@ paths: description: Response for successful upload content: application/json: - schema: *619 + schema: *623 examples: response-for-successful-upload: value: @@ -99052,7 +99235,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -99101,7 +99284,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 requestBody: required: true content: @@ -99164,7 +99347,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - *560 responses: '204': @@ -99208,7 +99391,7 @@ paths: oneOf: - allOf: - *318 - - &624 + - &628 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -99229,67 +99412,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *319 - - *624 + - *628 - allOf: - *320 - - *624 + - *628 - allOf: - *321 - - *624 + - *628 - allOf: - - *625 - - *624 + - *629 + - *628 - allOf: - *322 - - *624 + - *628 - allOf: - *323 - - *624 + - *628 - allOf: - *324 - - *624 + - *628 - allOf: - *325 - - *624 + - *628 - allOf: - *326 - - *624 + - *628 - allOf: - *327 - - *624 + - *628 - allOf: - *328 - - *624 + - *628 - allOf: - *329 - - *624 + - *628 - allOf: - *330 - - *624 + - *628 - allOf: - *331 - - *624 + - *628 - allOf: - *336 - - *624 + - *628 - allOf: - *337 - - *624 + - *628 - allOf: - *338 - - *624 + - *628 - allOf: - *332 - - *624 + - *628 - allOf: - *333 - - *624 + - *628 - allOf: - *334 - - *624 + - *628 - allOf: - *335 - - *624 + - *628 examples: default: value: @@ -99340,7 +99523,7 @@ paths: schema: type: boolean default: true - - *626 + - *630 responses: '200': description: Response @@ -99425,7 +99608,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *627 + items: *631 required: - name - enforcement @@ -99458,7 +99641,7 @@ paths: application/json: schema: *339 examples: - default: &638 + default: &642 value: id: 42 name: super cool ruleset @@ -99508,11 +99691,11 @@ paths: parameters: - *354 - *355 - - *628 - - *629 - - *630 - - *631 - *632 + - *633 + - *634 + - *635 + - *636 - *17 - *19 responses: @@ -99520,9 +99703,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *637 examples: - default: *634 + default: *638 '404': *6 '500': *55 x-github: @@ -99545,15 +99728,15 @@ paths: parameters: - *354 - *355 - - *635 + - *639 responses: '200': description: Response content: application/json: - schema: *636 + schema: *640 examples: - default: *637 + default: *641 '404': *6 '500': *55 x-github: @@ -99604,7 +99787,7 @@ paths: application/json: schema: *339 examples: - default: *638 + default: *642 '404': *6 '500': *55 put: @@ -99657,7 +99840,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *627 + items: *631 examples: default: value: @@ -99687,7 +99870,7 @@ paths: application/json: schema: *339 examples: - default: *638 + default: *642 '404': *6 '422': *15 '500': *55 @@ -99749,7 +99932,7 @@ paths: type: array items: *342 examples: - default: *639 + default: *643 '404': *6 '500': *55 x-github: @@ -99787,7 +99970,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *644 examples: default: value: @@ -99844,24 +100027,24 @@ paths: parameters: - *354 - *355 - - *641 - - *642 - - *643 - - *644 - *645 - *646 - *647 - *648 - - *62 - - *19 - - *17 - *649 - *650 - *651 - *652 + - *62 + - *19 + - *17 - *653 - *654 - *655 + - *656 + - *657 + - *658 + - *659 responses: '200': description: Response @@ -99869,7 +100052,7 @@ paths: application/json: schema: type: array - items: &659 + items: &663 type: object properties: number: *188 @@ -99888,8 +100071,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *656 - resolution: *657 + state: *660 + resolution: *661 resolved_at: type: string format: date-time @@ -99995,7 +100178,7 @@ paths: pull request. ' - oneOf: *658 + oneOf: *662 nullable: true has_more_locations: type: boolean @@ -100162,13 +100345,13 @@ paths: - *354 - *355 - *451 - - *654 + - *658 responses: '200': description: Response content: application/json: - schema: *659 + schema: *663 examples: default: value: @@ -100232,8 +100415,8 @@ paths: schema: type: object properties: - state: *656 - resolution: *657 + state: *660 + resolution: *661 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100277,7 +100460,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *663 examples: default: value: @@ -100389,7 +100572,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &816 + items: &820 type: object properties: type: @@ -100415,10 +100598,6 @@ paths: example: commit details: oneOf: - - *660 - - *661 - - *662 - - *663 - *664 - *665 - *666 @@ -100428,6 +100607,10 @@ paths: - *670 - *671 - *672 + - *673 + - *674 + - *675 + - *676 examples: default: value: @@ -100522,14 +100705,14 @@ paths: schema: type: object properties: - reason: &674 + reason: &678 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *673 + placeholder_id: *677 required: - reason - placeholder_id @@ -100546,7 +100729,7 @@ paths: schema: type: object properties: - reason: *674 + reason: *678 expire_at: type: string format: date-time @@ -100608,7 +100791,7 @@ paths: properties: incremental_scans: type: array - items: &675 + items: &679 description: Information on a single scan performed by secret scanning on the repository type: object @@ -100639,15 +100822,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *675 + items: *679 backfill_scans: type: array - items: *675 + items: *679 custom_pattern_backfill_scans: type: array items: allOf: - - *675 + - *679 - type: object properties: pattern_name: @@ -100660,7 +100843,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *675 + items: *679 examples: default: value: @@ -100770,9 +100953,9 @@ paths: application/json: schema: type: array - items: *676 + items: *680 examples: - default: *677 + default: *681 '400': *14 '404': *6 x-github: @@ -100956,9 +101139,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: &679 + default: &683 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101296,7 +101479,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: default: value: @@ -101445,15 +101628,15 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '200': description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: *679 + default: *683 '403': *29 '404': *6 x-github: @@ -101479,7 +101662,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 requestBody: required: true content: @@ -101638,10 +101821,10 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: *679 - add_credit: *679 + default: *683 + add_credit: *683 '403': *29 '404': *6 '422': @@ -101681,7 +101864,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '202': *39 '400': *14 @@ -101710,7 +101893,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '202': description: Response @@ -101854,7 +102037,7 @@ paths: application/json: schema: type: array - items: &680 + items: &684 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -102227,7 +102410,7 @@ paths: application/json: schema: type: array - items: *680 + items: *684 examples: default: value: @@ -102315,7 +102498,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *685 examples: default: value: @@ -102409,7 +102592,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &682 + schema: &686 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -102504,7 +102687,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *686 examples: default: value: @@ -102711,7 +102894,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &687 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -102723,7 +102906,7 @@ paths: required: - names examples: - default: &684 + default: &688 value: names: - octocat @@ -102778,9 +102961,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *687 examples: - default: *684 + default: *688 '404': *6 '422': *7 x-github: @@ -102803,7 +102986,7 @@ paths: parameters: - *354 - *355 - - &685 + - &689 name: per description: The time frame to display results for. in: query @@ -102832,7 +103015,7 @@ paths: example: 128 clones: type: array - items: &686 + items: &690 title: Traffic type: object properties: @@ -103073,7 +103256,7 @@ paths: parameters: - *354 - *355 - - *685 + - *689 responses: '200': description: Response @@ -103092,7 +103275,7 @@ paths: example: 3782 views: type: array - items: *686 + items: *690 required: - uniques - count @@ -103864,7 +104047,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &687 + text_matches: &691 title: Search Result Text Matches type: array items: @@ -104026,7 +104209,7 @@ paths: enum: - author-date - committer-date - - &688 + - &692 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -104154,7 +104337,7 @@ paths: type: number node_id: type: string - text_matches: *687 + text_matches: *691 required: - sha - node_id @@ -104346,7 +104529,7 @@ paths: - interactions - created - updated - - *688 + - *692 - *17 - *19 - name: advanced_search @@ -104460,11 +104643,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: type: string state_reason: @@ -104496,7 +104679,7 @@ paths: type: string format: date-time nullable: true - text_matches: *687 + text_matches: *691 pull_request: type: object properties: @@ -104778,7 +104961,7 @@ paths: enum: - created - updated - - *688 + - *692 - *17 - *19 responses: @@ -104822,7 +105005,7 @@ paths: nullable: true score: type: number - text_matches: *687 + text_matches: *691 required: - id - node_id @@ -104907,7 +105090,7 @@ paths: - forks - help-wanted-issues - updated - - *688 + - *692 - *17 - *19 responses: @@ -105155,7 +105338,7 @@ paths: - admin - pull - push - text_matches: *687 + text_matches: *691 temp_clone_token: type: string allow_merge_commit: @@ -105455,7 +105638,7 @@ paths: type: string format: uri nullable: true - text_matches: *687 + text_matches: *691 related: type: array nullable: true @@ -105646,7 +105829,7 @@ paths: - followers - repositories - joined - - *688 + - *692 - *17 - *19 responses: @@ -105750,7 +105933,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *687 + text_matches: *691 blog: type: string nullable: true @@ -105829,7 +106012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &691 + - &695 name: team_id description: The unique identifier of the team. in: path @@ -105870,7 +106053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *691 + - *695 requestBody: required: true content: @@ -105970,7 +106153,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *691 + - *695 responses: '204': description: Response @@ -105999,7 +106182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -106037,7 +106220,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *691 + - *695 - name: role description: Filters members returned by their role in the team. in: query @@ -106088,7 +106271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -106125,7 +106308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -106165,7 +106348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -106202,7 +106385,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 responses: '200': @@ -106211,7 +106394,7 @@ paths: application/json: schema: *353 examples: - response-if-user-is-a-team-maintainer: *692 + response-if-user-is-a-team-maintainer: *696 '404': *6 x-github: githubCloudOnly: false @@ -106244,7 +106427,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 requestBody: required: false @@ -106272,7 +106455,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: *693 + response-if-users-membership-with-team-is-now-pending: *697 '403': description: Forbidden if team synchronization is set up '422': @@ -106306,7 +106489,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -106334,7 +106517,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -106376,7 +106559,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *691 + - *695 - *354 - *355 responses: @@ -106384,7 +106567,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *694 + schema: *698 examples: alternative-response-with-extra-repository-information: value: @@ -106535,7 +106718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *691 + - *695 - *354 - *355 requestBody: @@ -106587,7 +106770,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *691 + - *695 - *354 - *355 responses: @@ -106614,7 +106797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -106626,7 +106809,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: *695 + response-if-child-teams-exist: *699 headers: Link: *70 '404': *6 @@ -106659,7 +106842,7 @@ paths: application/json: schema: oneOf: - - &697 + - &701 title: Private User description: Private User type: object @@ -106862,7 +107045,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *696 + - *700 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -107015,7 +107198,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *701 examples: default: value: @@ -107413,7 +107596,7 @@ paths: type: integer secrets: type: array - items: &698 + items: &702 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -107529,7 +107712,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *702 examples: default: value: @@ -107942,7 +108125,7 @@ paths: description: Response content: application/json: - schema: &699 + schema: &703 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107983,7 +108166,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &700 + default: &704 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -108028,9 +108211,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *703 examples: - default: *700 + default: *704 '404': *6 x-github: githubCloudOnly: false @@ -108067,9 +108250,9 @@ paths: type: integer machines: type: array - items: *701 + items: *705 examples: - default: *702 + default: *706 '304': *37 '500': *55 '401': *25 @@ -109008,7 +109191,7 @@ paths: type: array items: *275 examples: - default: &713 + default: &717 value: - id: 197 name: hello_docker @@ -109109,7 +109292,7 @@ paths: application/json: schema: type: array - items: &703 + items: &707 title: Email description: Email type: object @@ -109174,9 +109357,9 @@ paths: application/json: schema: type: array - items: *703 + items: *707 examples: - default: &715 + default: &719 value: - email: octocat@github.com verified: true @@ -109251,7 +109434,7 @@ paths: application/json: schema: type: array - items: *703 + items: *707 examples: default: value: @@ -109507,7 +109690,7 @@ paths: application/json: schema: type: array - items: &704 + items: &708 title: GPG Key description: A unique encryption key type: object @@ -109638,7 +109821,7 @@ paths: - subkeys - revoked examples: - default: &732 + default: &736 value: - id: 3 name: Octocat's GPG Key @@ -109723,9 +109906,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *708 examples: - default: &705 + default: &709 value: id: 3 name: Octocat's GPG Key @@ -109782,7 +109965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &706 + - &710 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109794,9 +109977,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *708 examples: - default: *705 + default: *709 '404': *6 '304': *37 '403': *29 @@ -109819,7 +110002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *706 + - *710 responses: '204': description: Response @@ -110286,7 +110469,7 @@ paths: application/json: schema: type: array - items: &707 + items: &711 title: Key description: Key type: object @@ -110387,9 +110570,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *711 examples: - default: &708 + default: &712 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110422,15 +110605,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *588 + - *592 responses: '200': description: Response content: application/json: - schema: *707 + schema: *711 examples: - default: *708 + default: *712 '404': *6 '304': *37 '403': *29 @@ -110453,7 +110636,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *588 + - *592 responses: '204': description: Response @@ -110486,7 +110669,7 @@ paths: application/json: schema: type: array - items: &709 + items: &713 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -110554,7 +110737,7 @@ paths: - account - plan examples: - default: &710 + default: &714 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -110616,9 +110799,9 @@ paths: application/json: schema: type: array - items: *709 + items: *713 examples: - default: *710 + default: *714 headers: Link: *70 '304': *37 @@ -111627,7 +111810,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *269 - - *711 + - *715 responses: '204': description: Response @@ -111742,7 +111925,7 @@ paths: - docker - nuget - container - - *712 + - *716 - *19 - *17 responses: @@ -111754,8 +111937,8 @@ paths: type: array items: *275 examples: - default: *713 - '400': *714 + default: *717 + '400': *718 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111784,7 +111967,7 @@ paths: application/json: schema: *275 examples: - default: &733 + default: &737 value: id: 40201 name: octo-name @@ -112146,9 +112329,9 @@ paths: application/json: schema: type: array - items: *703 + items: *707 examples: - default: *715 + default: *719 headers: Link: *70 '304': *37 @@ -112261,7 +112444,7 @@ paths: type: array items: *82 examples: - default: &722 + default: &726 summary: Default response value: - id: 1296269 @@ -112607,7 +112790,7 @@ paths: type: array items: *554 examples: - default: *716 + default: *720 headers: Link: *70 '304': *37 @@ -112686,7 +112869,7 @@ paths: application/json: schema: type: array - items: &717 + items: &721 title: Social account description: Social media account type: object @@ -112701,7 +112884,7 @@ paths: - provider - url examples: - default: &718 + default: &722 value: - provider: twitter url: https://twitter.com/github @@ -112763,9 +112946,9 @@ paths: application/json: schema: type: array - items: *717 + items: *721 examples: - default: *718 + default: *722 '422': *15 '304': *37 '404': *6 @@ -112852,7 +113035,7 @@ paths: application/json: schema: type: array - items: &719 + items: &723 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112872,7 +113055,7 @@ paths: - title - created_at examples: - default: &750 + default: &754 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112936,9 +113119,9 @@ paths: description: Response content: application/json: - schema: *719 + schema: *723 examples: - default: &720 + default: &724 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112968,7 +113151,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: - - &721 + - &725 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112980,9 +113163,9 @@ paths: description: Response content: application/json: - schema: *719 + schema: *723 examples: - default: *720 + default: *724 '404': *6 '304': *37 '403': *29 @@ -113005,7 +113188,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: - - *721 + - *725 responses: '204': description: Response @@ -113034,7 +113217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &751 + - &755 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 @@ -113059,11 +113242,11 @@ paths: type: array items: *82 examples: - default-response: *722 + default-response: *726 application/vnd.github.v3.star+json: schema: type: array - items: &752 + items: &756 title: Starred Repository description: Starred Repository type: object @@ -113432,10 +113615,10 @@ paths: application/json: schema: oneOf: - - *697 - - *696 + - *701 + - *700 examples: - default-response: &726 + default-response: &730 summary: Default response value: login: octocat @@ -113470,7 +113653,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &727 + response-with-git-hub-plan-information: &731 summary: Response with GitHub plan information value: login: octocat @@ -113527,7 +113710,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &724 + - &728 name: user_id description: The unique identifier of the user. in: path @@ -113593,7 +113776,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *723 + - *727 - *17 responses: '200': @@ -113628,7 +113811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *724 + - *728 - *293 requestBody: required: true @@ -113700,7 +113883,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *725 + schema: *729 examples: table_view: summary: Response for creating a table view @@ -113752,11 +113935,11 @@ paths: application/json: schema: oneOf: - - *697 - - *696 + - *701 + - *700 examples: - default-response: *726 - response-with-git-hub-plan-information: *727 + default-response: *730 + response-with-git-hub-plan-information: *731 '404': *6 x-github: githubCloudOnly: false @@ -113806,8 +113989,8 @@ paths: required: - subject_digests examples: - default: *728 - withPredicateType: *729 + default: *732 + withPredicateType: *733 responses: '200': description: Response @@ -113860,7 +114043,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *730 + default: *734 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114346,7 +114529,7 @@ paths: application/json: schema: *204 examples: - default: &731 + default: &735 summary: Example response for a user copilot space value: id: 42 @@ -114447,7 +114630,7 @@ paths: application/json: schema: *204 examples: - default: *731 + default: *735 '403': *29 '404': *6 x-github: @@ -114570,7 +114753,7 @@ paths: application/json: schema: *204 examples: - default: *731 + default: *735 '403': *29 '404': *6 '422': *15 @@ -115338,7 +115521,7 @@ paths: type: array items: *275 examples: - default: *713 + default: *717 '403': *29 '401': *25 x-github: @@ -115722,9 +115905,9 @@ paths: application/json: schema: type: array - items: *704 + items: *708 examples: - default: *732 + default: *736 headers: Link: *70 x-github: @@ -115952,7 +116135,7 @@ paths: - docker - nuget - container - - *712 + - *716 - *74 - *19 - *17 @@ -115965,10 +116148,10 @@ paths: type: array items: *275 examples: - default: *713 + default: *717 '403': *29 '401': *25 - '400': *714 + '400': *718 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115998,7 +116181,7 @@ paths: application/json: schema: *275 examples: - default: *733 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116347,7 +116530,7 @@ paths: type: array items: *297 examples: - default: *734 + default: *738 headers: Link: *70 '304': *37 @@ -116407,7 +116590,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *735 + items: *739 required: - name - data_type @@ -116423,7 +116606,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *736 + iteration_configuration: *740 required: - name - data_type @@ -116445,8 +116628,8 @@ paths: value: name: Due date data_type: date - single_select_field: *737 - iteration_field: *738 + single_select_field: *741 + iteration_field: *742 responses: '201': description: Response @@ -116454,11 +116637,11 @@ paths: application/json: schema: *297 examples: - text_field: *739 - number_field: *740 - date_field: *741 - single_select_field: *742 - iteration_field: *743 + text_field: *743 + number_field: *744 + date_field: *745 + single_select_field: *746 + iteration_field: *747 '304': *37 '403': *29 '401': *25 @@ -116480,7 +116663,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *293 - - *744 + - *748 - *74 responses: '200': @@ -116489,7 +116672,7 @@ paths: application/json: schema: *297 examples: - default: *745 + default: *749 headers: Link: *70 '304': *37 @@ -116843,7 +117026,7 @@ paths: parameters: - *293 - *74 - - *746 + - *750 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -117382,7 +117565,7 @@ paths: parameters: - *74 - *124 - - *747 + - *751 - *126 responses: '200': @@ -117481,9 +117664,9 @@ paths: - *124 - *125 - *126 - - *748 + - *752 - *129 - - *749 + - *753 responses: '200': description: Response when getting a billing usage summary @@ -117617,9 +117800,9 @@ paths: application/json: schema: type: array - items: *717 + items: *721 examples: - default: *718 + default: *722 headers: Link: *70 x-github: @@ -117649,9 +117832,9 @@ paths: application/json: schema: type: array - items: *719 + items: *723 examples: - default: *750 + default: *754 headers: Link: *70 x-github: @@ -117676,7 +117859,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *751 + - *755 - *62 - *17 - *19 @@ -117688,11 +117871,11 @@ paths: schema: anyOf: - type: array - items: *752 + items: *756 - type: array items: *82 examples: - default-response: *722 + default-response: *726 headers: Link: *70 x-github: @@ -117851,7 +118034,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &753 + enterprise: &757 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117909,7 +118092,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &754 + installation: &758 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117928,7 +118111,7 @@ x-webhooks: required: - id - node_id - organization: &755 + organization: &759 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117988,13 +118171,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &756 + repository: &760 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: &788 + properties: &792 id: description: Unique identifier of the repository example: 42 @@ -118689,7 +118872,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &789 + required: &793 - archive_url - assignees_url - blobs_url @@ -118840,10 +119023,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -118919,11 +119102,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: &757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: &761 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) @@ -119146,11 +119329,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -119333,11 +119516,11 @@ x-webhooks: - everyone required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -119421,7 +119604,7 @@ x-webhooks: type: string enum: - completed - check_run: &759 + check_run: &763 title: CheckRun description: A check performed on the code of a given code change type: object @@ -119512,7 +119695,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *758 + deployment: *762 details_url: example: https://example.com type: string @@ -119597,10 +119780,10 @@ x-webhooks: - output - app - pull_requests - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -119991,11 +120174,11 @@ x-webhooks: type: string enum: - created - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -120389,11 +120572,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 requested_action: description: The action requested by the user. type: object @@ -120796,11 +120979,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -121770,10 +121953,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -122472,10 +122655,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123168,10 +123351,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123482,20 +123665,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &760 + commit_oid: &764 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *753 - installation: *754 - organization: *755 - ref: &761 + enterprise: *757 + installation: *758 + organization: *759 + ref: &765 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -123890,12 +124073,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124161,12 +124344,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124498,12 +124681,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124777,16 +124960,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 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: *756 + repository: *760 sender: *4 required: - action @@ -125023,12 +125206,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -125339,10 +125522,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -125597,10 +125780,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -125680,18 +125863,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *755 - pusher_type: &762 + organization: *759 + pusher_type: &766 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &763 + ref: &767 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -125701,7 +125884,7 @@ x-webhooks: enum: - tag - branch - repository: *756 + repository: *760 sender: *4 required: - ref @@ -125784,9 +125967,9 @@ x-webhooks: enum: - created definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125871,9 +126054,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125951,9 +126134,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126031,9 +126214,9 @@ x-webhooks: enum: - updated definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -126110,10 +126293,10 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - repository: *756 - organization: *755 + enterprise: *757 + installation: *758 + repository: *760 + organization: *759 sender: *4 new_property_values: type: array @@ -126198,18 +126381,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - pusher_type: *762 - ref: *763 + enterprise: *757 + installation: *758 + organization: *759 + pusher_type: *766 + ref: *767 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *756 + repository: *760 sender: *4 required: - ref @@ -126290,10 +126473,10 @@ x-webhooks: enum: - assignees_changed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126374,10 +126557,10 @@ x-webhooks: enum: - auto_dismissed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126459,10 +126642,10 @@ x-webhooks: enum: - auto_reopened alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126544,10 +126727,10 @@ x-webhooks: enum: - created alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126627,10 +126810,10 @@ x-webhooks: enum: - dismissed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126710,10 +126893,10 @@ x-webhooks: enum: - fixed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126794,10 +126977,10 @@ x-webhooks: enum: - reintroduced alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126877,10 +127060,10 @@ x-webhooks: enum: - reopened alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126957,9 +127140,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - key: &764 + enterprise: *757 + installation: *758 + key: &768 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126995,8 +127178,8 @@ x-webhooks: - verified - created_at - read_only - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -127073,11 +127256,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - key: *764 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + key: *768 + organization: *759 + repository: *760 sender: *4 required: - action @@ -127633,12 +127816,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: &770 + workflow: &774 title: Workflow type: object nullable: true @@ -128379,15 +128562,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *765 - required: *766 + properties: *769 + required: *770 nullable: true pull_requests: type: array - items: *607 - repository: *756 - organization: *755 - installation: *754 + items: *611 + repository: *760 + organization: *759 + installation: *758 sender: *4 responses: '200': @@ -128458,7 +128641,7 @@ x-webhooks: type: string enum: - approved - approver: &767 + approver: &771 type: object properties: avatar_url: @@ -128501,11 +128684,11 @@ x-webhooks: type: string comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: &768 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: &772 type: array items: type: object @@ -128584,7 +128767,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &769 + workflow_job_run: &773 type: object properties: conclusion: @@ -129315,18 +129498,18 @@ x-webhooks: type: string enum: - rejected - approver: *767 + approver: *771 comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: *768 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: *772 sender: *4 since: type: string - workflow_job_run: *769 + workflow_job_run: *773 workflow_job_runs: type: array items: @@ -130030,13 +130213,13 @@ x-webhooks: type: string enum: - requested - enterprise: *753 + enterprise: *757 environment: type: string - installation: *754 - organization: *755 - repository: *756 - requestor: &775 + installation: *758 + organization: *759 + repository: *760 + requestor: &779 title: User type: object nullable: true @@ -131925,12 +132108,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Deployment Workflow Run type: object @@ -132610,7 +132793,7 @@ x-webhooks: type: string enum: - answered - answer: &773 + answer: &777 type: object properties: author_association: @@ -132767,11 +132950,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132898,11 +133081,11 @@ x-webhooks: - from required: - category - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132985,11 +133168,11 @@ x-webhooks: type: string enum: - closed - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133071,7 +133254,7 @@ x-webhooks: type: string enum: - created - comment: &772 + comment: &776 type: object properties: author_association: @@ -133228,11 +133411,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133315,12 +133498,12 @@ x-webhooks: type: string enum: - deleted - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133415,12 +133598,12 @@ x-webhooks: - from required: - body - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133504,11 +133687,11 @@ x-webhooks: type: string enum: - created - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133590,11 +133773,11 @@ x-webhooks: type: string enum: - deleted - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133694,11 +133877,11 @@ x-webhooks: type: string required: - from - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133780,10 +133963,10 @@ x-webhooks: type: string enum: - labeled - discussion: *771 - enterprise: *753 - installation: *754 - label: &774 + discussion: *775 + enterprise: *757 + installation: *758 + label: &778 title: Label type: object properties: @@ -133815,8 +133998,8 @@ x-webhooks: - color - default - description - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133899,11 +134082,11 @@ x-webhooks: type: string enum: - locked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133985,11 +134168,11 @@ x-webhooks: type: string enum: - pinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134071,11 +134254,11 @@ x-webhooks: type: string enum: - reopened - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134160,16 +134343,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *771 - new_repository: *756 + new_discussion: *775 + new_repository: *760 required: - new_discussion - new_repository - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134252,10 +134435,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *771 - old_answer: *773 - organization: *755 - repository: *756 + discussion: *775 + old_answer: *777 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134337,12 +134520,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *771 - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134425,11 +134608,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134511,11 +134694,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134588,7 +134771,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *753 + enterprise: *757 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -135248,9 +135431,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - forkee @@ -135396,9 +135579,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pages: description: The pages that were updated. type: array @@ -135435,7 +135618,7 @@ x-webhooks: - action - sha - html_url - repository: *756 + repository: *760 sender: *4 required: - pages @@ -135511,10 +135694,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: &776 + organization: *759 + repositories: &780 description: An array of repository objects that the installation can access. type: array @@ -135540,8 +135723,8 @@ x-webhooks: - name - full_name - private - repository: *756 - requester: *775 + repository: *760 + requester: *779 sender: *4 required: - action @@ -135616,11 +135799,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -135696,11 +135879,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -135776,10 +135959,10 @@ x-webhooks: type: string enum: - added - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories_added: &777 + organization: *759 + repositories_added: &781 description: An array of repository objects, which were added to the installation. type: array @@ -135825,15 +136008,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *756 - repository_selection: &778 + repository: *760 + repository_selection: &782 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *775 + requester: *779 sender: *4 required: - action @@ -135912,10 +136095,10 @@ x-webhooks: type: string enum: - removed - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories_added: *777 + organization: *759 + repositories_added: *781 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135942,9 +136125,9 @@ x-webhooks: - name - full_name - private - repository: *756 - repository_selection: *778 - requester: *775 + repository: *760 + repository_selection: *782 + requester: *779 sender: *4 required: - action @@ -136023,11 +136206,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136205,10 +136388,10 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 target_type: type: string @@ -136287,11 +136470,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136465,8 +136648,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true user: title: User @@ -136551,8 +136734,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137341,8 +137524,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137691,8 +137874,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -137772,7 +137955,7 @@ x-webhooks: type: string enum: - deleted - comment: &779 + comment: &783 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137929,8 +138112,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true required: - url @@ -137945,8 +138128,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138731,8 +138914,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139083,8 +139266,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -139164,7 +139347,7 @@ x-webhooks: type: string enum: - edited - changes: &808 + changes: &812 description: The changes to the comment. type: object properties: @@ -139176,9 +139359,9 @@ x-webhooks: type: string required: - from - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139966,8 +140149,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140316,8 +140499,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -140398,9 +140581,9 @@ x-webhooks: type: string enum: - pinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141190,8 +141373,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141542,8 +141725,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -141623,9 +141806,9 @@ x-webhooks: type: string enum: - unpinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142415,8 +142598,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142767,8 +142950,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142857,9 +143040,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142948,9 +143131,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143038,9 +143221,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143129,9 +143312,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143211,10 +143394,10 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - issue: &780 + assignee: *779 + enterprise: *757 + installation: *758 + issue: &784 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144006,11 +144189,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144127,8 +144310,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -144208,8 +144391,8 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145006,11 +145189,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145262,8 +145445,8 @@ x-webhooks: required: - state - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -145342,8 +145525,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146131,11 +146314,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146251,8 +146434,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -146331,8 +146514,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147142,11 +147325,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147241,7 +147424,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &781 + milestone: &785 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147379,8 +147562,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -147479,8 +147662,8 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148272,11 +148455,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148393,9 +148576,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148475,9 +148658,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was set or updated on the @@ -148631,8 +148814,8 @@ x-webhooks: - id required: - from - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148712,9 +148895,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -148795,8 +148978,8 @@ x-webhooks: nullable: true required: - id - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148876,8 +149059,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149668,11 +149851,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149789,9 +149972,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -149871,8 +150054,8 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150687,11 +150870,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150785,8 +150968,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -150865,8 +151048,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151675,11 +151858,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151773,9 +151956,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *781 - organization: *755 - repository: *756 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -152638,11 +152821,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153223,8 +153406,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154008,11 +154191,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154136,8 +154319,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -154217,9 +154400,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *753 - installation: *754 - issue: &782 + enterprise: *757 + installation: *758 + issue: &786 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -155005,11 +155188,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155125,8 +155308,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -155205,8 +155388,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156019,11 +156202,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156118,8 +156301,8 @@ x-webhooks: user_view_type: type: string type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -156988,11 +157171,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157587,11 +157770,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157671,12 +157854,12 @@ x-webhooks: type: string enum: - typed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157757,7 +157940,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &811 + assignee: &815 title: User type: object nullable: true @@ -157827,11 +158010,11 @@ x-webhooks: required: - login - id - enterprise: *753 - installation: *754 - issue: *780 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *784 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157910,12 +158093,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - issue: *780 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *784 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157995,8 +158178,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158809,11 +158992,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158907,8 +159090,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158988,11 +159171,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159071,12 +159254,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159156,11 +159339,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159238,11 +159421,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159352,11 +159535,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159438,9 +159621,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: &783 + enterprise: *757 + installation: *758 + marketplace_purchase: &787 title: Marketplace Purchase type: object required: @@ -159523,8 +159706,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: &784 + organization: *759 + previous_marketplace_purchase: &788 title: Marketplace Purchase type: object properties: @@ -159604,7 +159787,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -159684,10 +159867,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159770,7 +159953,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -159852,10 +160035,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159937,7 +160120,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -160018,8 +160201,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 marketplace_purchase: title: Marketplace Purchase type: object @@ -160101,9 +160284,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -160183,12 +160366,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -160290,11 +160473,11 @@ x-webhooks: type: string required: - to - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160394,11 +160577,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160477,11 +160660,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160559,11 +160742,11 @@ x-webhooks: type: string enum: - added - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160639,7 +160822,7 @@ x-webhooks: required: - login - id - team: &785 + team: &789 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -160862,11 +161045,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160943,7 +161126,7 @@ x-webhooks: required: - login - id - team: *785 + team: *789 required: - action - scope @@ -161025,8 +161208,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *754 - merge_group: &787 + installation: *758 + merge_group: &791 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -161045,15 +161228,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *786 + head_commit: *790 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161139,10 +161322,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *754 - merge_group: *787 - organization: *755 - repository: *756 + installation: *758 + merge_group: *791 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161215,7 +161398,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *757 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -161324,16 +161507,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *754 - organization: *755 + installation: *758 + organization: *759 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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -161414,11 +161597,11 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161497,9 +161680,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - milestone: &790 + enterprise: *757 + installation: *758 + milestone: &794 title: Milestone description: A collection of related issues and pull requests. type: object @@ -161636,8 +161819,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161716,11 +161899,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161830,11 +162013,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161914,11 +162097,11 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - milestone: *790 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *794 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161997,11 +162180,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162080,11 +162263,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162163,9 +162346,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - membership: &791 + enterprise: *757 + installation: *758 + membership: &795 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -162272,8 +162455,8 @@ x-webhooks: - role - organization_url - user - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162351,11 +162534,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162434,8 +162617,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -162551,10 +162734,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 - user: *775 + user: *779 required: - action - invitation @@ -162632,11 +162815,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162723,11 +162906,11 @@ x-webhooks: properties: from: type: string - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162804,9 +162987,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -163305,7 +163488,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &792 + items: &796 title: Ruby Gems metadata type: object properties: @@ -163400,7 +163583,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -163476,9 +163659,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -163831,7 +164014,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *796 source_url: type: string format: uri @@ -163901,7 +164084,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -164077,12 +164260,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *753 + enterprise: *757 id: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - id @@ -164159,7 +164342,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &793 + personal_access_token_request: &797 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -164305,10 +164488,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *753 - organization: *755 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164385,11 +164568,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *797 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164465,11 +164648,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *797 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164544,11 +164727,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *793 - organization: *755 - enterprise: *753 + personal_access_token_request: *797 + organization: *759 + enterprise: *757 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164653,7 +164836,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *794 + last_response: *798 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -164685,8 +164868,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 zen: description: Random string of GitHub zen. @@ -164931,10 +165114,10 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: &795 + enterprise: *757 + installation: *758 + organization: *759 + project_card: &799 title: Project Card type: object properties: @@ -165053,7 +165236,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -165134,11 +165317,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *799 + repository: *760 sender: *4 required: - action @@ -165218,9 +165401,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 project_card: title: Project Card type: object @@ -165348,8 +165531,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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -165443,11 +165626,11 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *799 + repository: *760 sender: *4 required: - action @@ -165541,9 +165724,9 @@ x-webhooks: - from required: - column_id - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 project_card: allOf: - title: Project Card @@ -165733,7 +165916,7 @@ x-webhooks: type: string required: - after_id - repository: *756 + repository: *760 sender: *4 required: - action @@ -165813,10 +165996,10 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - organization: *755 - project: &797 + enterprise: *757 + installation: *758 + organization: *759 + project: &801 title: Project type: object properties: @@ -165940,7 +166123,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -166020,10 +166203,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_column: &796 + enterprise: *757 + installation: *758 + organization: *759 + project_column: &800 title: Project Column type: object properties: @@ -166062,7 +166245,7 @@ x-webhooks: - name - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -166141,18 +166324,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -166242,11 +166425,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 + repository: *760 sender: *4 required: - action @@ -166326,11 +166509,11 @@ x-webhooks: type: string enum: - moved - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 + repository: *760 sender: *4 required: - action @@ -166410,11 +166593,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166494,18 +166677,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project: *797 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -166607,11 +166790,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166690,11 +166873,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166775,8 +166958,8 @@ x-webhooks: type: string enum: - closed - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166858,8 +167041,8 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166941,8 +167124,8 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -167060,8 +167243,8 @@ x-webhooks: type: string to: type: string - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -167145,7 +167328,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &805 type: object properties: archived_at: @@ -167159,9 +167342,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *754 - organization: *755 - projects_v2_item: &798 + installation: *758 + organization: *759 + projects_v2_item: &802 title: Projects v2 Item description: An item belonging to a project type: object @@ -167296,9 +167479,9 @@ x-webhooks: nullable: true to: type: string - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167380,9 +167563,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167463,9 +167646,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167571,7 +167754,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &803 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -167593,7 +167776,7 @@ x-webhooks: required: - id - name - - &800 + - &804 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -167627,8 +167810,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - - *800 + - *803 + - *804 required: - field_value - type: object @@ -167644,9 +167827,9 @@ x-webhooks: nullable: true required: - body - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167741,9 +167924,9 @@ x-webhooks: to: type: string nullable: true - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167826,10 +168009,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *754 - organization: *755 - projects_v2_item: *798 + changes: *805 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167911,8 +168094,8 @@ x-webhooks: type: string enum: - reopened - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -167994,14 +168177,14 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_status_update: &804 + installation: *758 + organization: *759 + projects_v2_status_update: &808 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *802 - required: *803 + properties: *806 + required: *807 sender: *4 required: - action @@ -168082,9 +168265,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *758 + organization: *759 + projects_v2_status_update: *808 sender: *4 required: - action @@ -168220,9 +168403,9 @@ x-webhooks: type: string format: date nullable: true - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *758 + organization: *759 + projects_v2_status_update: *808 sender: *4 required: - action @@ -168293,10 +168476,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - repository @@ -168373,13 +168556,13 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - number: &805 + assignee: *779 + enterprise: *757 + installation: *758 + number: &809 description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -170684,7 +170867,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -170766,11 +170949,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -173070,7 +173253,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -173152,11 +173335,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -175456,7 +175639,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -175538,13 +175721,13 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: &806 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: &810 allOf: - - *607 + - *611 - type: object properties: allow_auto_merge: @@ -175606,7 +175789,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *756 + repository: *760 sender: *4 required: - action @@ -175687,12 +175870,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -175772,11 +175955,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - milestone: *591 - number: *805 - organization: *755 - pull_request: &807 + enterprise: *757 + milestone: *595 + number: *809 + organization: *759 + pull_request: &811 title: Pull Request type: object properties: @@ -178061,7 +178244,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -178140,11 +178323,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -180448,7 +180631,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *756 + repository: *760 sender: *4 required: - action @@ -180572,12 +180755,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -180657,11 +180840,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -182950,7 +183133,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -183030,11 +183213,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + label: *778 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -185338,7 +185521,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -185419,10 +185602,10 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -187724,7 +187907,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -187804,12 +187987,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - milestone: *591 - number: *805 - organization: *755 - pull_request: *807 - repository: *756 + enterprise: *757 + milestone: *595 + number: *809 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -187888,12 +188071,12 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -187974,12 +188157,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -188059,12 +188242,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -188430,9 +188613,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -190624,7 +190807,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -190704,7 +190887,7 @@ x-webhooks: type: string enum: - deleted - comment: &809 + comment: &813 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -190989,9 +191172,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -193171,7 +193354,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -193251,11 +193434,11 @@ x-webhooks: type: string enum: - edited - changes: *808 - comment: *809 - enterprise: *753 - installation: *754 - organization: *755 + changes: *812 + comment: *813 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -195438,7 +195621,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -195519,9 +195702,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -197716,7 +197899,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 review: description: The review that was affected. type: object @@ -197963,9 +198146,9 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -200019,8 +200202,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: &810 + repository: *760 + review: &814 description: The review that was affected. type: object properties: @@ -200253,12 +200436,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -202563,7 +202746,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_reviewer: title: User type: object @@ -202647,12 +202830,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -204964,7 +205147,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205156,12 +205339,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -207468,7 +207651,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_reviewer: title: User type: object @@ -207553,12 +207736,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -209856,7 +210039,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210037,9 +210220,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -212236,8 +212419,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: *810 + repository: *760 + review: *814 sender: *4 required: - action @@ -212317,9 +212500,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -214411,7 +214594,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 sender: *4 thread: type: object @@ -214798,9 +214981,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -216878,7 +217061,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 sender: *4 thread: type: object @@ -217268,10 +217451,10 @@ x-webhooks: type: string before: type: string - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -219564,7 +219747,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -219646,11 +219829,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *811 - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + assignee: *815 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -221955,7 +222138,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -222034,11 +222217,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + label: *778 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -224333,7 +224516,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -224414,10 +224597,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -226704,7 +226887,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -226904,7 +227087,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *753 + enterprise: *757 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -226996,8 +227179,8 @@ x-webhooks: - url - author - committer - installation: *754 - organization: *755 + installation: *758 + organization: *759 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -227583,9 +227766,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -228031,7 +228214,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *792 + items: *796 summary: type: string tag_name: @@ -228085,7 +228268,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -228163,9 +228346,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -228473,7 +228656,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *796 summary: type: string tag_name: @@ -228522,7 +228705,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -228599,10 +228782,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - release: &812 + enterprise: *757 + installation: *758 + organization: *759 + release: &816 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228920,7 +229103,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *756 + repository: *760 sender: *4 required: - action @@ -228997,11 +229180,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -229118,11 +229301,11 @@ x-webhooks: type: boolean required: - to - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -229200,9 +229383,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -229524,7 +229707,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *760 sender: *4 required: - action @@ -229600,10 +229783,10 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - release: &813 + enterprise: *757 + installation: *758 + organization: *759 + release: &817 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229922,7 +230105,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *760 sender: *4 required: - action @@ -229998,11 +230181,11 @@ x-webhooks: type: string enum: - released - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -230078,11 +230261,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *753 - installation: *754 - organization: *755 - release: *813 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *817 + repository: *760 sender: *4 required: - action @@ -230158,11 +230341,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *676 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -230238,11 +230421,11 @@ x-webhooks: type: string enum: - reported - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *676 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -230318,10 +230501,10 @@ x-webhooks: type: string enum: - archived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230398,10 +230581,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230479,10 +230662,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230566,10 +230749,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230681,10 +230864,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230756,10 +230939,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 status: type: string @@ -230840,10 +231023,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230920,10 +231103,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231017,10 +231200,10 @@ x-webhooks: - name required: - repository - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231100,10 +231283,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 sender: *4 required: @@ -231182,10 +231365,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 sender: *4 required: @@ -231264,10 +231447,10 @@ x-webhooks: type: string enum: - edited - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 changes: type: object @@ -231329,16 +231512,16 @@ x-webhooks: properties: added: type: array - items: *627 + items: *631 deleted: type: array - items: *627 + items: *631 updated: type: array items: type: object properties: - rule: *627 + rule: *631 changes: type: object properties: @@ -231572,10 +231755,10 @@ x-webhooks: - from required: - owner - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231653,10 +231836,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231734,7 +231917,7 @@ x-webhooks: type: string enum: - create - alert: &814 + alert: &818 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -231856,10 +232039,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232065,10 +232248,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232146,11 +232329,11 @@ x-webhooks: type: string enum: - reopen - alert: *814 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *818 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232349,10 +232532,10 @@ x-webhooks: enum: - fixed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232430,7 +232613,7 @@ x-webhooks: type: string enum: - assigned - alert: &815 + alert: &819 type: object properties: number: *188 @@ -232573,10 +232756,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232654,11 +232837,11 @@ x-webhooks: type: string enum: - created - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232739,11 +232922,11 @@ x-webhooks: type: string enum: - created - alert: *815 - installation: *754 - location: *816 - organization: *755 - repository: *756 + alert: *819 + installation: *758 + location: *820 + organization: *759 + repository: *760 sender: *4 required: - location @@ -232981,11 +233164,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233063,11 +233246,11 @@ x-webhooks: type: string enum: - reopened - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233145,11 +233328,11 @@ x-webhooks: type: string enum: - resolved - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233227,12 +233410,12 @@ x-webhooks: type: string enum: - unassigned - alert: *815 + alert: *819 assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233310,11 +233493,11 @@ x-webhooks: type: string enum: - validated - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -233440,10 +233623,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *756 - enterprise: *753 - installation: *754 - organization: *755 + repository: *760 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -233521,11 +233704,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: &817 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: &821 description: The details of the security advisory, including summary, description, and severity. type: object @@ -233708,11 +233891,11 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: *817 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: *821 sender: *4 required: - action @@ -233785,10 +233968,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -233973,9 +234156,9 @@ x-webhooks: type: object properties: security_and_analysis: *312 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: *357 sender: *4 required: @@ -234054,12 +234237,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: &818 + sponsorship: &822 type: object properties: created_at: @@ -234360,12 +234543,12 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - sponsorship @@ -234453,12 +234636,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -234535,17 +234718,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &819 + effective_date: &823 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: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - sponsorship @@ -234619,7 +234802,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &820 + changes: &824 type: object properties: tier: @@ -234663,13 +234846,13 @@ x-webhooks: - from required: - tier - effective_date: *819 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + effective_date: *823 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -234746,13 +234929,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *820 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + changes: *824 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -234826,10 +235009,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234912,10 +235095,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235335,15 +235518,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *753 + enterprise: *757 id: description: The unique identifier of the status. type: integer - installation: *754 + installation: *758 name: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 sha: description: The Commit SHA. @@ -235458,9 +235641,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -235549,9 +235732,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -235640,9 +235823,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -235731,9 +235914,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -235809,12 +235992,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - team: &821 + team: &825 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -236037,9 +236220,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -236497,7 +236680,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -236573,9 +236756,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237033,7 +237216,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -237110,9 +237293,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237570,7 +237753,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -237714,9 +237897,9 @@ x-webhooks: - from required: - permissions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -238174,7 +238357,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - changes @@ -238252,9 +238435,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -238712,7 +238895,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -238788,10 +238971,10 @@ x-webhooks: type: string enum: - started - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -238864,16 +239047,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *753 + enterprise: *757 inputs: type: object nullable: true additionalProperties: true - installation: *754 - organization: *755 + installation: *758 + organization: *759 ref: type: string - repository: *756 + repository: *760 sender: *4 workflow: type: string @@ -238955,10 +239138,10 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -239274,10 +239457,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -239616,10 +239799,10 @@ x-webhooks: type: string enum: - queued - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -239833,10 +240016,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -240052,12 +240235,12 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -241056,12 +241239,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -242045,12 +242228,12 @@ x-webhooks: type: string enum: - requested - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 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 256fb22055..f5dc10d056 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 @@ -35396,6 +35396,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -38614,6 +38619,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -54637,6 +54647,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -61662,6 +61677,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -64880,6 +64900,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -133276,6 +133301,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -136494,6 +136524,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -152111,6 +152146,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -177980,6 +178020,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -187197,6 +187242,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -303055,7 +303105,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -355693,6 +355743,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -358911,6 +358966,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -383641,6 +383701,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -386963,6 +387028,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -395264,6 +395334,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -396208,6 +396283,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -399741,6 +399886,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -400685,6 +400835,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -404093,6 +404313,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -404854,426 +405079,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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 + "type": "string" }, "url": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -405398,409 +405275,470 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": false - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "url": { - "type": "string", - "format": "uri", - "nullable": false - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" + "assignees": { + "type": "array", + "items": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } }, - "license": { - "title": "License Simple", - "description": "License Simple", + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", "type": "object", "properties": { - "key": { + "url": { "type": "string", - "example": "mit" + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" }, - "name": { + "html_url": { "type": "string", - "example": "MIT License" + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" }, - "url": { + "labels_url": { "type": "string", - "nullable": true, "format": "uri", - "example": "https://api.github.com/licenses/mit" + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" + "id": { + "type": "integer", + "example": 1002604 }, "node_id": { "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" }, - "html_url": { + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", "type": "string", - "format": "uri" + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", + "type": "string" + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } }, "required": [ - "key", - "name", + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", "url", - "spdx_id", - "node_id" + "created_at", + "updated_at" ], "nullable": true }, - "forks": { + "locked": { + "type": "boolean" + }, + "active_lock_reason": { + "type": "string", + "nullable": true + }, + "comments": { "type": "integer" }, - "permissions": { + "pull_request": { "type": "object", "properties": { - "admin": { - "type": "boolean" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": false }, - "pull": { - "type": "boolean" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "triage": { - "type": "boolean" + "html_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "push": { - "type": "boolean" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "maintain": { - "type": "boolean" + "url": { + "type": "string", + "format": "uri", + "nullable": false } }, "required": [ - "admin", - "pull", - "push" + "diff_url", + "html_url", + "patch_url", + "url" ] }, - "owner": { + "closed_at": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "format": "date-time" + }, + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -405922,544 +405860,174 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", - "nullable": true - }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { - "type": "array", - "items": { - "type": "string" - } - }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { + "body_html": { "type": "string" }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" + "body_text": { + "type": "string" }, - "starred_at": { + "timeline_url": { "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" + "format": "uri" }, - "code_search_index_status": { + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", "type": "object", - "description": "The status of the code search index for this repository", + "nullable": true, "properties": { - "lexical_search_ok": { - "type": "boolean" + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." }, - "lexical_commit_sha": { - "type": "string" + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] }, - "owner": { - "oneOf": [ - { + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -406583,444 +406151,513 @@ "url" ] }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" }, - "checks": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" }, - "metadata": { - "type": "string" + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true }, - "contents": { - "type": "string" + "fork": { + "type": "boolean" }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", - "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", - "type": "object", - "properties": { - "name": { - "nullable": true, - "type": "string" + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" }, - "email": { - "nullable": true, - "type": "string" + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" }, - "login": { + "assignees_url": { "type": "string", - "example": "octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" }, - "id": { - "type": "integer", - "format": "int64", - "example": 1 + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" }, - "node_id": { + "branches_url": { "type": "string", - "example": "MDQ6VXNlcjE=" + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" }, - "avatar_url": { + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { "type": "string", "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" }, - "gravatar_id": { + "deployments_url": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", - "nullable": true + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" }, - "url": { + "downloads_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" }, - "html_url": { + "events_url": { "type": "string", "format": "uri", - "example": "https://github.com/octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/events" }, - "followers_url": { + "forks_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/followers" + "example": "http://api.github.com/repos/octocat/Hello-World/forks" }, - "following_url": { + "git_commits_url": { "type": "string", - "example": "https://api.github.com/users/octocat/following{/other_user}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" }, - "gists_url": { + "git_refs_url": { "type": "string", - "example": "https://api.github.com/users/octocat/gists{/gist_id}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" }, - "starred_url": { + "git_tags_url": { "type": "string", - "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" }, - "subscriptions_url": { + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "example": "http://api.github.com/repos/octocat/Hello-World/languages" }, - "organizations_url": { + "merges_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "example": "http://api.github.com/repos/octocat/Hello-World/merges" }, - "repos_url": { + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" }, - "events_url": { + "statuses_url": { "type": "string", - "example": "https://api.github.com/users/octocat/events{/privacy}" + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" }, - "received_events_url": { + "subscribers_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/received_events" + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" }, - "type": { + "subscription_url": { "type": "string", - "example": "User" + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" }, - "site_admin": { + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { "type": "boolean" }, - "starred_at": { + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", "type": "string", - "example": "\"2020-07-09T00:17:55Z\"" + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" }, - "user_view_type": { + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { "type": "string", - "example": "public" + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } } }, "required": [ - "avatar_url", + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", "events_url", - "followers_url", - "following_url", - "gists_url", - "gravatar_id", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", "html_url", "id", "node_id", - "login", - "organizations_url", - "received_events_url", - "repos_url", - "site_admin", - "starred_url", - "subscriptions_url", - "type", - "url" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "issue_url": { - "type": "string", - "format": "uri" - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" ] }, "performed_via_github_app": { @@ -407171,531 +406808,1132 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true - } - }, - "required": [ - "id", - "node_id", - "html_url", - "issue_url", - "user", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 - } - ], - "nullable": true - }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", "type": "object", "properties": { - "id": { - "description": "Unique identifier for the option.", + "issue_field_id": { + "description": "Unique identifier for the issue field.", "type": "integer", "format": "int64", "example": 1 }, - "name": { - "description": "The name of the option", + "issue_field_name": { + "description": "The human-readable name of the issue field.", "type": "string", - "example": "High" + "example": "Priority" }, - "color": { - "description": "The color of the option", + "node_id": { "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ], - "nullable": true - }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "required": [ - "id", - "name", - "color" - ] + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } }, - "nullable": true + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } + } + }, + "required": [ + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", + "id", + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] + }, + { + "type": "object", + "properties": {} } - }, - "required": [ - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" ] }, "examples": { @@ -410842,6 +411080,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -413914,6 +414157,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -418932,6 +419180,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -422111,6 +422364,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -425348,6 +425606,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -428605,6 +428868,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -431979,8 +432247,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -432439,20 +433193,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -432465,8 +433223,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -432925,24 +433683,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -432955,8 +434156,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -433888,8 +435089,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -434348,7 +435549,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -434472,217 +435724,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -434805,10 +436709,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -434821,8 +437079,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -435281,32 +437539,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -435319,8 +437585,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -435779,14 +438045,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -435799,8 +438091,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -436259,40 +438551,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -436305,8 +438601,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -436765,40 +439061,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -436811,8 +439111,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -437271,546 +439571,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -437988,6 +439822,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -438095,12 +439934,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -438112,18 +439953,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -438384,6 +440228,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -438491,12 +440340,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -438508,18 +440359,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -438890,6 +440744,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -438997,12 +440856,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -439014,18 +440875,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -443854,6 +445718,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -447986,6 +449855,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -451147,6 +453021,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -454304,6 +456183,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -457540,6 +459424,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -469001,6 +470890,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -471303,132 +473197,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -471437,13 +474830,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -471902,12 +475294,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -568321,6 +571781,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -609386,6 +612851,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -635742,6 +639212,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -652244,6 +655719,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -655462,6 +658942,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -662358,6 +665843,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -665576,6 +669066,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -672482,6 +675977,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -675700,6 +679200,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -692519,6 +696024,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -706389,6 +709899,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -709607,6 +713122,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -716499,6 +720019,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -719717,6 +723242,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -913787,6 +917317,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -916636,6 +920171,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -921757,6 +925297,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -924606,6 +928151,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -929727,6 +933277,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -933303,6 +936858,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -937697,6 +941257,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -941273,6 +944838,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -944925,6 +948495,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -948652,6 +952227,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -952571,6 +956151,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -956308,6 +959893,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -960218,6 +963808,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -963982,6 +967577,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -967910,6 +971510,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -971740,6 +975345,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -975527,6 +979137,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -979240,6 +982855,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -982328,6 +985948,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -985129,6 +988754,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -989547,6 +993177,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -993287,6 +996922,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -996894,6 +1000534,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -999711,6 +1003356,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1003433,6 +1007083,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1007313,6 +1010968,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1011035,6 +1014695,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1014820,6 +1018485,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1018512,6 +1022182,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1022233,6 +1025908,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1380329,6 +1384009,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1383905,6 +1387590,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1388300,6 +1391990,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1391876,6 +1395571,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1396271,6 +1399971,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1399847,6 +1403552,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1404242,6 +1407952,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1407818,6 +1411533,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" 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 470ba612f0..19cae42212 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 @@ -1001,7 +1001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &678 + - &682 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -14028,7 +14028,7 @@ paths: properties: action: type: string - discussion: &771 + discussion: &775 title: Discussion description: A Discussion in a repository. type: object @@ -14766,7 +14766,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &689 + sub_issues_summary: &693 title: Sub-issues Summary type: object properties: @@ -14853,7 +14853,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &584 + properties: &585 pinned_at: type: string format: date-time @@ -14865,7 +14865,7 @@ paths: properties: *20 required: *21 nullable: true - required: &585 + required: &586 - pinned_at - pinned_by nullable: true @@ -14879,7 +14879,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &690 + issue_dependencies_summary: &694 title: Issue Dependencies Summary type: object properties: @@ -14898,7 +14898,7 @@ paths: - total_blocking issue_field_values: type: array - items: &568 + items: &569 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14909,6 +14909,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -15686,7 +15691,7 @@ paths: type: string release: allOf: - - &618 + - &622 title: Release description: A release. type: object @@ -15757,7 +15762,7 @@ paths: author: *4 assets: type: array - items: &619 + items: &623 title: Release Asset description: Data related to a release. type: object @@ -19526,7 +19531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &594 + - &598 name: all description: If `true`, show notifications marked as read. in: query @@ -19534,7 +19539,7 @@ paths: schema: type: boolean default: false - - &595 + - &599 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19544,7 +19549,7 @@ paths: type: boolean default: false - *95 - - &596 + - &600 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20072,7 +20077,7 @@ paths: - url - subscription_url examples: - default: &597 + default: &601 value: - id: '1' repository: @@ -21953,7 +21958,7 @@ paths: parameters: - *78 - *124 - - &747 + - &751 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 @@ -22065,7 +22070,7 @@ paths: - *124 - *125 - *126 - - &748 + - &752 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22073,7 +22078,7 @@ paths: schema: type: string - *129 - - &749 + - &753 name: sku description: The SKU to query for usage. in: query @@ -29577,12 +29582,12 @@ paths: required: - subject_digests examples: - default: &728 + default: &732 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &729 + withPredicateType: &733 value: subject_digests: - sha256:abc123 @@ -29626,7 +29631,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &730 + default: &734 value: attestations_subject_digests: - sha256:abc: @@ -41634,7 +41639,7 @@ paths: parameters: - *78 - *269 - - &710 + - &714 name: repo_name description: repo_name parameter in: path @@ -42562,7 +42567,7 @@ paths: - nuget - container - *78 - - &711 + - &715 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -42603,7 +42608,7 @@ paths: default: *276 '403': *29 '401': *25 - '400': &713 + '400': &717 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44811,7 +44816,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &802 + properties: &806 id: type: number description: The unique identifier of the status update. @@ -44859,7 +44864,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &803 + required: &807 - id - node_id - created_at @@ -45288,7 +45293,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &604 + auto_merge: &608 title: Auto merge description: The status of auto merging a pull request. type: object @@ -45664,7 +45669,7 @@ paths: - updated_at - project_url examples: - default: &734 + default: &738 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45841,7 +45846,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &735 + items: &739 type: object properties: name: @@ -45878,7 +45883,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &736 + iteration_configuration: &740 type: object description: The configuration for iteration fields. properties: @@ -45928,7 +45933,7 @@ paths: value: name: Due date data_type: date - single_select_field: &737 + single_select_field: &741 summary: Create a single select field value: name: Priority @@ -45955,7 +45960,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &738 + iteration_field: &742 summary: Create an iteration field value: name: Sprint @@ -45981,7 +45986,7 @@ paths: application/json: schema: *297 examples: - text_field: &739 + text_field: &743 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -45990,7 +45995,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: &740 + number_field: &744 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -45999,7 +46004,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: &741 + date_field: &745 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46008,7 +46013,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: &742 + single_select_field: &746 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46042,7 +46047,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &743 + iteration_field: &747 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46088,7 +46093,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *293 - - &744 + - &748 name: field_id description: The unique identifier of the field. in: path @@ -46103,7 +46108,7 @@ paths: application/json: schema: *297 examples: - default: &745 + default: &749 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47300,7 +47305,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &725 + schema: &729 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47477,7 +47482,7 @@ paths: parameters: - *293 - *78 - - &746 + - &750 name: view_number description: The number that identifies the project view. in: path @@ -49438,7 +49443,7 @@ paths: - *78 - *17 - *19 - - &626 + - &630 name: targets description: | A comma-separated list of rule targets to filter by. @@ -49720,7 +49725,7 @@ paths: - repository_property rules: type: array - items: &627 + items: &631 title: Repository Rule type: object description: A repository rule. @@ -49782,7 +49787,7 @@ paths: type: string enum: - required_linear_history - - &625 + - &629 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -50684,7 +50689,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &628 + - &632 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -50699,7 +50704,7 @@ paths: in: query schema: type: string - - &629 + - &633 name: time_period description: |- The time period to filter by. @@ -50715,14 +50720,14 @@ paths: - week - month default: day - - &630 + - &634 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &631 + - &635 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -50735,7 +50740,7 @@ paths: - bypass - all default: all - - &632 + - &636 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -50758,7 +50763,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &637 title: Rule Suites description: Response type: array @@ -50813,7 +50818,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &634 + default: &638 value: - id: 21 actor_id: 12 @@ -50857,7 +50862,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &635 + - &639 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -50873,7 +50878,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &640 title: Rule Suite description: Response type: object @@ -50972,7 +50977,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &637 + default: &641 value: id: 21 actor_id: 12 @@ -51219,7 +51224,7 @@ paths: type: string format: date-time examples: - default: &639 + default: &643 value: - version_id: 3 actor: @@ -51272,7 +51277,7 @@ paths: description: Response content: application/json: - schema: &640 + schema: &644 allOf: - *342 - type: object @@ -51344,7 +51349,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &641 + - &645 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51355,7 +51360,7 @@ paths: enum: - open - resolved - - &642 + - &646 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51365,7 +51370,7 @@ paths: required: false schema: type: string - - &643 + - &647 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51376,7 +51381,7 @@ paths: required: false schema: type: string - - &644 + - &648 name: exclude_providers in: query description: |- @@ -51387,7 +51392,7 @@ paths: required: false schema: type: string - - &645 + - &649 name: providers in: query description: |- @@ -51398,7 +51403,7 @@ paths: required: false schema: type: string - - &646 + - &650 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51407,7 +51412,7 @@ paths: required: false schema: type: string - - &647 + - &651 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51426,7 +51431,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &648 + - &652 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -51441,7 +51446,7 @@ paths: - *62 - *19 - *17 - - &649 + - &653 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -51451,7 +51456,7 @@ paths: required: false schema: type: string - - &650 + - &654 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -51461,7 +51466,7 @@ paths: required: false schema: type: string - - &651 + - &655 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51470,7 +51475,7 @@ paths: required: false schema: type: string - - &652 + - &656 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51479,7 +51484,7 @@ paths: schema: type: boolean default: false - - &653 + - &657 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51488,7 +51493,7 @@ paths: schema: type: boolean default: false - - &654 + - &658 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51497,7 +51502,7 @@ paths: schema: type: boolean default: false - - &655 + - &659 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51534,14 +51539,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &656 + state: &660 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &657 + resolution: &661 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -51658,8 +51663,8 @@ paths: pull request. ' - oneOf: &658 - - &660 + oneOf: &662 + - &664 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -51717,7 +51722,7 @@ paths: - blob_url - commit_sha - commit_url - - &661 + - &665 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -51772,7 +51777,7 @@ paths: - page_url - commit_sha - commit_url - - &662 + - &666 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -51792,7 +51797,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &663 + - &667 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -51812,7 +51817,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &664 + - &668 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -51832,7 +51837,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &665 + - &669 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -51846,7 +51851,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &666 + - &670 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -51860,7 +51865,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &667 + - &671 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -51874,7 +51879,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &668 + - &672 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -51894,7 +51899,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &669 + - &673 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -51914,7 +51919,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &670 + - &674 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -51934,7 +51939,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &671 + - &675 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -51954,7 +51959,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &672 + - &676 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52473,7 +52478,7 @@ paths: application/json: schema: type: array - items: &676 + items: &680 description: A repository security advisory. type: object properties: @@ -52745,7 +52750,7 @@ paths: - private_fork additionalProperties: false examples: - default: &677 + default: &681 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54655,7 +54660,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &692 + response-if-user-is-a-team-maintainer: &696 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -54720,7 +54725,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: &693 + response-if-users-membership-with-team-is-now-pending: &697 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -54834,7 +54839,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &694 + schema: &698 title: Team Repository description: A team's access to a repository. type: object @@ -55484,7 +55489,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: &695 + response-if-child-teams-exist: &699 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61129,7 +61134,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &765 + properties: &769 url: type: string format: uri @@ -61214,7 +61219,7 @@ paths: nullable: true properties: *83 required: *84 - required: &766 + required: &770 - id - node_id - sha @@ -67286,7 +67291,7 @@ paths: check. type: array items: *93 - deployment: &758 + deployment: &762 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68198,7 +68203,7 @@ paths: type: string format: date-time nullable: true - head_commit: &786 + head_commit: &790 title: Simple Commit description: A commit. type: object @@ -69954,7 +69959,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -72683,14 +72688,14 @@ paths: type: integer machines: type: array - items: &700 + items: &704 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *475 required: *476 examples: - default: &701 + default: &705 value: total_count: 2 machines: @@ -74328,7 +74333,7 @@ paths: type: array items: *487 examples: - default: &611 + default: &615 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -74619,7 +74624,7 @@ paths: type: array items: *491 examples: - default: &603 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -75177,7 +75182,7 @@ paths: application/json: schema: *487 examples: - default: &590 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75836,7 +75841,7 @@ paths: application/json: schema: type: array - items: &681 + items: &685 title: Status description: The status of a commit. type: object @@ -76805,7 +76810,7 @@ paths: - size - type - url - - &616 + - &620 title: Content File description: Content File type: object @@ -77419,7 +77424,7 @@ paths: items: type: object properties: - placeholder_id: &673 + placeholder_id: &677 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83463,7 +83468,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &794 + last_response: &798 title: Hook Response type: object properties: @@ -84515,7 +84520,7 @@ paths: parameters: - *354 - *355 - - &723 + - &727 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85100,7 +85105,7 @@ paths: type: array items: *554 examples: - default: &715 + default: &719 value: - id: 1 repository: @@ -85546,7 +85551,7 @@ paths: type: array items: *88 examples: - default: &567 + default: &568 value: - id: 1 node_id: MDU6SXNzdWUx @@ -85827,7 +85832,7 @@ paths: application/json: schema: *88 examples: - default: &564 + default: &565 value: id: 1 node_id: MDU6SXNzdWUx @@ -86017,7 +86022,7 @@ paths: type: array items: *557 examples: - default: &566 + default: &567 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -86472,7 +86477,7 @@ paths: application/json: schema: type: array - items: &563 + items: &564 title: Issue Event description: Issue Event type: object @@ -86625,6 +86630,35 @@ paths: required: - from - to + issue_type: &563 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *563 author_association: *85 lock_reason: type: string @@ -86836,7 +86870,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -87065,7 +87099,7 @@ paths: parameters: - *354 - *355 - - &565 + - &566 name: issue_number description: The number that identifies the issue. in: path @@ -87081,7 +87115,7 @@ paths: examples: default: summary: Issue - value: *564 + value: *565 pinned_comment: summary: Issue with pinned comment value: @@ -87290,7 +87324,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -87413,9 +87447,13 @@ paths: description: Response content: application/json: - schema: *88 + schema: + allOf: + - *88 + - type: object + properties: {} examples: - default: *564 + default: *565 '422': *15 '503': *122 '403': *29 @@ -87441,7 +87479,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -87469,7 +87507,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87487,7 +87525,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: content: application/json: @@ -87514,7 +87552,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87538,7 +87576,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: assignee in: path required: true @@ -87580,7 +87618,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *95 - *17 - *19 @@ -87593,7 +87631,7 @@ paths: type: array items: *557 examples: - default: *566 + default: *567 headers: Link: *70 '404': *6 @@ -87628,7 +87666,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -87689,7 +87727,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -87701,7 +87739,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '301': *358 @@ -87736,7 +87774,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -87760,7 +87798,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -87801,7 +87839,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -87815,7 +87853,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '301': *358 '400': *14 '401': *25 @@ -87849,7 +87887,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -87861,7 +87899,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '301': *358 @@ -87885,7 +87923,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -87899,7 +87937,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &571 + - &572 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -87953,7 +87991,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -88089,7 +88127,7 @@ paths: - performed_via_github_app - assignee - assigner - - &573 + - &574 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -88140,7 +88178,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &575 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -88191,7 +88229,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -88245,7 +88283,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &577 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -88292,7 +88330,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -88339,7 +88377,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -88399,7 +88437,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Locked Issue Event description: Locked Issue Event type: object @@ -88447,7 +88485,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -88513,7 +88551,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &582 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -88579,7 +88617,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &583 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -88645,7 +88683,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &583 + - &584 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -88701,6 +88739,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &587 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *563 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &588 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + prev_issue_type: *563 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &589 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *563 + prev_issue_type: *563 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -88755,7 +88930,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -88765,15 +88940,17 @@ paths: application/json: schema: type: array - items: *568 + items: *569 examples: - default: &569 + default: &570 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -88782,14 +88959,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -88835,7 +89015,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -88905,9 +89085,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *568 + items: *569 examples: - default: *569 + default: *570 '400': *14 '403': *29 '404': *6 @@ -88945,7 +89125,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89010,9 +89190,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *568 + items: *569 examples: - default: *569 + default: *570 '400': *14 '403': *29 '404': *6 @@ -89045,7 +89225,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *256 responses: '204': @@ -89073,7 +89253,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -89085,7 +89265,7 @@ paths: type: array items: *87 examples: - default: &570 + default: &571 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89123,7 +89303,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89168,7 +89348,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 '301': *358 '404': *6 '410': *556 @@ -89190,7 +89370,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89252,7 +89432,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 '301': *358 '404': *6 '410': *556 @@ -89274,7 +89454,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '204': description: Response @@ -89301,7 +89481,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: name in: path required: true @@ -89349,7 +89529,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: false content: @@ -89397,7 +89577,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '204': description: Response @@ -89429,7 +89609,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 responses: '200': description: Response @@ -89437,7 +89617,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '301': *358 '404': *6 '410': *556 @@ -89459,7 +89639,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -89511,7 +89691,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89576,7 +89756,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *560 responses: '204': @@ -89608,7 +89788,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89632,7 +89812,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -89667,7 +89847,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -89679,7 +89859,7 @@ paths: type: array items: *88 examples: - default: *567 + default: *568 headers: Link: *70 '404': *6 @@ -89713,7 +89893,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89742,7 +89922,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -89771,7 +89951,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 requestBody: required: true content: @@ -89804,7 +89984,7 @@ paths: application/json: schema: *88 examples: - default: *564 + default: *565 '403': *29 '404': *6 '422': *7 @@ -89828,7 +90008,7 @@ paths: parameters: - *354 - *355 - - *565 + - *566 - *17 - *19 responses: @@ -89843,7 +90023,6 @@ paths: description: Timeline Event type: object anyOf: - - *571 - *572 - *573 - *574 @@ -89856,6 +90035,7 @@ paths: - *581 - *582 - *583 + - *584 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -89916,8 +90096,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true required: - event @@ -90172,7 +90352,7 @@ paths: type: string comments: type: array - items: &605 + items: &609 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -90521,6 +90701,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *587 + - *588 + - *589 examples: default: value: @@ -90704,7 +90887,7 @@ paths: application/json: schema: type: array - items: &586 + items: &590 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -90807,9 +90990,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *590 examples: - default: &587 + default: &591 value: id: 1 key: ssh-rsa AAA... @@ -90845,7 +91028,7 @@ paths: parameters: - *354 - *355 - - &588 + - &592 name: key_id description: The unique identifier of the key. in: path @@ -90857,9 +91040,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *590 examples: - default: *587 + default: *591 '404': *6 x-github: githubCloudOnly: false @@ -90879,7 +91062,7 @@ paths: parameters: - *354 - *355 - - *588 + - *592 responses: '204': description: Response @@ -90912,7 +91095,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 headers: Link: *70 '404': *6 @@ -90972,7 +91155,7 @@ paths: application/json: schema: *87 examples: - default: &589 + default: &593 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -91018,7 +91201,7 @@ paths: application/json: schema: *87 examples: - default: *589 + default: *593 '404': *6 x-github: githubCloudOnly: false @@ -91418,7 +91601,7 @@ paths: application/json: schema: *487 examples: - default: *590 + default: *594 '204': description: Response when already merged '404': @@ -91485,7 +91668,7 @@ paths: application/json: schema: type: array - items: &591 + items: &595 title: Milestone description: A collection of related issues and pull requests. type: object @@ -91587,9 +91770,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: &592 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -91650,7 +91833,7 @@ paths: parameters: - *354 - *355 - - &593 + - &597 name: milestone_number description: The number that identifies the milestone. in: path @@ -91662,9 +91845,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: *592 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -91683,7 +91866,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 requestBody: required: false content: @@ -91721,9 +91904,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *595 examples: - default: *592 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91741,7 +91924,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 responses: '204': description: Response @@ -91764,7 +91947,7 @@ paths: parameters: - *354 - *355 - - *593 + - *597 - *17 - *19 responses: @@ -91776,7 +91959,7 @@ paths: type: array items: *87 examples: - default: *570 + default: *571 headers: Link: *70 x-github: @@ -91797,10 +91980,10 @@ paths: parameters: - *354 - *355 - - *594 - - *595 + - *598 + - *599 - *95 - - *596 + - *600 - *17 - *19 responses: @@ -91812,7 +91995,7 @@ paths: type: array items: *115 examples: - default: *597 + default: *601 headers: Link: *70 x-github: @@ -91902,7 +92085,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &602 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -92027,7 +92210,7 @@ paths: - custom_404 - public examples: - default: &599 + default: &603 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -92123,9 +92306,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *602 examples: - default: *599 + default: *603 '422': *15 '409': *54 x-github: @@ -92286,7 +92469,7 @@ paths: application/json: schema: type: array - items: &600 + items: &604 title: Page Build description: Page Build type: object @@ -92433,9 +92616,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *604 examples: - default: &601 + default: &605 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -92495,9 +92678,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *604 examples: - default: *601 + default: *605 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92625,7 +92808,7 @@ paths: parameters: - *354 - *355 - - &602 + - &606 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -92685,7 +92868,7 @@ paths: parameters: - *354 - *355 - - *602 + - *606 responses: '204': *61 '404': *6 @@ -93220,7 +93403,7 @@ paths: type: array items: *491 examples: - default: *603 + default: *607 headers: Link: *70 '304': *37 @@ -93318,7 +93501,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &611 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -93518,7 +93701,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *604 + auto_merge: *608 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -93608,7 +93791,7 @@ paths: - merged_by - review_comments examples: - default: &608 + default: &612 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -94145,9 +94328,9 @@ paths: application/json: schema: type: array - items: *605 + items: *609 examples: - default: &610 + default: &614 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94232,9 +94415,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: - default: &606 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -94333,9 +94516,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: - default: *606 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94538,7 +94721,7 @@ paths: parameters: - *354 - *355 - - &609 + - &613 name: pull_number description: The number that identifies the pull request. in: path @@ -94551,9 +94734,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *607 + schema: *611 examples: - default: *608 + default: *612 '304': *37 '404': *6 '406': @@ -94590,7 +94773,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -94632,9 +94815,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *611 examples: - default: *608 + default: *612 '422': *15 '403': *29 x-github: @@ -94658,7 +94841,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -94760,7 +94943,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -94781,9 +94964,9 @@ paths: application/json: schema: type: array - items: *605 + items: *609 examples: - default: *610 + default: *614 headers: Link: *70 x-github: @@ -94818,7 +95001,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -94923,7 +95106,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: example-for-a-multi-line-comment: value: @@ -95013,7 +95196,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *104 requestBody: required: true @@ -95036,7 +95219,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *609 examples: default: value: @@ -95124,7 +95307,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -95136,7 +95319,7 @@ paths: type: array items: *487 examples: - default: *611 + default: *615 headers: Link: *70 x-github: @@ -95168,7 +95351,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -95218,7 +95401,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 responses: '204': description: Response if pull request has been merged @@ -95243,7 +95426,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -95356,7 +95539,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 responses: '200': description: Response @@ -95433,7 +95616,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -96008,7 +96191,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: true content: @@ -96529,7 +96712,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 - *17 - *19 responses: @@ -96539,7 +96722,7 @@ paths: application/json: schema: type: array - items: &612 + items: &616 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -96692,7 +96875,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -96778,9 +96961,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: &614 + default: &618 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -96845,8 +97028,8 @@ paths: parameters: - *354 - *355 - - *609 - - &613 + - *613 + - &617 name: review_id description: The unique identifier of the review. in: path @@ -96858,9 +97041,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: &615 + default: &619 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -96921,8 +97104,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -96945,7 +97128,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: default: value: @@ -97009,16 +97192,16 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 responses: '200': description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: *614 + default: *618 '422': *7 '404': *6 x-github: @@ -97047,8 +97230,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 - *17 - *19 responses: @@ -97285,8 +97468,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -97314,7 +97497,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: default: value: @@ -97379,8 +97562,8 @@ paths: parameters: - *354 - *355 - - *609 - *613 + - *617 requestBody: required: true content: @@ -97415,9 +97598,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *616 examples: - default: *615 + default: *619 '404': *6 '422': *7 '403': *29 @@ -97441,7 +97624,7 @@ paths: parameters: - *354 - *355 - - *609 + - *613 requestBody: required: false content: @@ -97518,9 +97701,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *620 examples: - default: &617 + default: &621 value: type: file encoding: base64 @@ -97583,9 +97766,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *620 examples: - default: *617 + default: *621 '404': *6 '422': *15 x-github: @@ -97618,7 +97801,7 @@ paths: application/json: schema: type: array - items: *618 + items: *622 examples: default: value: @@ -97789,9 +97972,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: &622 + default: &626 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -97898,7 +98081,7 @@ paths: parameters: - *354 - *355 - - &620 + - &624 name: asset_id description: The unique identifier of the asset. in: path @@ -97910,9 +98093,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: &621 + default: &625 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -97965,7 +98148,7 @@ paths: parameters: - *354 - *355 - - *620 + - *624 requestBody: required: false content: @@ -97993,9 +98176,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: *621 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98013,7 +98196,7 @@ paths: parameters: - *354 - *355 - - *620 + - *624 responses: '204': description: Response @@ -98131,9 +98314,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -98165,9 +98348,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': *6 x-github: githubCloudOnly: false @@ -98191,7 +98374,7 @@ paths: parameters: - *354 - *355 - - &623 + - &627 name: release_id description: The unique identifier of the release. in: path @@ -98205,9 +98388,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '401': description: Unauthorized x-github: @@ -98227,7 +98410,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 requestBody: required: false content: @@ -98291,9 +98474,9 @@ paths: description: Response content: application/json: - schema: *618 + schema: *622 examples: - default: *622 + default: *626 '404': description: Not Found if the discussion category name is invalid content: @@ -98316,7 +98499,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 responses: '204': description: Response @@ -98339,7 +98522,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - *17 - *19 responses: @@ -98349,7 +98532,7 @@ paths: application/json: schema: type: array - items: *619 + items: *623 examples: default: value: @@ -98432,7 +98615,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - name: name in: query required: true @@ -98458,7 +98641,7 @@ paths: description: Response for successful upload content: application/json: - schema: *619 + schema: *623 examples: response-for-successful-upload: value: @@ -98515,7 +98698,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -98564,7 +98747,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 requestBody: required: true content: @@ -98627,7 +98810,7 @@ paths: parameters: - *354 - *355 - - *623 + - *627 - *560 responses: '204': @@ -98671,7 +98854,7 @@ paths: oneOf: - allOf: - *318 - - &624 + - &628 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -98692,67 +98875,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *319 - - *624 + - *628 - allOf: - *320 - - *624 + - *628 - allOf: - *321 - - *624 + - *628 - allOf: - - *625 - - *624 + - *629 + - *628 - allOf: - *322 - - *624 + - *628 - allOf: - *323 - - *624 + - *628 - allOf: - *324 - - *624 + - *628 - allOf: - *325 - - *624 + - *628 - allOf: - *326 - - *624 + - *628 - allOf: - *327 - - *624 + - *628 - allOf: - *328 - - *624 + - *628 - allOf: - *329 - - *624 + - *628 - allOf: - *330 - - *624 + - *628 - allOf: - *331 - - *624 + - *628 - allOf: - *336 - - *624 + - *628 - allOf: - *337 - - *624 + - *628 - allOf: - *338 - - *624 + - *628 - allOf: - *332 - - *624 + - *628 - allOf: - *333 - - *624 + - *628 - allOf: - *334 - - *624 + - *628 - allOf: - *335 - - *624 + - *628 examples: default: value: @@ -98803,7 +98986,7 @@ paths: schema: type: boolean default: true - - *626 + - *630 responses: '200': description: Response @@ -98888,7 +99071,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *627 + items: *631 required: - name - enforcement @@ -98921,7 +99104,7 @@ paths: application/json: schema: *339 examples: - default: &638 + default: &642 value: id: 42 name: super cool ruleset @@ -98971,11 +99154,11 @@ paths: parameters: - *354 - *355 - - *628 - - *629 - - *630 - - *631 - *632 + - *633 + - *634 + - *635 + - *636 - *17 - *19 responses: @@ -98983,9 +99166,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *637 examples: - default: *634 + default: *638 '404': *6 '500': *55 x-github: @@ -99008,15 +99191,15 @@ paths: parameters: - *354 - *355 - - *635 + - *639 responses: '200': description: Response content: application/json: - schema: *636 + schema: *640 examples: - default: *637 + default: *641 '404': *6 '500': *55 x-github: @@ -99067,7 +99250,7 @@ paths: application/json: schema: *339 examples: - default: *638 + default: *642 '404': *6 '500': *55 put: @@ -99120,7 +99303,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *627 + items: *631 examples: default: value: @@ -99150,7 +99333,7 @@ paths: application/json: schema: *339 examples: - default: *638 + default: *642 '404': *6 '422': *15 '500': *55 @@ -99212,7 +99395,7 @@ paths: type: array items: *342 examples: - default: *639 + default: *643 '404': *6 '500': *55 x-github: @@ -99250,7 +99433,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *644 examples: default: value: @@ -99307,24 +99490,24 @@ paths: parameters: - *354 - *355 - - *641 - - *642 - - *643 - - *644 - *645 - *646 - *647 - *648 - - *62 - - *19 - - *17 - *649 - *650 - *651 - *652 + - *62 + - *19 + - *17 - *653 - *654 - *655 + - *656 + - *657 + - *658 + - *659 responses: '200': description: Response @@ -99332,7 +99515,7 @@ paths: application/json: schema: type: array - items: &659 + items: &663 type: object properties: number: *188 @@ -99351,8 +99534,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *656 - resolution: *657 + state: *660 + resolution: *661 resolved_at: type: string format: date-time @@ -99458,7 +99641,7 @@ paths: pull request. ' - oneOf: *658 + oneOf: *662 nullable: true has_more_locations: type: boolean @@ -99625,13 +99808,13 @@ paths: - *354 - *355 - *451 - - *654 + - *658 responses: '200': description: Response content: application/json: - schema: *659 + schema: *663 examples: default: value: @@ -99695,8 +99878,8 @@ paths: schema: type: object properties: - state: *656 - resolution: *657 + state: *660 + resolution: *661 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -99740,7 +99923,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *663 examples: default: value: @@ -99852,7 +100035,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &816 + items: &820 type: object properties: type: @@ -99878,10 +100061,6 @@ paths: example: commit details: oneOf: - - *660 - - *661 - - *662 - - *663 - *664 - *665 - *666 @@ -99891,6 +100070,10 @@ paths: - *670 - *671 - *672 + - *673 + - *674 + - *675 + - *676 examples: default: value: @@ -99985,14 +100168,14 @@ paths: schema: type: object properties: - reason: &674 + reason: &678 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *673 + placeholder_id: *677 required: - reason - placeholder_id @@ -100009,7 +100192,7 @@ paths: schema: type: object properties: - reason: *674 + reason: *678 expire_at: type: string format: date-time @@ -100071,7 +100254,7 @@ paths: properties: incremental_scans: type: array - items: &675 + items: &679 description: Information on a single scan performed by secret scanning on the repository type: object @@ -100102,15 +100285,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *675 + items: *679 backfill_scans: type: array - items: *675 + items: *679 custom_pattern_backfill_scans: type: array items: allOf: - - *675 + - *679 - type: object properties: pattern_name: @@ -100123,7 +100306,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *675 + items: *679 examples: default: value: @@ -100233,9 +100416,9 @@ paths: application/json: schema: type: array - items: *676 + items: *680 examples: - default: *677 + default: *681 '400': *14 '404': *6 x-github: @@ -100419,9 +100602,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: &679 + default: &683 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -100756,7 +100939,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: default: value: @@ -100904,15 +101087,15 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '200': description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: *679 + default: *683 '403': *29 '404': *6 x-github: @@ -100938,7 +101121,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 requestBody: required: true content: @@ -101097,10 +101280,10 @@ paths: description: Response content: application/json: - schema: *676 + schema: *680 examples: - default: *679 - add_credit: *679 + default: *683 + add_credit: *683 '403': *29 '404': *6 '422': @@ -101140,7 +101323,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '202': *39 '400': *14 @@ -101169,7 +101352,7 @@ paths: parameters: - *354 - *355 - - *678 + - *682 responses: '202': description: Response @@ -101313,7 +101496,7 @@ paths: application/json: schema: type: array - items: &680 + items: &684 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -101686,7 +101869,7 @@ paths: application/json: schema: type: array - items: *680 + items: *684 examples: default: value: @@ -101774,7 +101957,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *685 examples: default: value: @@ -101868,7 +102051,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &682 + schema: &686 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -101963,7 +102146,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *686 examples: default: value: @@ -102170,7 +102353,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &687 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -102182,7 +102365,7 @@ paths: required: - names examples: - default: &684 + default: &688 value: names: - octocat @@ -102237,9 +102420,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *687 examples: - default: *684 + default: *688 '404': *6 '422': *7 x-github: @@ -102262,7 +102445,7 @@ paths: parameters: - *354 - *355 - - &685 + - &689 name: per description: The time frame to display results for. in: query @@ -102291,7 +102474,7 @@ paths: example: 128 clones: type: array - items: &686 + items: &690 title: Traffic type: object properties: @@ -102532,7 +102715,7 @@ paths: parameters: - *354 - *355 - - *685 + - *689 responses: '200': description: Response @@ -102551,7 +102734,7 @@ paths: example: 3782 views: type: array - items: *686 + items: *690 required: - uniques - count @@ -103322,7 +103505,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &687 + text_matches: &691 title: Search Result Text Matches type: array items: @@ -103484,7 +103667,7 @@ paths: enum: - author-date - committer-date - - &688 + - &692 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -103612,7 +103795,7 @@ paths: type: number node_id: type: string - text_matches: *687 + text_matches: *691 required: - sha - node_id @@ -103804,7 +103987,7 @@ paths: - interactions - created - updated - - *688 + - *692 - *17 - *19 - name: advanced_search @@ -103918,11 +104101,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: type: string state_reason: @@ -103947,7 +104130,7 @@ paths: type: string format: date-time nullable: true - text_matches: *687 + text_matches: *691 pull_request: type: object properties: @@ -104227,7 +104410,7 @@ paths: enum: - created - updated - - *688 + - *692 - *17 - *19 responses: @@ -104271,7 +104454,7 @@ paths: nullable: true score: type: number - text_matches: *687 + text_matches: *691 required: - id - node_id @@ -104356,7 +104539,7 @@ paths: - forks - help-wanted-issues - updated - - *688 + - *692 - *17 - *19 responses: @@ -104604,7 +104787,7 @@ paths: - admin - pull - push - text_matches: *687 + text_matches: *691 temp_clone_token: type: string allow_merge_commit: @@ -104904,7 +105087,7 @@ paths: type: string format: uri nullable: true - text_matches: *687 + text_matches: *691 related: type: array nullable: true @@ -105095,7 +105278,7 @@ paths: - followers - repositories - joined - - *688 + - *692 - *17 - *19 responses: @@ -105199,7 +105382,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *687 + text_matches: *691 blog: type: string nullable: true @@ -105278,7 +105461,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &691 + - &695 name: team_id description: The unique identifier of the team. in: path @@ -105319,7 +105502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *691 + - *695 requestBody: required: true content: @@ -105419,7 +105602,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *691 + - *695 responses: '204': description: Response @@ -105448,7 +105631,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -105486,7 +105669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *691 + - *695 - name: role description: Filters members returned by their role in the team. in: query @@ -105537,7 +105720,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -105574,7 +105757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -105614,7 +105797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -105651,7 +105834,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 responses: '200': @@ -105660,7 +105843,7 @@ paths: application/json: schema: *353 examples: - response-if-user-is-a-team-maintainer: *692 + response-if-user-is-a-team-maintainer: *696 '404': *6 x-github: githubCloudOnly: false @@ -105693,7 +105876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 requestBody: required: false @@ -105721,7 +105904,7 @@ paths: application/json: schema: *353 examples: - response-if-users-membership-with-team-is-now-pending: *693 + response-if-users-membership-with-team-is-now-pending: *697 '403': description: Forbidden if team synchronization is set up '422': @@ -105755,7 +105938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *691 + - *695 - *74 responses: '204': @@ -105783,7 +105966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -105825,7 +106008,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *691 + - *695 - *354 - *355 responses: @@ -105833,7 +106016,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *694 + schema: *698 examples: alternative-response-with-extra-repository-information: value: @@ -105983,7 +106166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *691 + - *695 - *354 - *355 requestBody: @@ -106035,7 +106218,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *691 + - *695 - *354 - *355 responses: @@ -106062,7 +106245,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *691 + - *695 - *17 - *19 responses: @@ -106074,7 +106257,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: *695 + response-if-child-teams-exist: *699 headers: Link: *70 '404': *6 @@ -106107,7 +106290,7 @@ paths: application/json: schema: oneOf: - - &696 + - &700 title: Private User description: Private User type: object @@ -106310,7 +106493,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &722 + - &726 title: Public User description: Public User type: object @@ -106622,7 +106805,7 @@ paths: description: Response content: application/json: - schema: *696 + schema: *700 examples: default: value: @@ -107020,7 +107203,7 @@ paths: type: integer secrets: type: array - items: &697 + items: &701 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -107136,7 +107319,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *701 examples: default: value: @@ -107549,7 +107732,7 @@ paths: description: Response content: application/json: - schema: &698 + schema: &702 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107590,7 +107773,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &699 + default: &703 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -107635,9 +107818,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *702 examples: - default: *699 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -107674,9 +107857,9 @@ paths: type: integer machines: type: array - items: *700 + items: *704 examples: - default: *701 + default: *705 '304': *37 '500': *55 '401': *25 @@ -108615,7 +108798,7 @@ paths: type: array items: *275 examples: - default: &712 + default: &716 value: - id: 197 name: hello_docker @@ -108716,7 +108899,7 @@ paths: application/json: schema: type: array - items: &702 + items: &706 title: Email description: Email type: object @@ -108781,9 +108964,9 @@ paths: application/json: schema: type: array - items: *702 + items: *706 examples: - default: &714 + default: &718 value: - email: octocat@github.com verified: true @@ -108858,7 +109041,7 @@ paths: application/json: schema: type: array - items: *702 + items: *706 examples: default: value: @@ -109114,7 +109297,7 @@ paths: application/json: schema: type: array - items: &703 + items: &707 title: GPG Key description: A unique encryption key type: object @@ -109245,7 +109428,7 @@ paths: - subkeys - revoked examples: - default: &732 + default: &736 value: - id: 3 name: Octocat's GPG Key @@ -109330,9 +109513,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *707 examples: - default: &704 + default: &708 value: id: 3 name: Octocat's GPG Key @@ -109389,7 +109572,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &705 + - &709 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109401,9 +109584,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *707 examples: - default: *704 + default: *708 '404': *6 '304': *37 '403': *29 @@ -109426,7 +109609,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *705 + - *709 responses: '204': description: Response @@ -109893,7 +110076,7 @@ paths: application/json: schema: type: array - items: &706 + items: &710 title: Key description: Key type: object @@ -109994,9 +110177,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *710 examples: - default: &707 + default: &711 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110029,15 +110212,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *588 + - *592 responses: '200': description: Response content: application/json: - schema: *706 + schema: *710 examples: - default: *707 + default: *711 '404': *6 '304': *37 '403': *29 @@ -110060,7 +110243,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *588 + - *592 responses: '204': description: Response @@ -110093,7 +110276,7 @@ paths: application/json: schema: type: array - items: &708 + items: &712 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -110161,7 +110344,7 @@ paths: - account - plan examples: - default: &709 + default: &713 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -110223,9 +110406,9 @@ paths: application/json: schema: type: array - items: *708 + items: *712 examples: - default: *709 + default: *713 headers: Link: *70 '304': *37 @@ -111234,7 +111417,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *269 - - *710 + - *714 responses: '204': description: Response @@ -111347,7 +111530,7 @@ paths: - docker - nuget - container - - *711 + - *715 - *19 - *17 responses: @@ -111359,8 +111542,8 @@ paths: type: array items: *275 examples: - default: *712 - '400': *713 + default: *716 + '400': *717 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111389,7 +111572,7 @@ paths: application/json: schema: *275 examples: - default: &733 + default: &737 value: id: 40201 name: octo-name @@ -111751,9 +111934,9 @@ paths: application/json: schema: type: array - items: *702 + items: *706 examples: - default: *714 + default: *718 headers: Link: *70 '304': *37 @@ -111866,7 +112049,7 @@ paths: type: array items: *82 examples: - default: &721 + default: &725 summary: Default response value: - id: 1296269 @@ -112213,7 +112396,7 @@ paths: type: array items: *554 examples: - default: *715 + default: *719 headers: Link: *70 '304': *37 @@ -112293,7 +112476,7 @@ paths: application/json: schema: type: array - items: &716 + items: &720 title: Social account description: Social media account type: object @@ -112308,7 +112491,7 @@ paths: - provider - url examples: - default: &717 + default: &721 value: - provider: twitter url: https://twitter.com/github @@ -112370,9 +112553,9 @@ paths: application/json: schema: type: array - items: *716 + items: *720 examples: - default: *717 + default: *721 '422': *15 '304': *37 '404': *6 @@ -112459,7 +112642,7 @@ paths: application/json: schema: type: array - items: &718 + items: &722 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112479,7 +112662,7 @@ paths: - title - created_at examples: - default: &750 + default: &754 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112543,9 +112726,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: &719 + default: &723 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112575,7 +112758,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: - - &720 + - &724 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112587,9 +112770,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: *719 + default: *723 '404': *6 '304': *37 '403': *29 @@ -112612,7 +112795,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: - - *720 + - *724 responses: '204': description: Response @@ -112641,7 +112824,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &751 + - &755 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 @@ -112666,11 +112849,11 @@ paths: type: array items: *82 examples: - default-response: *721 + default-response: *725 application/vnd.github.v3.star+json: schema: type: array - items: &752 + items: &756 title: Starred Repository description: Starred Repository type: object @@ -113039,10 +113222,10 @@ paths: application/json: schema: oneOf: - - *696 - - *722 + - *700 + - *726 examples: - default-response: &726 + default-response: &730 summary: Default response value: login: octocat @@ -113077,7 +113260,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &727 + response-with-git-hub-plan-information: &731 summary: Response with GitHub plan information value: login: octocat @@ -113134,7 +113317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &724 + - &728 name: user_id description: The unique identifier of the user. in: path @@ -113200,7 +113383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *723 + - *727 - *17 responses: '200': @@ -113235,7 +113418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *724 + - *728 - *293 requestBody: required: true @@ -113307,7 +113490,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *725 + schema: *729 examples: table_view: summary: Response for creating a table view @@ -113359,11 +113542,11 @@ paths: application/json: schema: oneOf: - - *696 - - *722 + - *700 + - *726 examples: - default-response: *726 - response-with-git-hub-plan-information: *727 + default-response: *730 + response-with-git-hub-plan-information: *731 '404': *6 x-github: githubCloudOnly: false @@ -113413,8 +113596,8 @@ paths: required: - subject_digests examples: - default: *728 - withPredicateType: *729 + default: *732 + withPredicateType: *733 responses: '200': description: Response @@ -113453,7 +113636,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *730 + default: *734 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113923,7 +114106,7 @@ paths: application/json: schema: *204 examples: - default: &731 + default: &735 summary: Example response for a user copilot space value: id: 42 @@ -114024,7 +114207,7 @@ paths: application/json: schema: *204 examples: - default: *731 + default: *735 '403': *29 '404': *6 x-github: @@ -114147,7 +114330,7 @@ paths: application/json: schema: *204 examples: - default: *731 + default: *735 '403': *29 '404': *6 '422': *15 @@ -114915,7 +115098,7 @@ paths: type: array items: *275 examples: - default: *712 + default: *716 '403': *29 '401': *25 x-github: @@ -115299,9 +115482,9 @@ paths: application/json: schema: type: array - items: *703 + items: *707 examples: - default: *732 + default: *736 headers: Link: *70 x-github: @@ -115529,7 +115712,7 @@ paths: - docker - nuget - container - - *711 + - *715 - *74 - *19 - *17 @@ -115542,10 +115725,10 @@ paths: type: array items: *275 examples: - default: *712 + default: *716 '403': *29 '401': *25 - '400': *713 + '400': *717 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115575,7 +115758,7 @@ paths: application/json: schema: *275 examples: - default: *733 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115924,7 +116107,7 @@ paths: type: array items: *297 examples: - default: *734 + default: *738 headers: Link: *70 '304': *37 @@ -115984,7 +116167,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *735 + items: *739 required: - name - data_type @@ -116000,7 +116183,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *736 + iteration_configuration: *740 required: - name - data_type @@ -116022,8 +116205,8 @@ paths: value: name: Due date data_type: date - single_select_field: *737 - iteration_field: *738 + single_select_field: *741 + iteration_field: *742 responses: '201': description: Response @@ -116031,11 +116214,11 @@ paths: application/json: schema: *297 examples: - text_field: *739 - number_field: *740 - date_field: *741 - single_select_field: *742 - iteration_field: *743 + text_field: *743 + number_field: *744 + date_field: *745 + single_select_field: *746 + iteration_field: *747 '304': *37 '403': *29 '401': *25 @@ -116057,7 +116240,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *293 - - *744 + - *748 - *74 responses: '200': @@ -116066,7 +116249,7 @@ paths: application/json: schema: *297 examples: - default: *745 + default: *749 headers: Link: *70 '304': *37 @@ -116420,7 +116603,7 @@ paths: parameters: - *293 - *74 - - *746 + - *750 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -116959,7 +117142,7 @@ paths: parameters: - *74 - *124 - - *747 + - *751 - *126 responses: '200': @@ -117058,9 +117241,9 @@ paths: - *124 - *125 - *126 - - *748 + - *752 - *129 - - *749 + - *753 responses: '200': description: Response when getting a billing usage summary @@ -117194,9 +117377,9 @@ paths: application/json: schema: type: array - items: *716 + items: *720 examples: - default: *717 + default: *721 headers: Link: *70 x-github: @@ -117226,9 +117409,9 @@ paths: application/json: schema: type: array - items: *718 + items: *722 examples: - default: *750 + default: *754 headers: Link: *70 x-github: @@ -117253,7 +117436,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *751 + - *755 - *62 - *17 - *19 @@ -117265,11 +117448,11 @@ paths: schema: anyOf: - type: array - items: *752 + items: *756 - type: array items: *82 examples: - default-response: *721 + default-response: *725 headers: Link: *70 x-github: @@ -117428,7 +117611,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &753 + enterprise: &757 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117486,7 +117669,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &754 + installation: &758 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117505,7 +117688,7 @@ x-webhooks: required: - id - node_id - organization: &755 + organization: &759 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117565,13 +117748,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &756 + repository: &760 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: &788 + properties: &792 id: description: Unique identifier of the repository example: 42 @@ -118255,7 +118438,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &789 + required: &793 - archive_url - assignees_url - blobs_url @@ -118406,10 +118589,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -118485,11 +118668,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: &757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: &761 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) @@ -118712,11 +118895,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -118899,11 +119082,11 @@ x-webhooks: - everyone required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - rule: *757 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + rule: *761 sender: *4 required: - action @@ -118987,7 +119170,7 @@ x-webhooks: type: string enum: - completed - check_run: &759 + check_run: &763 title: CheckRun description: A check performed on the code of a given code change type: object @@ -119078,7 +119261,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *758 + deployment: *762 details_url: example: https://example.com type: string @@ -119163,10 +119346,10 @@ x-webhooks: - output - app - pull_requests - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -119557,11 +119740,11 @@ x-webhooks: type: string enum: - created - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -119955,11 +120138,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 requested_action: description: The action requested by the user. type: object @@ -120362,11 +120545,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *759 - installation: *754 - enterprise: *753 - organization: *755 - repository: *756 + check_run: *763 + installation: *758 + enterprise: *757 + organization: *759 + repository: *760 sender: *4 required: - check_run @@ -121336,10 +121519,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -122038,10 +122221,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -122734,10 +122917,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -123048,20 +123231,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &760 + commit_oid: &764 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *753 - installation: *754 - organization: *755 - ref: &761 + enterprise: *757 + installation: *758 + organization: *759 + ref: &765 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -123456,12 +123639,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -123727,12 +123910,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124064,12 +124247,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124343,16 +124526,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 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: *756 + repository: *760 sender: *4 required: - action @@ -124589,12 +124772,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *760 - enterprise: *753 - installation: *754 - organization: *755 - ref: *761 - repository: *756 + commit_oid: *764 + enterprise: *757 + installation: *758 + organization: *759 + ref: *765 + repository: *760 sender: *4 required: - action @@ -124905,10 +125088,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -125163,10 +125346,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -125246,18 +125429,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *755 - pusher_type: &762 + organization: *759 + pusher_type: &766 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &763 + ref: &767 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -125267,7 +125450,7 @@ x-webhooks: enum: - tag - branch - repository: *756 + repository: *760 sender: *4 required: - ref @@ -125350,9 +125533,9 @@ x-webhooks: enum: - created definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125437,9 +125620,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125517,9 +125700,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125597,9 +125780,9 @@ x-webhooks: enum: - updated definition: *305 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -125676,10 +125859,10 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - repository: *756 - organization: *755 + enterprise: *757 + installation: *758 + repository: *760 + organization: *759 sender: *4 new_property_values: type: array @@ -125764,18 +125947,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - pusher_type: *762 - ref: *763 + enterprise: *757 + installation: *758 + organization: *759 + pusher_type: *766 + ref: *767 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *756 + repository: *760 sender: *4 required: - ref @@ -125856,10 +126039,10 @@ x-webhooks: enum: - assignees_changed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -125940,10 +126123,10 @@ x-webhooks: enum: - auto_dismissed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126025,10 +126208,10 @@ x-webhooks: enum: - auto_reopened alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126110,10 +126293,10 @@ x-webhooks: enum: - created alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126193,10 +126376,10 @@ x-webhooks: enum: - dismissed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126276,10 +126459,10 @@ x-webhooks: enum: - fixed alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126360,10 +126543,10 @@ x-webhooks: enum: - reintroduced alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126443,10 +126626,10 @@ x-webhooks: enum: - reopened alert: *510 - installation: *754 - organization: *755 - enterprise: *753 - repository: *756 + installation: *758 + organization: *759 + enterprise: *757 + repository: *760 sender: *4 required: - action @@ -126523,9 +126706,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - key: &764 + enterprise: *757 + installation: *758 + key: &768 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126561,8 +126744,8 @@ x-webhooks: - verified - created_at - read_only - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -126639,11 +126822,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - key: *764 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + key: *768 + organization: *759 + repository: *760 sender: *4 required: - action @@ -127199,12 +127382,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: &770 + workflow: &774 title: Workflow type: object nullable: true @@ -127945,15 +128128,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *765 - required: *766 + properties: *769 + required: *770 nullable: true pull_requests: type: array - items: *607 - repository: *756 - organization: *755 - installation: *754 + items: *611 + repository: *760 + organization: *759 + installation: *758 sender: *4 responses: '200': @@ -128024,7 +128207,7 @@ x-webhooks: type: string enum: - approved - approver: &767 + approver: &771 type: object properties: avatar_url: @@ -128067,11 +128250,11 @@ x-webhooks: type: string comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: &768 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: &772 type: array items: type: object @@ -128150,7 +128333,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &769 + workflow_job_run: &773 type: object properties: conclusion: @@ -128881,18 +129064,18 @@ x-webhooks: type: string enum: - rejected - approver: *767 + approver: *771 comment: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - reviewers: *768 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + reviewers: *772 sender: *4 since: type: string - workflow_job_run: *769 + workflow_job_run: *773 workflow_job_runs: type: array items: @@ -129596,13 +129779,13 @@ x-webhooks: type: string enum: - requested - enterprise: *753 + enterprise: *757 environment: type: string - installation: *754 - organization: *755 - repository: *756 - requestor: &775 + installation: *758 + organization: *759 + repository: *760 + requestor: &779 title: User type: object nullable: true @@ -131491,12 +131674,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Deployment Workflow Run type: object @@ -132176,7 +132359,7 @@ x-webhooks: type: string enum: - answered - answer: &773 + answer: &777 type: object properties: author_association: @@ -132333,11 +132516,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132464,11 +132647,11 @@ x-webhooks: - from required: - category - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132551,11 +132734,11 @@ x-webhooks: type: string enum: - closed - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132637,7 +132820,7 @@ x-webhooks: type: string enum: - created - comment: &772 + comment: &776 type: object properties: author_association: @@ -132794,11 +132977,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132881,12 +133064,12 @@ x-webhooks: type: string enum: - deleted - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -132981,12 +133164,12 @@ x-webhooks: - from required: - body - comment: *772 - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + comment: *776 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133070,11 +133253,11 @@ x-webhooks: type: string enum: - created - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133156,11 +133339,11 @@ x-webhooks: type: string enum: - deleted - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133260,11 +133443,11 @@ x-webhooks: type: string required: - from - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133346,10 +133529,10 @@ x-webhooks: type: string enum: - labeled - discussion: *771 - enterprise: *753 - installation: *754 - label: &774 + discussion: *775 + enterprise: *757 + installation: *758 + label: &778 title: Label type: object properties: @@ -133381,8 +133564,8 @@ x-webhooks: - color - default - description - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133465,11 +133648,11 @@ x-webhooks: type: string enum: - locked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133551,11 +133734,11 @@ x-webhooks: type: string enum: - pinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133637,11 +133820,11 @@ x-webhooks: type: string enum: - reopened - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133726,16 +133909,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *771 - new_repository: *756 + new_discussion: *775 + new_repository: *760 required: - new_discussion - new_repository - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133818,10 +134001,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *771 - old_answer: *773 - organization: *755 - repository: *756 + discussion: *775 + old_answer: *777 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133903,12 +134086,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *771 - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -133991,11 +134174,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134077,11 +134260,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *771 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + discussion: *775 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -134154,7 +134337,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *753 + enterprise: *757 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -134814,9 +134997,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - forkee @@ -134962,9 +135145,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pages: description: The pages that were updated. type: array @@ -135001,7 +135184,7 @@ x-webhooks: - action - sha - html_url - repository: *756 + repository: *760 sender: *4 required: - pages @@ -135077,10 +135260,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: &776 + organization: *759 + repositories: &780 description: An array of repository objects that the installation can access. type: array @@ -135106,8 +135289,8 @@ x-webhooks: - name - full_name - private - repository: *756 - requester: *775 + repository: *760 + requester: *779 sender: *4 required: - action @@ -135182,11 +135365,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -135262,11 +135445,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -135342,10 +135525,10 @@ x-webhooks: type: string enum: - added - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories_added: &777 + organization: *759 + repositories_added: &781 description: An array of repository objects, which were added to the installation. type: array @@ -135391,15 +135574,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *756 - repository_selection: &778 + repository: *760 + repository_selection: &782 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *775 + requester: *779 sender: *4 required: - action @@ -135478,10 +135661,10 @@ x-webhooks: type: string enum: - removed - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories_added: *777 + organization: *759 + repositories_added: *781 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135508,9 +135691,9 @@ x-webhooks: - name - full_name - private - repository: *756 - repository_selection: *778 - requester: *775 + repository: *760 + repository_selection: *782 + requester: *779 sender: *4 required: - action @@ -135589,11 +135772,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -135771,10 +135954,10 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 target_type: type: string @@ -135853,11 +136036,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *753 + enterprise: *757 installation: *22 - organization: *755 - repositories: *776 - repository: *756 + organization: *759 + repositories: *780 + repository: *760 requester: nullable: true sender: *4 @@ -136031,8 +136214,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true user: title: User @@ -136117,8 +136300,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136907,8 +137090,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137257,8 +137440,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -137338,7 +137521,7 @@ x-webhooks: type: string enum: - deleted - comment: &779 + comment: &783 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137495,8 +137678,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *584 - required: *585 + properties: *585 + required: *586 nullable: true required: - url @@ -137511,8 +137694,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138297,8 +138480,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138649,8 +138832,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -138730,7 +138913,7 @@ x-webhooks: type: string enum: - edited - changes: &808 + changes: &812 description: The changes to the comment. type: object properties: @@ -138742,9 +138925,9 @@ x-webhooks: type: string required: - from - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139532,8 +139715,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139882,8 +140065,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -139964,9 +140147,9 @@ x-webhooks: type: string enum: - pinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140756,8 +140939,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141108,8 +141291,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -141189,9 +141372,9 @@ x-webhooks: type: string enum: - unpinned - comment: *779 - enterprise: *753 - installation: *754 + comment: *783 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141981,8 +142164,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142333,8 +142516,8 @@ x-webhooks: - state - locked - assignee - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142423,9 +142606,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142514,9 +142697,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142604,9 +142787,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142695,9 +142878,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -142777,10 +142960,10 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - issue: &780 + assignee: *779 + enterprise: *757 + installation: *758 + issue: &784 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143572,11 +143755,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143693,8 +143876,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -143774,8 +143957,8 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144572,11 +144755,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144828,8 +145011,8 @@ x-webhooks: required: - state - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -144908,8 +145091,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145697,11 +145880,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145817,8 +146000,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -145897,8 +146080,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146708,11 +146891,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146807,7 +146990,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &781 + milestone: &785 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146945,8 +147128,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -147045,8 +147228,8 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147838,11 +148021,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147959,9 +148142,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148041,9 +148224,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was set or updated on the @@ -148197,8 +148380,8 @@ x-webhooks: - id required: - from - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148278,9 +148461,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -148361,8 +148544,8 @@ x-webhooks: nullable: true required: - id - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -148442,8 +148625,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149234,11 +149417,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149355,9 +149538,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *774 - organization: *755 - repository: *756 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -149437,8 +149620,8 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150253,11 +150436,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150351,8 +150534,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -150431,8 +150614,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151241,11 +151424,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151339,9 +151522,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *781 - organization: *755 - repository: *756 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -152204,11 +152387,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152789,8 +152972,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153574,11 +153757,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153702,8 +153885,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -153783,9 +153966,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *753 - installation: *754 - issue: &782 + enterprise: *757 + installation: *758 + issue: &786 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -154571,11 +154754,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154691,8 +154874,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -154771,8 +154954,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155585,11 +155768,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155684,8 +155867,8 @@ x-webhooks: user_view_type: type: string type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -156554,11 +156737,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157153,11 +157336,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157237,12 +157420,12 @@ x-webhooks: type: string enum: - typed - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157323,7 +157506,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &811 + assignee: &815 title: User type: object nullable: true @@ -157393,11 +157576,11 @@ x-webhooks: required: - login - id - enterprise: *753 - installation: *754 - issue: *780 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *784 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157476,12 +157659,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - issue: *780 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *784 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -157561,8 +157744,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158375,11 +158558,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *689 - issue_dependencies_summary: *690 + sub_issues_summary: *693 + issue_dependencies_summary: *694 issue_field_values: type: array - items: *568 + items: *569 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158473,8 +158656,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158554,11 +158737,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *753 - installation: *754 - issue: *782 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + issue: *786 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158637,12 +158820,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *753 - installation: *754 - issue: *780 + enterprise: *757 + installation: *758 + issue: *784 type: *257 - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158722,11 +158905,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158804,11 +158987,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -158918,11 +159101,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - label: *774 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + label: *778 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159004,9 +159187,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: &783 + enterprise: *757 + installation: *758 + marketplace_purchase: &787 title: Marketplace Purchase type: object required: @@ -159089,8 +159272,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: &784 + organization: *759 + previous_marketplace_purchase: &788 title: Marketplace Purchase type: object properties: @@ -159170,7 +159353,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -159250,10 +159433,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159336,7 +159519,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -159418,10 +159601,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159503,7 +159686,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *756 + repository: *760 sender: *4 required: - action @@ -159584,8 +159767,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 marketplace_purchase: title: Marketplace Purchase type: object @@ -159667,9 +159850,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -159749,12 +159932,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *753 - installation: *754 - marketplace_purchase: *783 - organization: *755 - previous_marketplace_purchase: *784 - repository: *756 + enterprise: *757 + installation: *758 + marketplace_purchase: *787 + organization: *759 + previous_marketplace_purchase: *788 + repository: *760 sender: *4 required: - action @@ -159856,11 +160039,11 @@ x-webhooks: type: string required: - to - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -159960,11 +160143,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160043,11 +160226,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160125,11 +160308,11 @@ x-webhooks: type: string enum: - added - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160205,7 +160388,7 @@ x-webhooks: required: - login - id - team: &785 + team: &789 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -160428,11 +160611,11 @@ x-webhooks: type: string enum: - removed - enterprise: *753 - installation: *754 - member: *775 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + member: *779 + organization: *759 + repository: *760 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160509,7 +160692,7 @@ x-webhooks: required: - login - id - team: *785 + team: *789 required: - action - scope @@ -160591,8 +160774,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *754 - merge_group: &787 + installation: *758 + merge_group: &791 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -160611,15 +160794,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *786 + head_commit: *790 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160705,10 +160888,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *754 - merge_group: *787 - organization: *755 - repository: *756 + installation: *758 + merge_group: *791 + organization: *759 + repository: *760 sender: *4 required: - action @@ -160781,7 +160964,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 + enterprise: *757 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -160890,16 +161073,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *754 - organization: *755 + installation: *758 + organization: *759 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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -160980,11 +161163,11 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161063,9 +161246,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - milestone: &790 + enterprise: *757 + installation: *758 + milestone: &794 title: Milestone description: A collection of related issues and pull requests. type: object @@ -161202,8 +161385,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161282,11 +161465,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161396,11 +161579,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - milestone: *781 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *785 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161480,11 +161663,11 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - milestone: *790 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + milestone: *794 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161563,11 +161746,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161646,11 +161829,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *775 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + blocked_user: *779 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161729,9 +161912,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - membership: &791 + enterprise: *757 + installation: *758 + membership: &795 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -161838,8 +162021,8 @@ x-webhooks: - role - organization_url - user - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 required: - action @@ -161917,11 +162100,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162000,8 +162183,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -162117,10 +162300,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 - user: *775 + user: *779 required: - action - invitation @@ -162198,11 +162381,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162289,11 +162472,11 @@ x-webhooks: properties: from: type: string - enterprise: *753 - installation: *754 - membership: *791 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + membership: *795 + organization: *759 + repository: *760 sender: *4 required: - action @@ -162370,9 +162553,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -162871,7 +163054,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &792 + items: &796 title: Ruby Gems metadata type: object properties: @@ -162966,7 +163149,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -163042,9 +163225,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 package: description: Information about the package. type: object @@ -163397,7 +163580,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *796 source_url: type: string format: uri @@ -163467,7 +163650,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -163643,12 +163826,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *753 + enterprise: *757 id: type: integer - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - id @@ -163725,7 +163908,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &793 + personal_access_token_request: &797 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -163871,10 +164054,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *753 - organization: *755 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -163951,11 +164134,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *797 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164031,11 +164214,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *793 - enterprise: *753 - organization: *755 + personal_access_token_request: *797 + enterprise: *757 + organization: *759 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164110,11 +164293,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *793 - organization: *755 - enterprise: *753 + personal_access_token_request: *797 + organization: *759 + enterprise: *757 sender: *4 - installation: *754 + installation: *758 required: - action - personal_access_token_request @@ -164219,7 +164402,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *794 + last_response: *798 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -164251,8 +164434,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 zen: description: Random string of GitHub zen. @@ -164497,10 +164680,10 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: &795 + enterprise: *757 + installation: *758 + organization: *759 + project_card: &799 title: Project Card type: object properties: @@ -164619,7 +164802,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -164700,11 +164883,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *799 + repository: *760 sender: *4 required: - action @@ -164784,9 +164967,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 project_card: title: Project Card type: object @@ -164914,8 +165097,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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -165009,11 +165192,11 @@ x-webhooks: - from required: - note - enterprise: *753 - installation: *754 - organization: *755 - project_card: *795 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_card: *799 + repository: *760 sender: *4 required: - action @@ -165107,9 +165290,9 @@ x-webhooks: - from required: - column_id - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 project_card: allOf: - title: Project Card @@ -165299,7 +165482,7 @@ x-webhooks: type: string required: - after_id - repository: *756 + repository: *760 sender: *4 required: - action @@ -165379,10 +165562,10 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - organization: *755 - project: &797 + enterprise: *757 + installation: *758 + organization: *759 + project: &801 title: Project type: object properties: @@ -165506,7 +165689,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -165586,10 +165769,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project_column: &796 + enterprise: *757 + installation: *758 + organization: *759 + project_column: &800 title: Project Column type: object properties: @@ -165628,7 +165811,7 @@ x-webhooks: - name - created_at - updated_at - repository: *756 + repository: *760 sender: *4 required: - action @@ -165707,18 +165890,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 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: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -165808,11 +165991,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 + repository: *760 sender: *4 required: - action @@ -165892,11 +166075,11 @@ x-webhooks: type: string enum: - moved - enterprise: *753 - installation: *754 - organization: *755 - project_column: *796 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project_column: *800 + repository: *760 sender: *4 required: - action @@ -165976,11 +166159,11 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166060,18 +166243,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - project: *797 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *788 - required: *789 + properties: *792 + required: *793 nullable: true sender: *4 required: @@ -166173,11 +166356,11 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166256,11 +166439,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - organization: *755 - project: *797 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + project: *801 + repository: *760 sender: *4 required: - action @@ -166341,8 +166524,8 @@ x-webhooks: type: string enum: - closed - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166424,8 +166607,8 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166507,8 +166690,8 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166626,8 +166809,8 @@ x-webhooks: type: string to: type: string - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -166711,7 +166894,7 @@ x-webhooks: type: string enum: - archived - changes: &801 + changes: &805 type: object properties: archived_at: @@ -166725,9 +166908,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *754 - organization: *755 - projects_v2_item: &798 + installation: *758 + organization: *759 + projects_v2_item: &802 title: Projects v2 Item description: An item belonging to a project type: object @@ -166862,9 +167045,9 @@ x-webhooks: nullable: true to: type: string - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -166946,9 +167129,9 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167029,9 +167212,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167137,7 +167320,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &799 + - &803 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -167159,7 +167342,7 @@ x-webhooks: required: - id - name - - &800 + - &804 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -167193,8 +167376,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *799 - - *800 + - *803 + - *804 required: - field_value - type: object @@ -167210,9 +167393,9 @@ x-webhooks: nullable: true required: - body - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167307,9 +167490,9 @@ x-webhooks: to: type: string nullable: true - installation: *754 - organization: *755 - projects_v2_item: *798 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167392,10 +167575,10 @@ x-webhooks: type: string enum: - restored - changes: *801 - installation: *754 - organization: *755 - projects_v2_item: *798 + changes: *805 + installation: *758 + organization: *759 + projects_v2_item: *802 sender: *4 required: - action @@ -167477,8 +167660,8 @@ x-webhooks: type: string enum: - reopened - installation: *754 - organization: *755 + installation: *758 + organization: *759 projects_v2: *291 sender: *4 required: @@ -167560,14 +167743,14 @@ x-webhooks: type: string enum: - created - installation: *754 - organization: *755 - projects_v2_status_update: &804 + installation: *758 + organization: *759 + projects_v2_status_update: &808 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *802 - required: *803 + properties: *806 + required: *807 sender: *4 required: - action @@ -167648,9 +167831,9 @@ x-webhooks: type: string enum: - deleted - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *758 + organization: *759 + projects_v2_status_update: *808 sender: *4 required: - action @@ -167786,9 +167969,9 @@ x-webhooks: type: string format: date nullable: true - installation: *754 - organization: *755 - projects_v2_status_update: *804 + installation: *758 + organization: *759 + projects_v2_status_update: *808 sender: *4 required: - action @@ -167859,10 +168042,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - repository @@ -167939,13 +168122,13 @@ x-webhooks: type: string enum: - assigned - assignee: *775 - enterprise: *753 - installation: *754 - number: &805 + assignee: *779 + enterprise: *757 + installation: *758 + number: &809 description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -170232,7 +170415,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -170314,11 +170497,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -172600,7 +172783,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -172682,11 +172865,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -174968,7 +175151,7 @@ x-webhooks: - draft reason: type: string - repository: *756 + repository: *760 sender: *4 required: - action @@ -175050,13 +175233,13 @@ x-webhooks: type: string enum: - closed - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: &806 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: &810 allOf: - - *607 + - *611 - type: object properties: allow_auto_merge: @@ -175118,7 +175301,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *756 + repository: *760 sender: *4 required: - action @@ -175199,12 +175382,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -175284,11 +175467,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *753 - milestone: *591 - number: *805 - organization: *755 - pull_request: &807 + enterprise: *757 + milestone: *595 + number: *809 + organization: *759 + pull_request: &811 title: Pull Request type: object properties: @@ -177569,7 +177752,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -177648,11 +177831,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -179952,7 +180135,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *756 + repository: *760 sender: *4 required: - action @@ -180076,12 +180259,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -180161,11 +180344,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -182450,7 +182633,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -182530,11 +182713,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + label: *778 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -184820,7 +185003,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -184901,10 +185084,10 @@ x-webhooks: type: string enum: - locked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -187188,7 +187371,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -187268,12 +187451,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *753 - milestone: *591 - number: *805 - organization: *755 - pull_request: *807 - repository: *756 + enterprise: *757 + milestone: *595 + number: *809 + organization: *759 + pull_request: *811 + repository: *760 sender: *4 required: - action @@ -187352,12 +187535,12 @@ x-webhooks: type: string enum: - opened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -187438,12 +187621,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -187523,12 +187706,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *753 - installation: *754 - number: *805 - organization: *755 - pull_request: *806 - repository: *756 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 + pull_request: *810 + repository: *760 sender: *4 required: - action @@ -187894,9 +188077,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -190070,7 +190253,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -190150,7 +190333,7 @@ x-webhooks: type: string enum: - deleted - comment: &809 + comment: &813 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -190435,9 +190618,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -192599,7 +192782,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -192679,11 +192862,11 @@ x-webhooks: type: string enum: - edited - changes: *808 - comment: *809 - enterprise: *753 - installation: *754 - organization: *755 + changes: *812 + comment: *813 + enterprise: *757 + installation: *758 + organization: *759 pull_request: type: object properties: @@ -194848,7 +195031,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *756 + repository: *760 sender: *4 required: - action @@ -194929,9 +195112,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -197108,7 +197291,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 review: description: The review that was affected. type: object @@ -197355,9 +197538,9 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -199407,8 +199590,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: &810 + repository: *760 + review: &814 description: The review that was affected. type: object properties: @@ -199641,12 +199824,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -201933,7 +202116,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_reviewer: title: User type: object @@ -202017,12 +202200,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -204316,7 +204499,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204508,12 +204691,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -206802,7 +206985,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_reviewer: title: User type: object @@ -206887,12 +207070,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *753 - installation: *754 + enterprise: *757 + installation: *758 number: description: The pull request number. type: integer - organization: *755 + organization: *759 pull_request: title: Pull Request type: object @@ -209172,7 +209355,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209353,9 +209536,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -211534,8 +211717,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 - review: *810 + repository: *760 + review: *814 sender: *4 required: - action @@ -211615,9 +211798,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -213705,7 +213888,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 sender: *4 thread: type: object @@ -214092,9 +214275,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 pull_request: title: Simple Pull Request type: object @@ -216168,7 +216351,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *756 + repository: *760 sender: *4 thread: type: object @@ -216558,10 +216741,10 @@ x-webhooks: type: string before: type: string - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -218836,7 +219019,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -218918,11 +219101,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *811 - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + assignee: *815 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -221209,7 +221392,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -221288,11 +221471,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *753 - installation: *754 - label: *774 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + label: *778 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -223569,7 +223752,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -223650,10 +223833,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *753 - installation: *754 - number: *805 - organization: *755 + enterprise: *757 + installation: *758 + number: *809 + organization: *759 pull_request: title: Pull Request type: object @@ -225922,7 +226105,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *756 + repository: *760 sender: *4 required: - action @@ -226122,7 +226305,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *753 + enterprise: *757 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -226214,8 +226397,8 @@ x-webhooks: - url - author - committer - installation: *754 - organization: *755 + installation: *758 + organization: *759 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -226801,9 +226984,9 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -227249,7 +227432,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *792 + items: *796 summary: type: string tag_name: @@ -227303,7 +227486,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -227381,9 +227564,9 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 registry_package: type: object properties: @@ -227691,7 +227874,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *792 + items: *796 summary: type: string tag_name: @@ -227740,7 +227923,7 @@ x-webhooks: - owner - package_version - registry - repository: *756 + repository: *760 sender: *4 required: - action @@ -227817,10 +228000,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - release: &812 + enterprise: *757 + installation: *758 + organization: *759 + release: &816 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228138,7 +228321,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *756 + repository: *760 sender: *4 required: - action @@ -228215,11 +228398,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -228336,11 +228519,11 @@ x-webhooks: type: boolean required: - to - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -228418,9 +228601,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -228742,7 +228925,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *760 sender: *4 required: - action @@ -228818,10 +229001,10 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - release: &813 + enterprise: *757 + installation: *758 + organization: *759 + release: &817 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229140,7 +229323,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *756 + repository: *760 sender: *4 required: - action @@ -229216,11 +229399,11 @@ x-webhooks: type: string enum: - released - enterprise: *753 - installation: *754 - organization: *755 - release: *812 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *816 + repository: *760 sender: *4 required: - action @@ -229296,11 +229479,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *753 - installation: *754 - organization: *755 - release: *813 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + release: *817 + repository: *760 sender: *4 required: - action @@ -229376,11 +229559,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *676 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -229456,11 +229639,11 @@ x-webhooks: type: string enum: - reported - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - repository_advisory: *676 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + repository_advisory: *680 sender: *4 required: - action @@ -229536,10 +229719,10 @@ x-webhooks: type: string enum: - archived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -229616,10 +229799,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -229697,10 +229880,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -229784,10 +229967,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -229899,10 +230082,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -229974,10 +230157,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 status: type: string @@ -230058,10 +230241,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230138,10 +230321,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230235,10 +230418,10 @@ x-webhooks: - name required: - repository - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230318,10 +230501,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 sender: *4 required: @@ -230400,10 +230583,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 sender: *4 required: @@ -230482,10 +230665,10 @@ x-webhooks: type: string enum: - edited - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 repository_ruleset: *339 changes: type: object @@ -230547,16 +230730,16 @@ x-webhooks: properties: added: type: array - items: *627 + items: *631 deleted: type: array - items: *627 + items: *631 updated: type: array items: type: object properties: - rule: *627 + rule: *631 changes: type: object properties: @@ -230790,10 +230973,10 @@ x-webhooks: - from required: - owner - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230871,10 +231054,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -230952,7 +231135,7 @@ x-webhooks: type: string enum: - create - alert: &814 + alert: &818 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -231074,10 +231257,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231283,10 +231466,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231364,11 +231547,11 @@ x-webhooks: type: string enum: - reopen - alert: *814 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *818 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231567,10 +231750,10 @@ x-webhooks: enum: - fixed - open - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231648,7 +231831,7 @@ x-webhooks: type: string enum: - assigned - alert: &815 + alert: &819 type: object properties: number: *188 @@ -231791,10 +231974,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231872,11 +232055,11 @@ x-webhooks: type: string enum: - created - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -231957,11 +232140,11 @@ x-webhooks: type: string enum: - created - alert: *815 - installation: *754 - location: *816 - organization: *755 - repository: *756 + alert: *819 + installation: *758 + location: *820 + organization: *759 + repository: *760 sender: *4 required: - location @@ -232199,11 +232382,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232281,11 +232464,11 @@ x-webhooks: type: string enum: - reopened - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232363,11 +232546,11 @@ x-webhooks: type: string enum: - resolved - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232445,12 +232628,12 @@ x-webhooks: type: string enum: - unassigned - alert: *815 + alert: *819 assignee: *4 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232528,11 +232711,11 @@ x-webhooks: type: string enum: - validated - alert: *815 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + alert: *819 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -232658,10 +232841,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *756 - enterprise: *753 - installation: *754 - organization: *755 + repository: *760 + enterprise: *757 + installation: *758 + organization: *759 sender: *4 required: - action @@ -232739,11 +232922,11 @@ x-webhooks: type: string enum: - published - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: &817 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: &821 description: The details of the security advisory, including summary, description, and severity. type: object @@ -232914,11 +233097,11 @@ x-webhooks: type: string enum: - updated - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 - security_advisory: *817 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 + security_advisory: *821 sender: *4 required: - action @@ -232991,10 +233174,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -233167,9 +233350,9 @@ x-webhooks: type: object properties: security_and_analysis: *312 - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: *357 sender: *4 required: @@ -233248,12 +233431,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: &818 + sponsorship: &822 type: object properties: created_at: @@ -233554,12 +233737,12 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - sponsorship @@ -233647,12 +233830,12 @@ x-webhooks: type: string required: - from - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -233729,17 +233912,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &819 + effective_date: &823 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: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - sponsorship @@ -233813,7 +233996,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &820 + changes: &824 type: object properties: tier: @@ -233857,13 +234040,13 @@ x-webhooks: - from required: - tier - effective_date: *819 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + effective_date: *823 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -233940,13 +234123,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *820 - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + changes: *824 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - sponsorship: *818 + sponsorship: *822 required: - action - changes @@ -234020,10 +234203,10 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234106,10 +234289,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234529,15 +234712,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *753 + enterprise: *757 id: description: The unique identifier of the status. type: integer - installation: *754 + installation: *758 name: type: string - organization: *755 - repository: *756 + organization: *759 + repository: *760 sender: *4 sha: description: The Commit SHA. @@ -234652,9 +234835,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234743,9 +234926,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234834,9 +235017,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -234925,9 +235108,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *754 - organization: *755 - repository: *756 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -235003,12 +235186,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - team: &821 + team: &825 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -235231,9 +235414,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -235691,7 +235874,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -235767,9 +235950,9 @@ x-webhooks: type: string enum: - created - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -236227,7 +236410,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -236304,9 +236487,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -236764,7 +236947,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -236908,9 +237091,9 @@ x-webhooks: - from required: - permissions - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237368,7 +237551,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - changes @@ -237446,9 +237629,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *753 - installation: *754 - organization: *755 + enterprise: *757 + installation: *758 + organization: *759 repository: title: Repository description: A git repository @@ -237906,7 +238089,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *821 + team: *825 required: - action - team @@ -237982,10 +238165,10 @@ x-webhooks: type: string enum: - started - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 required: - action @@ -238058,16 +238241,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *753 + enterprise: *757 inputs: type: object nullable: true additionalProperties: true - installation: *754 - organization: *755 + installation: *758 + organization: *759 ref: type: string - repository: *756 + repository: *760 sender: *4 workflow: type: string @@ -238149,10 +238332,10 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -238468,10 +238651,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: allOf: @@ -238810,10 +238993,10 @@ x-webhooks: type: string enum: - queued - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -239027,10 +239210,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 workflow_job: type: object @@ -239246,12 +239429,12 @@ x-webhooks: type: string enum: - completed - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -240250,12 +240433,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Workflow Run type: object @@ -241239,12 +241422,12 @@ x-webhooks: type: string enum: - requested - enterprise: *753 - installation: *754 - organization: *755 - repository: *756 + enterprise: *757 + installation: *758 + organization: *759 + repository: *760 sender: *4 - workflow: *770 + workflow: *774 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 5e0a21ef8d..e50c1dd8f5 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -36014,6 +36014,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -39538,6 +39543,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -58763,6 +58773,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -66094,6 +66109,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -69618,6 +69638,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -139229,6 +139254,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -142753,6 +142783,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -158676,6 +158711,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -188470,6 +188510,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -198448,6 +198493,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -316812,7 +316862,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -370423,6 +370473,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -373947,6 +374002,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -399426,6 +399486,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -403059,6 +403124,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -411717,6 +411787,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -412722,6 +412797,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -416500,6 +416645,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -417505,6 +417655,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -421158,6 +421378,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -422049,551 +422274,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", - "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": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -422718,409 +422470,52 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "nullable": true - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" - }, - "license": { - "title": "License Simple", - "description": "License Simple", - "type": "object", - "properties": { - "key": { - "type": "string", - "example": "mit" - }, - "name": { - "type": "string", - "example": "MIT License" - }, - "url": { - "type": "string", - "nullable": true, - "format": "uri", - "example": "https://api.github.com/licenses/mit" - }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" - }, - "node_id": { - "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" - }, - "html_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "key", - "name", - "url", - "spdx_id", - "node_id" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "forks": { - "type": "integer" - }, - "permissions": { - "type": "object", - "properties": { - "admin": { - "type": "boolean" - }, - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - } - }, - "required": [ - "admin", - "pull", - "push" - ] + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "owner": { + "assignee": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -423242,664 +422637,190 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", + ], "nullable": true }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { + "assignees": { "type": "array", "items": { - "type": "string" - } - }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_downloads": { - "description": "Whether downloads are enabled.", - "default": true, - "type": "boolean", - "example": true, - "deprecated": true - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" - ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", - "nullable": true - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { - "type": "string" - }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "use_squash_pr_title_as_default": { - "type": "boolean", - "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", - "default": false, - "deprecated": true - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" - }, - "master_branch": { - "type": "string" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" - }, - "code_search_index_status": { - "type": "object", - "description": "The status of the code search index for this repository", - "properties": { - "lexical_search_ok": { - "type": "boolean" - }, - "lexical_commit_sha": { - "type": "string" - } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_downloads", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ], - "x-github-breaking-changes": [ - { - "changeset": "remove_use_squash_pr_title_as_default", - "patch": { - "properties": { - "use_squash_pr_title_as_default": null - } - }, - "version": "2026-03-10" - }, - { - "changeset": "deprecate_beta_media_type", - "patch": { - "properties": { - "master_branch": null - } - }, - "version": "2026-03-10" - }, - { - "changeset": "remove_has_downloads", - "patch": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", "properties": { - "has_downloads": null + "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" + } }, "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", + "avatar_url", "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", "html_url", "id", "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" ] - }, - "version": "2026-03-10" - } - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" + } }, - "owner": { - "oneOf": [ - { + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" + }, + "labels_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" + }, + "id": { + "type": "integer", + "example": 1002604 + }, + "node_id": { + "type": "string", + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + }, + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", + "type": "string", + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", + "type": "string" + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -424021,294 +422942,123 @@ "subscriptions_url", "type", "url" - ] + ], + "nullable": true }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", + }, + "required": [ + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", + "url", + "created_at", + "updated_at" + ], "nullable": true }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" + "locked": { + "type": "boolean" }, - "created_at": { + "active_lock_reason": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "comments": { + "type": "integer" }, - "permissions": { - "description": "The set of permissions for the GitHub app", + "pull_request": { "type": "object", "properties": { - "issues": { - "type": "string" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": true }, - "checks": { - "type": "string" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "metadata": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "contents": { - "type": "string" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "deployments": { - "type": "string" + "url": { + "type": "string", + "format": "uri", + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } + "required": [ + "diff_url", + "html_url", + "patch_url", + "url" + ] }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { + "closed_at": { "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" + "format": "date-time", + "nullable": true }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", + "created_at": { "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" + "format": "date-time" }, - "html_url": { + "updated_at": { "type": "string", - "format": "uri" + "format": "date-time" }, - "user": { + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -424433,34 +423183,921 @@ ], "nullable": true }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_html": { + "type": "string" }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_text": { + "type": "string" }, - "issue_url": { + "timeline_url": { "type": "string", "format": "uri" }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true + }, + "fork": { + "type": "boolean" + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" + }, + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" + }, + "assignees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" + }, + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" + }, + "branches_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" + }, + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/events" + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/forks" + }, + "git_commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" + }, + "git_refs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" + }, + "git_tags_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" + }, + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/languages" + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/merges" + }, + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" + }, + "statuses_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { + "type": "boolean" + }, + "has_downloads": { + "description": "Whether downloads are enabled.", + "default": true, + "type": "boolean", + "example": true, + "deprecated": true + }, + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", + "type": "string", + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" + }, + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "use_squash_pr_title_as_default": { + "type": "boolean", + "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", + "default": false, + "deprecated": true + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "master_branch": { + "type": "string" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_downloads", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" + ], + "x-github-breaking-changes": [ + { + "changeset": "remove_use_squash_pr_title_as_default", + "patch": { + "properties": { + "use_squash_pr_title_as_default": null + } + }, + "version": "2026-03-10" + }, + { + "changeset": "deprecate_beta_media_type", + "patch": { + "properties": { + "master_branch": null + } + }, + "version": "2026-03-10" + }, + { + "changeset": "remove_has_downloads", + "patch": { + "properties": { + "has_downloads": null + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" + ] + }, + "version": "2026-03-10" + } ] }, "performed_via_github_app": { @@ -424611,591 +424248,1192 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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\"" + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", + "type": "object", + "properties": { + "issue_field_id": { + "description": "Unique identifier for the issue field.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, + "node_id": { + "type": "string", + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "user_view_type": { - "type": "string", - "example": "public" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } + }, + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] + } } }, "required": [ + "assignee", + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", "id", "node_id", - "html_url", - "issue_url", - "user", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", "url", + "user", "created_at", "updated_at" ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 + "x-github-breaking-changes": [ + { + "changeset": "deprecate_beta_media_type", + "patch": { + "properties": { + "pull_request": { + "type": "object", + "properties": { + "merged_at": { + "nullable": false + }, + "diff_url": { + "nullable": false + }, + "html_url": { + "nullable": false + }, + "patch_url": { + "nullable": false + }, + "url": { + "nullable": false + } + } } - ], - "nullable": true + } }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", - "type": "object", + "version": "2026-03-10" + }, + { + "changeset": "remove_singular_assignee_from_issues_and_pull_requests", + "patch": { "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" - }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "assignee": null }, "required": [ + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", "id", - "name", - "color" - ], - "nullable": true + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" - }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ] - }, - "nullable": true - } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } - } - }, - "required": [ - "assignee", - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" - ], - "x-github-breaking-changes": [ - { - "changeset": "deprecate_beta_media_type", - "patch": { - "properties": { - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "nullable": false - }, - "diff_url": { - "nullable": false - }, - "html_url": { - "nullable": false - }, - "patch_url": { - "nullable": false - }, - "url": { - "nullable": false - } - } - } + "version": "2026-03-10" } - }, - "version": "2026-03-10" + ] }, { - "changeset": "remove_singular_assignee_from_issues_and_pull_requests", - "patch": { - "properties": { - "assignee": null - }, - "required": [ - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" - ] - }, - "version": "2026-03-10" + "type": "object", + "properties": {} } ] }, @@ -428639,6 +428877,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -432049,6 +432292,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -437405,6 +437653,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -440890,6 +441143,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -444465,6 +444723,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -448060,6 +448323,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -451495,8 +451763,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -451955,20 +452709,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -451981,8 +452739,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -452441,24 +453199,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -452471,8 +453672,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -453404,8 +454605,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -453864,7 +455065,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -453988,217 +455240,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -454321,10 +456225,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -454337,8 +456595,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -454797,32 +457055,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -454835,8 +457101,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -455295,14 +457561,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -455315,8 +457607,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -455775,40 +458067,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -455821,8 +458117,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -456281,40 +458577,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -456327,8 +458627,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -456787,546 +459087,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -457504,6 +459338,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -457611,12 +459450,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -457628,18 +459469,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -457900,6 +459744,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -458007,12 +459856,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -458024,18 +459875,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -458406,6 +460260,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -458513,12 +460372,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -458530,18 +460391,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -463615,6 +465479,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -468085,6 +469954,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -471584,6 +473458,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -475047,6 +476926,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -478621,6 +480505,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -490420,6 +492309,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -492783,132 +494677,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -492917,13 +496310,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -493382,12 +496774,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -594069,6 +597529,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -636425,6 +639890,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -667439,6 +670909,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -684810,6 +688285,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -688334,6 +691814,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -695536,6 +699021,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -699060,6 +702550,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -706272,6 +709767,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -709796,6 +713296,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -727125,6 +730630,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -741756,6 +745266,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -745280,6 +748795,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -752478,6 +755998,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -756002,6 +759527,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -954288,6 +957818,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -957443,6 +960978,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -963027,6 +966567,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -966182,6 +969727,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -971766,6 +975316,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -975768,6 +979323,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -980505,6 +984065,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -984507,6 +988072,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -988257,6 +991827,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -992021,6 +995596,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -995977,6 +999557,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -999751,6 +1003336,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1003698,6 +1007288,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1007499,6 +1011094,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1011464,6 +1015064,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1015331,6 +1018936,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1019155,6 +1022765,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1022905,6 +1026520,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1026030,6 +1029650,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1028831,6 +1032456,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1033286,6 +1036916,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1037063,6 +1040698,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1040707,6 +1044347,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1043524,6 +1047169,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1047283,6 +1050933,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1051200,6 +1054855,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1054959,6 +1058619,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1058781,6 +1062446,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1062510,6 +1066180,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1066268,6 +1069943,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1433864,6 +1437544,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1437866,6 +1441551,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1442604,6 +1446294,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1446606,6 +1450301,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1451344,6 +1455044,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1455346,6 +1459051,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1460084,6 +1463794,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1464086,6 +1467801,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index e3bb723403..83c2ae69de 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &681 + - &685 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -14271,7 +14271,7 @@ paths: properties: action: type: string - discussion: &774 + discussion: &778 title: Discussion description: A Discussion in a repository. type: object @@ -15016,7 +15016,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &692 + sub_issues_summary: &696 title: Sub-issues Summary type: object properties: @@ -15103,7 +15103,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &587 + properties: &588 pinned_at: type: string format: date-time @@ -15115,7 +15115,7 @@ paths: properties: *20 required: *21 nullable: true - required: &588 + required: &589 - pinned_at - pinned_by nullable: true @@ -15129,7 +15129,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &693 + issue_dependencies_summary: &697 title: Issue Dependencies Summary type: object properties: @@ -15148,7 +15148,7 @@ paths: - total_blocking issue_field_values: type: array - items: &571 + items: &572 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15159,6 +15159,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -15980,7 +15985,7 @@ paths: type: string release: allOf: - - &621 + - &625 title: Release description: A release. type: object @@ -16051,7 +16056,7 @@ paths: author: *4 assets: type: array - items: &622 + items: &626 title: Release Asset description: Data related to a release. type: object @@ -16671,7 +16676,7 @@ paths: url: type: string format: uri - user: &699 + user: &703 title: Public User description: Public User type: object @@ -20089,7 +20094,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &597 + - &601 name: all description: If `true`, show notifications marked as read. in: query @@ -20097,7 +20102,7 @@ paths: schema: type: boolean default: false - - &598 + - &602 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20107,7 +20112,7 @@ paths: type: boolean default: false - *95 - - &599 + - &603 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20643,7 +20648,7 @@ paths: - url - subscription_url examples: - default: &600 + default: &604 value: - id: '1' repository: @@ -22524,7 +22529,7 @@ paths: parameters: - *78 - *124 - - &750 + - &754 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 @@ -22636,7 +22641,7 @@ paths: - *124 - *125 - *126 - - &751 + - &755 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22644,7 +22649,7 @@ paths: schema: type: string - *129 - - &752 + - &756 name: sku description: The SKU to query for usage. in: query @@ -30185,12 +30190,12 @@ paths: required: - subject_digests examples: - default: &731 + default: &735 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &732 + withPredicateType: &736 value: subject_digests: - sha256:abc123 @@ -30248,7 +30253,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &733 + default: &737 value: attestations_subject_digests: - sha256:abc: @@ -42334,7 +42339,7 @@ paths: parameters: - *78 - *270 - - &714 + - &718 name: repo_name description: repo_name parameter in: path @@ -43393,7 +43398,7 @@ paths: - nuget - container - *78 - - &715 + - &719 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43434,7 +43439,7 @@ paths: default: *277 '403': *29 '401': *25 - '400': &717 + '400': &721 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45531,7 +45536,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &806 + properties: &810 id: type: number description: The unique identifier of the status update. @@ -45579,7 +45584,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &807 + required: &811 - id - node_id - created_at @@ -46019,7 +46024,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: &607 + auto_merge: &611 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46469,7 +46474,7 @@ paths: - updated_at - project_url examples: - default: &737 + default: &741 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46646,7 +46651,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &738 + items: &742 type: object properties: name: @@ -46683,7 +46688,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &739 + iteration_configuration: &743 type: object description: The configuration for iteration fields. properties: @@ -46733,7 +46738,7 @@ paths: value: name: Due date data_type: date - single_select_field: &740 + single_select_field: &744 summary: Create a single select field value: name: Priority @@ -46760,7 +46765,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &741 + iteration_field: &745 summary: Create an iteration field value: name: Sprint @@ -46786,7 +46791,7 @@ paths: application/json: schema: *298 examples: - text_field: &742 + text_field: &746 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46795,7 +46800,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: &743 + number_field: &747 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46804,7 +46809,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: &744 + date_field: &748 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46813,7 +46818,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: &745 + single_select_field: &749 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46847,7 +46852,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &746 + iteration_field: &750 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46893,7 +46898,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *294 - - &747 + - &751 name: field_id description: The unique identifier of the field. in: path @@ -46908,7 +46913,7 @@ paths: application/json: schema: *298 examples: - default: &748 + default: &752 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48105,7 +48110,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &728 + schema: &732 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48282,7 +48287,7 @@ paths: parameters: - *294 - *78 - - &749 + - &753 name: view_number description: The number that identifies the project view. in: path @@ -50273,7 +50278,7 @@ paths: - *78 - *17 - *19 - - &629 + - &633 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50555,7 +50560,7 @@ paths: - repository_property rules: type: array - items: &630 + items: &634 title: Repository Rule type: object description: A repository rule. @@ -50617,7 +50622,7 @@ paths: type: string enum: - required_linear_history - - &628 + - &632 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51519,7 +51524,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *78 - - &631 + - &635 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -51534,7 +51539,7 @@ paths: in: query schema: type: string - - &632 + - &636 name: time_period description: |- The time period to filter by. @@ -51550,14 +51555,14 @@ paths: - week - month default: day - - &633 + - &637 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &634 + - &638 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51570,7 +51575,7 @@ paths: - bypass - all default: all - - &635 + - &639 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -51593,7 +51598,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &640 title: Rule Suites description: Response type: array @@ -51648,7 +51653,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &637 + default: &641 value: - id: 21 actor_id: 12 @@ -51692,7 +51697,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &638 + - &642 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51708,7 +51713,7 @@ paths: description: Response content: application/json: - schema: &639 + schema: &643 title: Rule Suite description: Response type: object @@ -51807,7 +51812,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &640 + default: &644 value: id: 21 actor_id: 12 @@ -52054,7 +52059,7 @@ paths: type: string format: date-time examples: - default: &642 + default: &646 value: - version_id: 3 actor: @@ -52107,7 +52112,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &647 allOf: - *344 - type: object @@ -52179,7 +52184,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &644 + - &648 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52190,7 +52195,7 @@ paths: enum: - open - resolved - - &645 + - &649 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52200,7 +52205,7 @@ paths: required: false schema: type: string - - &646 + - &650 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52211,7 +52216,7 @@ paths: required: false schema: type: string - - &647 + - &651 name: exclude_providers in: query description: |- @@ -52222,7 +52227,7 @@ paths: required: false schema: type: string - - &648 + - &652 name: providers in: query description: |- @@ -52233,7 +52238,7 @@ paths: required: false schema: type: string - - &649 + - &653 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52242,7 +52247,7 @@ paths: required: false schema: type: string - - &650 + - &654 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52261,7 +52266,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &651 + - &655 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -52276,7 +52281,7 @@ paths: - *62 - *19 - *17 - - &652 + - &656 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -52286,7 +52291,7 @@ paths: required: false schema: type: string - - &653 + - &657 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -52296,7 +52301,7 @@ paths: required: false schema: type: string - - &654 + - &658 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52305,7 +52310,7 @@ paths: required: false schema: type: string - - &655 + - &659 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52314,7 +52319,7 @@ paths: schema: type: boolean default: false - - &656 + - &660 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52323,7 +52328,7 @@ paths: schema: type: boolean default: false - - &657 + - &661 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52332,7 +52337,7 @@ paths: schema: type: boolean default: false - - &658 + - &662 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52369,14 +52374,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &659 + state: &663 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &660 + resolution: &664 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52493,8 +52498,8 @@ paths: pull request. ' - oneOf: &661 - - &663 + oneOf: &665 + - &667 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52552,7 +52557,7 @@ paths: - blob_url - commit_sha - commit_url - - &664 + - &668 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -52607,7 +52612,7 @@ paths: - page_url - commit_sha - commit_url - - &665 + - &669 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52627,7 +52632,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &666 + - &670 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52647,7 +52652,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &667 + - &671 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52667,7 +52672,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &668 + - &672 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52681,7 +52686,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &669 + - &673 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52695,7 +52700,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &670 + - &674 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52709,7 +52714,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &671 + - &675 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -52729,7 +52734,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &672 + - &676 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -52749,7 +52754,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &673 + - &677 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -52769,7 +52774,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &674 + - &678 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -52789,7 +52794,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &675 + - &679 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53308,7 +53313,7 @@ paths: application/json: schema: type: array - items: &679 + items: &683 description: A repository security advisory. type: object properties: @@ -53631,7 +53636,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &680 + default: &684 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55560,7 +55565,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &695 + response-if-user-is-a-team-maintainer: &699 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55625,7 +55630,7 @@ paths: application/json: schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: &696 + response-if-users-membership-with-team-is-now-pending: &700 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55739,7 +55744,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &697 + schema: &701 title: Team Repository description: A team's access to a repository. type: object @@ -56481,7 +56486,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: &698 + response-if-child-teams-exist: &702 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62154,7 +62159,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &768 + properties: &772 url: type: string format: uri @@ -62239,7 +62244,7 @@ paths: nullable: true properties: *83 required: *84 - required: &769 + required: &773 - id - node_id - sha @@ -68359,7 +68364,7 @@ paths: check. type: array items: *93 - deployment: &761 + deployment: &765 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69271,7 +69276,7 @@ paths: type: string format: date-time nullable: true - head_commit: &789 + head_commit: &793 title: Simple Commit description: A commit. type: object @@ -71027,7 +71032,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -73775,14 +73780,14 @@ paths: type: integer machines: type: array - items: &704 + items: &708 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *477 required: *478 examples: - default: &705 + default: &709 value: total_count: 2 machines: @@ -75420,7 +75425,7 @@ paths: type: array items: *489 examples: - default: &614 + default: &618 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -75711,7 +75716,7 @@ paths: type: array items: *493 examples: - default: &606 + default: &610 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -76269,7 +76274,7 @@ paths: application/json: schema: *489 examples: - default: &593 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76928,7 +76933,7 @@ paths: application/json: schema: type: array - items: &684 + items: &688 title: Status description: The status of a commit. type: object @@ -77897,7 +77902,7 @@ paths: - size - type - url - - &619 + - &623 title: Content File description: Content File type: object @@ -78541,7 +78546,7 @@ paths: items: type: object properties: - placeholder_id: &676 + placeholder_id: &680 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84585,7 +84590,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &798 + last_response: &802 title: Hook Response type: object properties: @@ -85637,7 +85642,7 @@ paths: parameters: - *356 - *357 - - &726 + - &730 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86222,7 +86227,7 @@ paths: type: array items: *556 examples: - default: &719 + default: &723 value: - id: 1 repository: @@ -86668,7 +86673,7 @@ paths: type: array items: *88 examples: - default: &570 + default: &571 value: - id: 1 node_id: MDU6SXNzdWUx @@ -86956,7 +86961,7 @@ paths: application/json: schema: *88 examples: - default: &567 + default: &568 value: id: 1 node_id: MDU6SXNzdWUx @@ -87181,7 +87186,7 @@ paths: type: array items: *559 examples: - default: &569 + default: &570 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -87636,7 +87641,7 @@ paths: application/json: schema: type: array - items: &566 + items: &567 title: Issue Event description: Issue Event type: object @@ -87790,6 +87795,35 @@ paths: required: - from - to + issue_type: &566 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *566 author_association: *85 lock_reason: type: string @@ -88001,7 +88035,7 @@ paths: description: Response content: application/json: - schema: *566 + schema: *567 examples: default: value: @@ -88230,7 +88264,7 @@ paths: parameters: - *356 - *357 - - &568 + - &569 name: issue_number description: The number that identifies the issue. in: path @@ -88246,7 +88280,7 @@ paths: examples: default: summary: Issue - value: *567 + value: *568 pinned_comment: summary: Issue with pinned comment value: @@ -88480,7 +88514,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: false content: @@ -88608,9 +88642,13 @@ paths: description: Response content: application/json: - schema: *88 + schema: + allOf: + - *88 + - type: object + properties: {} examples: - default: *567 + default: *568 '422': *15 '503': *122 '403': *29 @@ -88646,7 +88684,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: false content: @@ -88674,7 +88712,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88692,7 +88730,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: content: application/json: @@ -88719,7 +88757,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88743,7 +88781,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - name: assignee in: path required: true @@ -88785,7 +88823,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *95 - *17 - *19 @@ -88798,7 +88836,7 @@ paths: type: array items: *559 examples: - default: *569 + default: *570 headers: Link: *70 '404': *6 @@ -88833,7 +88871,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -88894,7 +88932,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -88906,7 +88944,7 @@ paths: type: array items: *88 examples: - default: *570 + default: *571 headers: Link: *70 '301': *360 @@ -88941,7 +88979,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -88965,7 +89003,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -89006,7 +89044,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -89020,7 +89058,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 '301': *360 '400': *14 '401': *25 @@ -89054,7 +89092,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -89066,7 +89104,7 @@ paths: type: array items: *88 examples: - default: *570 + default: *571 headers: Link: *70 '301': *360 @@ -89090,7 +89128,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -89104,7 +89142,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &574 + - &575 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -89158,7 +89196,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -89294,7 +89332,7 @@ paths: - performed_via_github_app - assignee - assigner - - &576 + - &577 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -89345,7 +89383,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -89396,7 +89434,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -89450,7 +89488,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -89497,7 +89535,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -89544,7 +89582,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &581 + - &582 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -89604,7 +89642,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &583 title: Locked Issue Event description: Locked Issue Event type: object @@ -89652,7 +89690,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &583 + - &584 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -89718,7 +89756,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &584 + - &585 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -89784,7 +89822,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &585 + - &586 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -89850,7 +89888,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &586 + - &587 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -89906,6 +89944,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &590 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *566 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &591 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + prev_issue_type: *566 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &592 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *83 + required: *84 + issue_type: *566 + prev_issue_type: *566 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -89960,7 +90135,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -89970,15 +90145,17 @@ paths: application/json: schema: type: array - items: *571 + items: *572 examples: - default: &572 + default: &573 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -89987,14 +90164,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -90040,7 +90220,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -90110,9 +90290,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *571 + items: *572 examples: - default: *572 + default: *573 '400': *14 '403': *29 '404': *6 @@ -90150,7 +90330,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -90215,9 +90395,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *571 + items: *572 examples: - default: *572 + default: *573 '400': *14 '403': *29 '404': *6 @@ -90250,7 +90430,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *257 responses: '204': @@ -90278,7 +90458,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -90290,7 +90470,7 @@ paths: type: array items: *87 examples: - default: &573 + default: &574 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -90328,7 +90508,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: false content: @@ -90373,7 +90553,7 @@ paths: type: array items: *87 examples: - default: *573 + default: *574 '301': *360 '404': *6 '410': *558 @@ -90395,7 +90575,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: false content: @@ -90457,7 +90637,7 @@ paths: type: array items: *87 examples: - default: *573 + default: *574 '301': *360 '404': *6 '410': *558 @@ -90479,7 +90659,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 responses: '204': description: Response @@ -90506,7 +90686,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - name: name in: path required: true @@ -90554,7 +90734,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: false content: @@ -90602,7 +90782,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 responses: '204': description: Response @@ -90634,7 +90814,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 responses: '200': description: Response @@ -90642,7 +90822,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 '301': *360 '404': *6 '410': *558 @@ -90664,7 +90844,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -90716,7 +90896,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -90781,7 +90961,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *562 responses: '204': @@ -90813,7 +90993,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -90837,7 +91017,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -90872,7 +91052,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -90884,7 +91064,7 @@ paths: type: array items: *88 examples: - default: *570 + default: *571 headers: Link: *70 '404': *6 @@ -90918,7 +91098,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -90947,7 +91127,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -90976,7 +91156,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 requestBody: required: true content: @@ -91009,7 +91189,7 @@ paths: application/json: schema: *88 examples: - default: *567 + default: *568 '403': *29 '404': *6 '422': *7 @@ -91033,7 +91213,7 @@ paths: parameters: - *356 - *357 - - *568 + - *569 - *17 - *19 responses: @@ -91048,7 +91228,6 @@ paths: description: Timeline Event type: object anyOf: - - *574 - *575 - *576 - *577 @@ -91061,6 +91240,7 @@ paths: - *584 - *585 - *586 + - *587 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -91121,8 +91301,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *587 - required: *588 + properties: *588 + required: *589 nullable: true required: - event @@ -91377,7 +91557,7 @@ paths: type: string comments: type: array - items: &608 + items: &612 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -91726,6 +91906,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *590 + - *591 + - *592 examples: default: value: @@ -91909,7 +92092,7 @@ paths: application/json: schema: type: array - items: &589 + items: &593 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -92012,9 +92195,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *593 examples: - default: &590 + default: &594 value: id: 1 key: ssh-rsa AAA... @@ -92050,7 +92233,7 @@ paths: parameters: - *356 - *357 - - &591 + - &595 name: key_id description: The unique identifier of the key. in: path @@ -92062,9 +92245,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *593 examples: - default: *590 + default: *594 '404': *6 x-github: githubCloudOnly: false @@ -92084,7 +92267,7 @@ paths: parameters: - *356 - *357 - - *591 + - *595 responses: '204': description: Response @@ -92117,7 +92300,7 @@ paths: type: array items: *87 examples: - default: *573 + default: *574 headers: Link: *70 '404': *6 @@ -92177,7 +92360,7 @@ paths: application/json: schema: *87 examples: - default: &592 + default: &596 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92223,7 +92406,7 @@ paths: application/json: schema: *87 examples: - default: *592 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -92623,7 +92806,7 @@ paths: application/json: schema: *489 examples: - default: *593 + default: *597 '204': description: Response when already merged '404': @@ -92690,7 +92873,7 @@ paths: application/json: schema: type: array - items: &594 + items: &598 title: Milestone description: A collection of related issues and pull requests. type: object @@ -92792,9 +92975,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *598 examples: - default: &595 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -92855,7 +93038,7 @@ paths: parameters: - *356 - *357 - - &596 + - &600 name: milestone_number description: The number that identifies the milestone. in: path @@ -92867,9 +93050,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *598 examples: - default: *595 + default: *599 '404': *6 x-github: githubCloudOnly: false @@ -92888,7 +93071,7 @@ paths: parameters: - *356 - *357 - - *596 + - *600 requestBody: required: false content: @@ -92926,9 +93109,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *598 examples: - default: *595 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92946,7 +93129,7 @@ paths: parameters: - *356 - *357 - - *596 + - *600 responses: '204': description: Response @@ -92969,7 +93152,7 @@ paths: parameters: - *356 - *357 - - *596 + - *600 - *17 - *19 responses: @@ -92981,7 +93164,7 @@ paths: type: array items: *87 examples: - default: *573 + default: *574 headers: Link: *70 x-github: @@ -93002,10 +93185,10 @@ paths: parameters: - *356 - *357 - - *597 - - *598 + - *601 + - *602 - *95 - - *599 + - *603 - *17 - *19 responses: @@ -93017,7 +93200,7 @@ paths: type: array items: *115 examples: - default: *600 + default: *604 headers: Link: *70 x-github: @@ -93107,7 +93290,7 @@ paths: description: Response content: application/json: - schema: &601 + schema: &605 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -93232,7 +93415,7 @@ paths: - custom_404 - public examples: - default: &602 + default: &606 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -93328,9 +93511,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *605 examples: - default: *602 + default: *606 '422': *15 '409': *54 x-github: @@ -93491,7 +93674,7 @@ paths: application/json: schema: type: array - items: &603 + items: &607 title: Page Build description: Page Build type: object @@ -93638,9 +93821,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *607 examples: - default: &604 + default: &608 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -93700,9 +93883,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *607 examples: - default: *604 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93830,7 +94013,7 @@ paths: parameters: - *356 - *357 - - &605 + - &609 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -93890,7 +94073,7 @@ paths: parameters: - *356 - *357 - - *605 + - *609 responses: '204': *61 '404': *6 @@ -94425,7 +94608,7 @@ paths: type: array items: *493 examples: - default: *606 + default: *610 headers: Link: *70 '304': *37 @@ -94523,7 +94706,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &614 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -94734,7 +94917,7 @@ paths: - review_comment - self author_association: *85 - auto_merge: *607 + auto_merge: *611 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -94920,7 +95103,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &611 + default: &615 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -95488,9 +95671,9 @@ paths: application/json: schema: type: array - items: *608 + items: *612 examples: - default: &613 + default: &617 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95575,9 +95758,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *612 examples: - default: &609 + default: &613 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -95676,9 +95859,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *612 examples: - default: *609 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95881,7 +96064,7 @@ paths: parameters: - *356 - *357 - - &612 + - &616 name: pull_number description: The number that identifies the pull request. in: path @@ -95894,9 +96077,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *610 + schema: *614 examples: - default: *611 + default: *615 '304': *37 '404': *6 '406': @@ -95933,7 +96116,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: false content: @@ -95975,9 +96158,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *614 examples: - default: *611 + default: *615 '422': *15 '403': *29 x-github: @@ -96001,7 +96184,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: true content: @@ -96103,7 +96286,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 - *112 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -96124,9 +96307,9 @@ paths: application/json: schema: type: array - items: *608 + items: *612 examples: - default: *613 + default: *617 headers: Link: *70 x-github: @@ -96161,7 +96344,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: true content: @@ -96266,7 +96449,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *612 examples: example-for-a-multi-line-comment: value: @@ -96356,7 +96539,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 - *104 requestBody: required: true @@ -96379,7 +96562,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *612 examples: default: value: @@ -96467,7 +96650,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 - *17 - *19 responses: @@ -96479,7 +96662,7 @@ paths: type: array items: *489 examples: - default: *614 + default: *618 headers: Link: *70 x-github: @@ -96511,7 +96694,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 - *17 - *19 responses: @@ -96561,7 +96744,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 responses: '204': description: Response if pull request has been merged @@ -96586,7 +96769,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: false content: @@ -96699,7 +96882,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 responses: '200': description: Response @@ -96776,7 +96959,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: false content: @@ -97351,7 +97534,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: true content: @@ -97903,7 +98086,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 - *17 - *19 responses: @@ -97913,7 +98096,7 @@ paths: application/json: schema: type: array - items: &615 + items: &619 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -98066,7 +98249,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: false content: @@ -98152,9 +98335,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *619 examples: - default: &617 + default: &621 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98219,8 +98402,8 @@ paths: parameters: - *356 - *357 - - *612 - - &616 + - *616 + - &620 name: review_id description: The unique identifier of the review. in: path @@ -98232,9 +98415,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *619 examples: - default: &618 + default: &622 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -98295,8 +98478,8 @@ paths: parameters: - *356 - *357 - - *612 - *616 + - *620 requestBody: required: true content: @@ -98319,7 +98502,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *619 examples: default: value: @@ -98383,16 +98566,16 @@ paths: parameters: - *356 - *357 - - *612 - *616 + - *620 responses: '200': description: Response content: application/json: - schema: *615 + schema: *619 examples: - default: *617 + default: *621 '422': *7 '404': *6 x-github: @@ -98421,8 +98604,8 @@ paths: parameters: - *356 - *357 - - *612 - *616 + - *620 - *17 - *19 responses: @@ -98659,8 +98842,8 @@ paths: parameters: - *356 - *357 - - *612 - *616 + - *620 requestBody: required: true content: @@ -98688,7 +98871,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *619 examples: default: value: @@ -98753,8 +98936,8 @@ paths: parameters: - *356 - *357 - - *612 - *616 + - *620 requestBody: required: true content: @@ -98789,9 +98972,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *619 examples: - default: *618 + default: *622 '404': *6 '422': *7 '403': *29 @@ -98815,7 +98998,7 @@ paths: parameters: - *356 - *357 - - *612 + - *616 requestBody: required: false content: @@ -98892,9 +99075,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: &620 + default: &624 value: type: file encoding: base64 @@ -98957,9 +99140,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *623 examples: - default: *620 + default: *624 '404': *6 '422': *15 x-github: @@ -98992,7 +99175,7 @@ paths: application/json: schema: type: array - items: *621 + items: *625 examples: default: value: @@ -99163,9 +99346,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *625 examples: - default: &625 + default: &629 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -99272,7 +99455,7 @@ paths: parameters: - *356 - *357 - - &623 + - &627 name: asset_id description: The unique identifier of the asset. in: path @@ -99284,9 +99467,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *626 examples: - default: &624 + default: &628 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -99339,7 +99522,7 @@ paths: parameters: - *356 - *357 - - *623 + - *627 requestBody: required: false content: @@ -99367,9 +99550,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *626 examples: - default: *624 + default: *628 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99387,7 +99570,7 @@ paths: parameters: - *356 - *357 - - *623 + - *627 responses: '204': description: Response @@ -99505,9 +99688,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *625 examples: - default: *625 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -99539,9 +99722,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *625 examples: - default: *625 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -99565,7 +99748,7 @@ paths: parameters: - *356 - *357 - - &626 + - &630 name: release_id description: The unique identifier of the release. in: path @@ -99579,9 +99762,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *621 + schema: *625 examples: - default: *625 + default: *629 '401': description: Unauthorized x-github: @@ -99601,7 +99784,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 requestBody: required: false content: @@ -99665,9 +99848,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *625 examples: - default: *625 + default: *629 '404': description: Not Found if the discussion category name is invalid content: @@ -99690,7 +99873,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 responses: '204': description: Response @@ -99713,7 +99896,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 - *17 - *19 responses: @@ -99723,7 +99906,7 @@ paths: application/json: schema: type: array - items: *622 + items: *626 examples: default: value: @@ -99806,7 +99989,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 - name: name in: query required: true @@ -99832,7 +100015,7 @@ paths: description: Response for successful upload content: application/json: - schema: *622 + schema: *626 examples: response-for-successful-upload: value: @@ -99889,7 +100072,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -99938,7 +100121,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 requestBody: required: true content: @@ -100001,7 +100184,7 @@ paths: parameters: - *356 - *357 - - *626 + - *630 - *562 responses: '204': @@ -100045,7 +100228,7 @@ paths: oneOf: - allOf: - *320 - - &627 + - &631 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -100066,67 +100249,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *321 - - *627 + - *631 - allOf: - *322 - - *627 + - *631 - allOf: - *323 - - *627 + - *631 - allOf: - - *628 - - *627 + - *632 + - *631 - allOf: - *324 - - *627 + - *631 - allOf: - *325 - - *627 + - *631 - allOf: - *326 - - *627 + - *631 - allOf: - *327 - - *627 + - *631 - allOf: - *328 - - *627 + - *631 - allOf: - *329 - - *627 + - *631 - allOf: - *330 - - *627 + - *631 - allOf: - *331 - - *627 + - *631 - allOf: - *332 - - *627 + - *631 - allOf: - *333 - - *627 + - *631 - allOf: - *338 - - *627 + - *631 - allOf: - *339 - - *627 + - *631 - allOf: - *340 - - *627 + - *631 - allOf: - *334 - - *627 + - *631 - allOf: - *335 - - *627 + - *631 - allOf: - *336 - - *627 + - *631 - allOf: - *337 - - *627 + - *631 examples: default: value: @@ -100177,7 +100360,7 @@ paths: schema: type: boolean default: true - - *629 + - *633 responses: '200': description: Response @@ -100262,7 +100445,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *630 + items: *634 required: - name - enforcement @@ -100295,7 +100478,7 @@ paths: application/json: schema: *341 examples: - default: &641 + default: &645 value: id: 42 name: super cool ruleset @@ -100345,11 +100528,11 @@ paths: parameters: - *356 - *357 - - *631 - - *632 - - *633 - - *634 - *635 + - *636 + - *637 + - *638 + - *639 - *17 - *19 responses: @@ -100357,9 +100540,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *640 examples: - default: *637 + default: *641 '404': *6 '500': *55 x-github: @@ -100382,15 +100565,15 @@ paths: parameters: - *356 - *357 - - *638 + - *642 responses: '200': description: Response content: application/json: - schema: *639 + schema: *643 examples: - default: *640 + default: *644 '404': *6 '500': *55 x-github: @@ -100441,7 +100624,7 @@ paths: application/json: schema: *341 examples: - default: *641 + default: *645 '404': *6 '500': *55 put: @@ -100494,7 +100677,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *630 + items: *634 examples: default: value: @@ -100524,7 +100707,7 @@ paths: application/json: schema: *341 examples: - default: *641 + default: *645 '404': *6 '422': *15 '500': *55 @@ -100586,7 +100769,7 @@ paths: type: array items: *344 examples: - default: *642 + default: *646 '404': *6 '500': *55 x-github: @@ -100624,7 +100807,7 @@ paths: description: Response content: application/json: - schema: *643 + schema: *647 examples: default: value: @@ -100681,24 +100864,24 @@ paths: parameters: - *356 - *357 - - *644 - - *645 - - *646 - - *647 - *648 - *649 - *650 - *651 - - *62 - - *19 - - *17 - *652 - *653 - *654 - *655 + - *62 + - *19 + - *17 - *656 - *657 - *658 + - *659 + - *660 + - *661 + - *662 responses: '200': description: Response @@ -100706,7 +100889,7 @@ paths: application/json: schema: type: array - items: &662 + items: &666 type: object properties: number: *188 @@ -100725,8 +100908,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *659 - resolution: *660 + state: *663 + resolution: *664 resolved_at: type: string format: date-time @@ -100832,7 +101015,7 @@ paths: pull request. ' - oneOf: *661 + oneOf: *665 nullable: true has_more_locations: type: boolean @@ -100999,13 +101182,13 @@ paths: - *356 - *357 - *453 - - *657 + - *661 responses: '200': description: Response content: application/json: - schema: *662 + schema: *666 examples: default: value: @@ -101069,8 +101252,8 @@ paths: schema: type: object properties: - state: *659 - resolution: *660 + state: *663 + resolution: *664 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -101114,7 +101297,7 @@ paths: description: Response content: application/json: - schema: *662 + schema: *666 examples: default: value: @@ -101226,7 +101409,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &820 + items: &824 type: object properties: type: @@ -101252,10 +101435,6 @@ paths: example: commit details: oneOf: - - *663 - - *664 - - *665 - - *666 - *667 - *668 - *669 @@ -101265,6 +101444,10 @@ paths: - *673 - *674 - *675 + - *676 + - *677 + - *678 + - *679 examples: default: value: @@ -101359,14 +101542,14 @@ paths: schema: type: object properties: - reason: &677 + reason: &681 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *676 + placeholder_id: *680 required: - reason - placeholder_id @@ -101383,7 +101566,7 @@ paths: schema: type: object properties: - reason: *677 + reason: *681 expire_at: type: string format: date-time @@ -101445,7 +101628,7 @@ paths: properties: incremental_scans: type: array - items: &678 + items: &682 description: Information on a single scan performed by secret scanning on the repository type: object @@ -101476,15 +101659,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *678 + items: *682 backfill_scans: type: array - items: *678 + items: *682 custom_pattern_backfill_scans: type: array items: allOf: - - *678 + - *682 - type: object properties: pattern_name: @@ -101497,7 +101680,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *678 + items: *682 examples: default: value: @@ -101607,9 +101790,9 @@ paths: application/json: schema: type: array - items: *679 + items: *683 examples: - default: *680 + default: *684 '400': *14 '404': *6 x-github: @@ -101793,9 +101976,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *683 examples: - default: &682 + default: &686 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -102139,7 +102322,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *683 examples: default: value: @@ -102294,15 +102477,15 @@ paths: parameters: - *356 - *357 - - *681 + - *685 responses: '200': description: Response content: application/json: - schema: *679 + schema: *683 examples: - default: *682 + default: *686 '403': *29 '404': *6 x-github: @@ -102328,7 +102511,7 @@ paths: parameters: - *356 - *357 - - *681 + - *685 requestBody: required: true content: @@ -102487,10 +102670,10 @@ paths: description: Response content: application/json: - schema: *679 + schema: *683 examples: - default: *682 - add_credit: *682 + default: *686 + add_credit: *686 '403': *29 '404': *6 '422': @@ -102530,7 +102713,7 @@ paths: parameters: - *356 - *357 - - *681 + - *685 responses: '202': *39 '400': *14 @@ -102559,7 +102742,7 @@ paths: parameters: - *356 - *357 - - *681 + - *685 responses: '202': description: Response @@ -102703,7 +102886,7 @@ paths: application/json: schema: type: array - items: &683 + items: &687 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -103076,7 +103259,7 @@ paths: application/json: schema: type: array - items: *683 + items: *687 examples: default: value: @@ -103164,7 +103347,7 @@ paths: description: Response content: application/json: - schema: *684 + schema: *688 examples: default: value: @@ -103258,7 +103441,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &685 + schema: &689 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103353,7 +103536,7 @@ paths: description: Response content: application/json: - schema: *685 + schema: *689 examples: default: value: @@ -103560,7 +103743,7 @@ paths: description: Response content: application/json: - schema: &686 + schema: &690 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -103572,7 +103755,7 @@ paths: required: - names examples: - default: &687 + default: &691 value: names: - octocat @@ -103627,9 +103810,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *690 examples: - default: *687 + default: *691 '404': *6 '422': *7 x-github: @@ -103652,7 +103835,7 @@ paths: parameters: - *356 - *357 - - &688 + - &692 name: per description: The time frame to display results for. in: query @@ -103681,7 +103864,7 @@ paths: example: 128 clones: type: array - items: &689 + items: &693 title: Traffic type: object properties: @@ -103922,7 +104105,7 @@ paths: parameters: - *356 - *357 - - *688 + - *692 responses: '200': description: Response @@ -103941,7 +104124,7 @@ paths: example: 3782 views: type: array - items: *689 + items: *693 required: - uniques - count @@ -104719,7 +104902,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &690 + text_matches: &694 title: Search Result Text Matches type: array items: @@ -104881,7 +105064,7 @@ paths: enum: - author-date - committer-date - - &691 + - &695 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -105009,7 +105192,7 @@ paths: type: number node_id: type: string - text_matches: *690 + text_matches: *694 required: - sha - node_id @@ -105201,7 +105384,7 @@ paths: - interactions - created - updated - - *691 + - *695 - *17 - *19 - name: advanced_search @@ -105315,11 +105498,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: type: string state_reason: @@ -105351,7 +105534,7 @@ paths: type: string format: date-time nullable: true - text_matches: *690 + text_matches: *694 pull_request: type: object properties: @@ -105667,7 +105850,7 @@ paths: enum: - created - updated - - *691 + - *695 - *17 - *19 responses: @@ -105711,7 +105894,7 @@ paths: nullable: true score: type: number - text_matches: *690 + text_matches: *694 required: - id - node_id @@ -105796,7 +105979,7 @@ paths: - forks - help-wanted-issues - updated - - *691 + - *695 - *17 - *19 responses: @@ -106044,7 +106227,7 @@ paths: - admin - pull - push - text_matches: *690 + text_matches: *694 temp_clone_token: type: string allow_merge_commit: @@ -106344,7 +106527,7 @@ paths: type: string format: uri nullable: true - text_matches: *690 + text_matches: *694 related: type: array nullable: true @@ -106535,7 +106718,7 @@ paths: - followers - repositories - joined - - *691 + - *695 - *17 - *19 responses: @@ -106639,7 +106822,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *690 + text_matches: *694 blog: type: string nullable: true @@ -106718,7 +106901,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &694 + - &698 name: team_id description: The unique identifier of the team. in: path @@ -106759,7 +106942,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *694 + - *698 requestBody: required: true content: @@ -106859,7 +107042,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *694 + - *698 responses: '204': description: Response @@ -106888,7 +107071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *694 + - *698 - *17 - *19 responses: @@ -106926,7 +107109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *694 + - *698 - name: role description: Filters members returned by their role in the team. in: query @@ -106977,7 +107160,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *694 + - *698 - *74 responses: '204': @@ -107014,7 +107197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *694 + - *698 - *74 responses: '204': @@ -107054,7 +107237,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *694 + - *698 - *74 responses: '204': @@ -107091,7 +107274,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *694 + - *698 - *74 responses: '200': @@ -107100,7 +107283,7 @@ paths: application/json: schema: *355 examples: - response-if-user-is-a-team-maintainer: *695 + response-if-user-is-a-team-maintainer: *699 '404': *6 x-github: githubCloudOnly: false @@ -107133,7 +107316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *694 + - *698 - *74 requestBody: required: false @@ -107161,7 +107344,7 @@ paths: application/json: schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: *696 + response-if-users-membership-with-team-is-now-pending: *700 '403': description: Forbidden if team synchronization is set up '422': @@ -107195,7 +107378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *694 + - *698 - *74 responses: '204': @@ -107223,7 +107406,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *694 + - *698 - *17 - *19 responses: @@ -107265,7 +107448,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *694 + - *698 - *356 - *357 responses: @@ -107273,7 +107456,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *697 + schema: *701 examples: alternative-response-with-extra-repository-information: value: @@ -107430,7 +107613,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *694 + - *698 - *356 - *357 requestBody: @@ -107482,7 +107665,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *694 + - *698 - *356 - *357 responses: @@ -107509,7 +107692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *694 + - *698 - *17 - *19 responses: @@ -107521,7 +107704,7 @@ paths: type: array items: *210 examples: - response-if-child-teams-exist: *698 + response-if-child-teams-exist: *702 headers: Link: *70 '404': *6 @@ -107554,7 +107737,7 @@ paths: application/json: schema: oneOf: - - &700 + - &704 title: Private User description: Private User type: object @@ -107757,7 +107940,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *699 + - *703 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -107910,7 +108093,7 @@ paths: description: Response content: application/json: - schema: *700 + schema: *704 examples: default: value: @@ -108308,7 +108491,7 @@ paths: type: integer secrets: type: array - items: &701 + items: &705 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108424,7 +108607,7 @@ paths: description: Response content: application/json: - schema: *701 + schema: *705 examples: default: value: @@ -108837,7 +109020,7 @@ paths: description: Response content: application/json: - schema: &702 + schema: &706 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -108878,7 +109061,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &703 + default: &707 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -108923,9 +109106,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *706 examples: - default: *703 + default: *707 '404': *6 x-github: githubCloudOnly: false @@ -108962,9 +109145,9 @@ paths: type: integer machines: type: array - items: *704 + items: *708 examples: - default: *705 + default: *709 '304': *37 '500': *55 '401': *25 @@ -109903,7 +110086,7 @@ paths: type: array items: *276 examples: - default: &716 + default: &720 value: - id: 197 name: hello_docker @@ -110004,7 +110187,7 @@ paths: application/json: schema: type: array - items: &706 + items: &710 title: Email description: Email type: object @@ -110069,9 +110252,9 @@ paths: application/json: schema: type: array - items: *706 + items: *710 examples: - default: &718 + default: &722 value: - email: octocat@github.com verified: true @@ -110146,7 +110329,7 @@ paths: application/json: schema: type: array - items: *706 + items: *710 examples: default: value: @@ -110402,7 +110585,7 @@ paths: application/json: schema: type: array - items: &707 + items: &711 title: GPG Key description: A unique encryption key type: object @@ -110533,7 +110716,7 @@ paths: - subkeys - revoked examples: - default: &735 + default: &739 value: - id: 3 name: Octocat's GPG Key @@ -110618,9 +110801,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *711 examples: - default: &708 + default: &712 value: id: 3 name: Octocat's GPG Key @@ -110677,7 +110860,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &709 + - &713 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -110689,9 +110872,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *711 examples: - default: *708 + default: *712 '404': *6 '304': *37 '403': *29 @@ -110714,7 +110897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *709 + - *713 responses: '204': description: Response @@ -111181,7 +111364,7 @@ paths: application/json: schema: type: array - items: &710 + items: &714 title: Key description: Key type: object @@ -111282,9 +111465,9 @@ paths: description: Response content: application/json: - schema: *710 + schema: *714 examples: - default: &711 + default: &715 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111317,15 +111500,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *591 + - *595 responses: '200': description: Response content: application/json: - schema: *710 + schema: *714 examples: - default: *711 + default: *715 '404': *6 '304': *37 '403': *29 @@ -111348,7 +111531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *591 + - *595 responses: '204': description: Response @@ -111381,7 +111564,7 @@ paths: application/json: schema: type: array - items: &712 + items: &716 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -111449,7 +111632,7 @@ paths: - account - plan examples: - default: &713 + default: &717 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -111511,9 +111694,9 @@ paths: application/json: schema: type: array - items: *712 + items: *716 examples: - default: *713 + default: *717 headers: Link: *70 '304': *37 @@ -112522,7 +112705,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *270 - - *714 + - *718 responses: '204': description: Response @@ -112655,7 +112838,7 @@ paths: - docker - nuget - container - - *715 + - *719 - *19 - *17 responses: @@ -112667,8 +112850,8 @@ paths: type: array items: *276 examples: - default: *716 - '400': *717 + default: *720 + '400': *721 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112697,7 +112880,7 @@ paths: application/json: schema: *276 examples: - default: &736 + default: &740 value: id: 40201 name: octo-name @@ -113059,9 +113242,9 @@ paths: application/json: schema: type: array - items: *706 + items: *710 examples: - default: *718 + default: *722 headers: Link: *70 '304': *37 @@ -113174,7 +113357,7 @@ paths: type: array items: *82 examples: - default: &725 + default: &729 summary: Default response value: - id: 1296269 @@ -113526,7 +113709,7 @@ paths: type: array items: *556 examples: - default: *719 + default: *723 headers: Link: *70 '304': *37 @@ -113611,7 +113794,7 @@ paths: application/json: schema: type: array - items: &720 + items: &724 title: Social account description: Social media account type: object @@ -113626,7 +113809,7 @@ paths: - provider - url examples: - default: &721 + default: &725 value: - provider: twitter url: https://twitter.com/github @@ -113688,9 +113871,9 @@ paths: application/json: schema: type: array - items: *720 + items: *724 examples: - default: *721 + default: *725 '422': *15 '304': *37 '404': *6 @@ -113777,7 +113960,7 @@ paths: application/json: schema: type: array - items: &722 + items: &726 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -113797,7 +113980,7 @@ paths: - title - created_at examples: - default: &753 + default: &757 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113861,9 +114044,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *726 examples: - default: &723 + default: &727 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113893,7 +114076,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: - - &724 + - &728 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -113905,9 +114088,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *726 examples: - default: *723 + default: *727 '404': *6 '304': *37 '403': *29 @@ -113930,7 +114113,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: - - *724 + - *728 responses: '204': description: Response @@ -113959,7 +114142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &754 + - &758 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 @@ -113984,11 +114167,11 @@ paths: type: array items: *82 examples: - default-response: *725 + default-response: *729 application/vnd.github.v3.star+json: schema: type: array - items: &755 + items: &759 title: Starred Repository description: Starred Repository type: object @@ -114357,10 +114540,10 @@ paths: application/json: schema: oneOf: - - *700 - - *699 + - *704 + - *703 examples: - default-response: &729 + default-response: &733 summary: Default response value: login: octocat @@ -114395,7 +114578,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &730 + response-with-git-hub-plan-information: &734 summary: Response with GitHub plan information value: login: octocat @@ -114452,7 +114635,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &727 + - &731 name: user_id description: The unique identifier of the user. in: path @@ -114518,7 +114701,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *726 + - *730 - *17 responses: '200': @@ -114553,7 +114736,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *727 + - *731 - *294 requestBody: required: true @@ -114625,7 +114808,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *728 + schema: *732 examples: table_view: summary: Response for creating a table view @@ -114677,11 +114860,11 @@ paths: application/json: schema: oneOf: - - *700 - - *699 + - *704 + - *703 examples: - default-response: *729 - response-with-git-hub-plan-information: *730 + default-response: *733 + response-with-git-hub-plan-information: *734 '404': *6 x-github: githubCloudOnly: false @@ -114731,8 +114914,8 @@ paths: required: - subject_digests examples: - default: *731 - withPredicateType: *732 + default: *735 + withPredicateType: *736 responses: '200': description: Response @@ -114785,7 +114968,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *733 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115300,7 +115483,7 @@ paths: application/json: schema: *204 examples: - default: &734 + default: &738 summary: Example response for a user copilot space value: id: 42 @@ -115401,7 +115584,7 @@ paths: application/json: schema: *204 examples: - default: *734 + default: *738 '403': *29 '404': *6 x-github: @@ -115524,7 +115707,7 @@ paths: application/json: schema: *204 examples: - default: *734 + default: *738 '403': *29 '404': *6 '422': *15 @@ -116292,7 +116475,7 @@ paths: type: array items: *276 examples: - default: *716 + default: *720 '403': *29 '401': *25 x-github: @@ -116676,9 +116859,9 @@ paths: application/json: schema: type: array - items: *707 + items: *711 examples: - default: *735 + default: *739 headers: Link: *70 x-github: @@ -116906,7 +117089,7 @@ paths: - docker - nuget - container - - *715 + - *719 - *74 - *19 - *17 @@ -116919,10 +117102,10 @@ paths: type: array items: *276 examples: - default: *716 + default: *720 '403': *29 '401': *25 - '400': *717 + '400': *721 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116952,7 +117135,7 @@ paths: application/json: schema: *276 examples: - default: *736 + default: *740 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117301,7 +117484,7 @@ paths: type: array items: *298 examples: - default: *737 + default: *741 headers: Link: *70 '304': *37 @@ -117361,7 +117544,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *738 + items: *742 required: - name - data_type @@ -117377,7 +117560,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *739 + iteration_configuration: *743 required: - name - data_type @@ -117399,8 +117582,8 @@ paths: value: name: Due date data_type: date - single_select_field: *740 - iteration_field: *741 + single_select_field: *744 + iteration_field: *745 responses: '201': description: Response @@ -117408,11 +117591,11 @@ paths: application/json: schema: *298 examples: - text_field: *742 - number_field: *743 - date_field: *744 - single_select_field: *745 - iteration_field: *746 + text_field: *746 + number_field: *747 + date_field: *748 + single_select_field: *749 + iteration_field: *750 '304': *37 '403': *29 '401': *25 @@ -117434,7 +117617,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *294 - - *747 + - *751 - *74 responses: '200': @@ -117443,7 +117626,7 @@ paths: application/json: schema: *298 examples: - default: *748 + default: *752 headers: Link: *70 '304': *37 @@ -117797,7 +117980,7 @@ paths: parameters: - *294 - *74 - - *749 + - *753 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -118336,7 +118519,7 @@ paths: parameters: - *74 - *124 - - *750 + - *754 - *126 responses: '200': @@ -118435,9 +118618,9 @@ paths: - *124 - *125 - *126 - - *751 + - *755 - *129 - - *752 + - *756 responses: '200': description: Response when getting a billing usage summary @@ -118571,9 +118754,9 @@ paths: application/json: schema: type: array - items: *720 + items: *724 examples: - default: *721 + default: *725 headers: Link: *70 x-github: @@ -118603,9 +118786,9 @@ paths: application/json: schema: type: array - items: *722 + items: *726 examples: - default: *753 + default: *757 headers: Link: *70 x-github: @@ -118630,7 +118813,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *754 + - *758 - *62 - *17 - *19 @@ -118642,11 +118825,11 @@ paths: schema: anyOf: - type: array - items: *755 + items: *759 - type: array items: *82 examples: - default-response: *725 + default-response: *729 headers: Link: *70 x-github: @@ -118805,7 +118988,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &756 + enterprise: &760 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -118863,7 +119046,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &757 + installation: &761 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -118882,7 +119065,7 @@ x-webhooks: required: - id - node_id - organization: &758 + organization: &762 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -118942,13 +119125,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &759 + repository: &763 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: &791 + properties: &795 id: description: Unique identifier of the repository example: 42 @@ -119643,7 +119826,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &792 + required: &796 - archive_url - assignees_url - blobs_url @@ -119717,7 +119900,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &793 + x-github-breaking-changes: &797 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -119808,10 +119991,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -119887,11 +120070,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: &760 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + rule: &764 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) @@ -120114,11 +120297,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: *760 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + rule: *764 sender: *4 required: - action @@ -120301,11 +120484,11 @@ x-webhooks: - everyone required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - rule: *760 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + rule: *764 sender: *4 required: - action @@ -120389,7 +120572,7 @@ x-webhooks: type: string enum: - completed - check_run: &762 + check_run: &766 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120480,7 +120663,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *761 + deployment: *765 details_url: example: https://example.com type: string @@ -120565,10 +120748,10 @@ x-webhooks: - output - app - pull_requests - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + installation: *761 + enterprise: *760 + organization: *762 + repository: *763 sender: *4 required: - check_run @@ -120959,11 +121142,11 @@ x-webhooks: type: string enum: - created - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *766 + installation: *761 + enterprise: *760 + organization: *762 + repository: *763 sender: *4 required: - check_run @@ -121357,11 +121540,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *766 + installation: *761 + enterprise: *760 + organization: *762 + repository: *763 requested_action: description: The action requested by the user. type: object @@ -121764,11 +121947,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *762 - installation: *757 - enterprise: *756 - organization: *758 - repository: *759 + check_run: *766 + installation: *761 + enterprise: *760 + organization: *762 + repository: *763 sender: *4 required: - check_run @@ -122738,10 +122921,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -123440,10 +123623,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -124136,10 +124319,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -124450,20 +124633,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &763 + commit_oid: &767 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: *756 - installation: *757 - organization: *758 - ref: &764 + enterprise: *760 + installation: *761 + organization: *762 + ref: &768 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: *759 + repository: *763 sender: *4 required: - action @@ -124858,12 +125041,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *767 + enterprise: *760 + installation: *761 + organization: *762 + ref: *768 + repository: *763 sender: *4 required: - action @@ -125129,12 +125312,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *767 + enterprise: *760 + installation: *761 + organization: *762 + ref: *768 + repository: *763 sender: *4 required: - action @@ -125466,12 +125649,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *767 + enterprise: *760 + installation: *761 + organization: *762 + ref: *768 + repository: *763 sender: *4 required: - action @@ -125745,16 +125928,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 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: *759 + repository: *763 sender: *4 required: - action @@ -125991,12 +126174,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *763 - enterprise: *756 - installation: *757 - organization: *758 - ref: *764 - repository: *759 + commit_oid: *767 + enterprise: *760 + installation: *761 + organization: *762 + ref: *768 + repository: *763 sender: *4 required: - action @@ -126307,10 +126490,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -126565,10 +126748,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -126648,18 +126831,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *758 - pusher_type: &765 + organization: *762 + pusher_type: &769 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &766 + ref: &770 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -126669,7 +126852,7 @@ x-webhooks: enum: - tag - branch - repository: *759 + repository: *763 sender: *4 required: - ref @@ -126752,9 +126935,9 @@ x-webhooks: enum: - created definition: *306 - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 sender: *4 required: - action @@ -126839,9 +127022,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 sender: *4 required: - action @@ -126919,9 +127102,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *306 - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 sender: *4 required: - action @@ -126999,9 +127182,9 @@ x-webhooks: enum: - updated definition: *306 - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 sender: *4 required: - action @@ -127078,10 +127261,10 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - repository: *759 - organization: *758 + enterprise: *760 + installation: *761 + repository: *763 + organization: *762 sender: *4 new_property_values: type: array @@ -127166,18 +127349,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - pusher_type: *765 - ref: *766 + enterprise: *760 + installation: *761 + organization: *762 + pusher_type: *769 + ref: *770 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *759 + repository: *763 sender: *4 required: - ref @@ -127258,10 +127441,10 @@ x-webhooks: enum: - assignees_changed alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127342,10 +127525,10 @@ x-webhooks: enum: - auto_dismissed alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127427,10 +127610,10 @@ x-webhooks: enum: - auto_reopened alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127512,10 +127695,10 @@ x-webhooks: enum: - created alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127595,10 +127778,10 @@ x-webhooks: enum: - dismissed alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127678,10 +127861,10 @@ x-webhooks: enum: - fixed alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127762,10 +127945,10 @@ x-webhooks: enum: - reintroduced alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127845,10 +128028,10 @@ x-webhooks: enum: - reopened alert: *512 - installation: *757 - organization: *758 - enterprise: *756 - repository: *759 + installation: *761 + organization: *762 + enterprise: *760 + repository: *763 sender: *4 required: - action @@ -127925,9 +128108,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - key: &767 + enterprise: *760 + installation: *761 + key: &771 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127963,8 +128146,8 @@ x-webhooks: - verified - created_at - read_only - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -128041,11 +128224,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - key: *767 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + key: *771 + organization: *762 + repository: *763 sender: *4 required: - action @@ -128601,12 +128784,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - workflow: &773 + workflow: &777 title: Workflow type: object nullable: true @@ -129347,15 +129530,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *768 - required: *769 + properties: *772 + required: *773 nullable: true pull_requests: type: array - items: *610 - repository: *759 - organization: *758 - installation: *757 + items: *614 + repository: *763 + organization: *762 + installation: *761 sender: *4 responses: '200': @@ -129426,7 +129609,7 @@ x-webhooks: type: string enum: - approved - approver: &770 + approver: &774 type: object properties: avatar_url: @@ -129469,11 +129652,11 @@ x-webhooks: type: string comment: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - reviewers: &771 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + reviewers: &775 type: array items: type: object @@ -129552,7 +129735,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &772 + workflow_job_run: &776 type: object properties: conclusion: @@ -130283,18 +130466,18 @@ x-webhooks: type: string enum: - rejected - approver: *770 + approver: *774 comment: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - reviewers: *771 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + reviewers: *775 sender: *4 since: type: string - workflow_job_run: *772 + workflow_job_run: *776 workflow_job_runs: type: array items: @@ -130998,13 +131181,13 @@ x-webhooks: type: string enum: - requested - enterprise: *756 + enterprise: *760 environment: type: string - installation: *757 - organization: *758 - repository: *759 - requestor: &778 + installation: *761 + organization: *762 + repository: *763 + requestor: &782 title: User type: object nullable: true @@ -132893,12 +133076,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - workflow: *773 + workflow: *777 workflow_run: title: Deployment Workflow Run type: object @@ -133578,7 +133761,7 @@ x-webhooks: type: string enum: - answered - answer: &776 + answer: &780 type: object properties: author_association: @@ -133735,11 +133918,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -133866,11 +134049,11 @@ x-webhooks: - from required: - category - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -133953,11 +134136,11 @@ x-webhooks: type: string enum: - closed - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134039,7 +134222,7 @@ x-webhooks: type: string enum: - created - comment: &775 + comment: &779 type: object properties: author_association: @@ -134196,11 +134379,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134283,12 +134466,12 @@ x-webhooks: type: string enum: - deleted - comment: *775 - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + comment: *779 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134383,12 +134566,12 @@ x-webhooks: - from required: - body - comment: *775 - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + comment: *779 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134472,11 +134655,11 @@ x-webhooks: type: string enum: - created - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134558,11 +134741,11 @@ x-webhooks: type: string enum: - deleted - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134662,11 +134845,11 @@ x-webhooks: type: string required: - from - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134748,10 +134931,10 @@ x-webhooks: type: string enum: - labeled - discussion: *774 - enterprise: *756 - installation: *757 - label: &777 + discussion: *778 + enterprise: *760 + installation: *761 + label: &781 title: Label type: object properties: @@ -134783,8 +134966,8 @@ x-webhooks: - color - default - description - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134867,11 +135050,11 @@ x-webhooks: type: string enum: - locked - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -134953,11 +135136,11 @@ x-webhooks: type: string enum: - pinned - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135039,11 +135222,11 @@ x-webhooks: type: string enum: - reopened - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135128,16 +135311,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *774 - new_repository: *759 + new_discussion: *778 + new_repository: *763 required: - new_discussion - new_repository - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135220,10 +135403,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *774 - old_answer: *776 - organization: *758 - repository: *759 + discussion: *778 + old_answer: *780 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135305,12 +135488,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *774 - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135393,11 +135576,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135479,11 +135662,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *774 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + discussion: *778 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -135556,7 +135739,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *756 + enterprise: *760 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -136216,9 +136399,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - forkee @@ -136364,9 +136547,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pages: description: The pages that were updated. type: array @@ -136403,7 +136586,7 @@ x-webhooks: - action - sha - html_url - repository: *759 + repository: *763 sender: *4 required: - pages @@ -136479,10 +136662,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories: &779 + organization: *762 + repositories: &783 description: An array of repository objects that the installation can access. type: array @@ -136508,8 +136691,8 @@ x-webhooks: - name - full_name - private - repository: *759 - requester: *778 + repository: *763 + requester: *782 sender: *4 required: - action @@ -136584,11 +136767,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *762 + repositories: *783 + repository: *763 requester: nullable: true sender: *4 @@ -136664,11 +136847,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *762 + repositories: *783 + repository: *763 requester: nullable: true sender: *4 @@ -136744,10 +136927,10 @@ x-webhooks: type: string enum: - added - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories_added: &780 + organization: *762 + repositories_added: &784 description: An array of repository objects, which were added to the installation. type: array @@ -136793,15 +136976,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *759 - repository_selection: &781 + repository: *763 + repository_selection: &785 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *778 + requester: *782 sender: *4 required: - action @@ -136880,10 +137063,10 @@ x-webhooks: type: string enum: - removed - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories_added: *780 + organization: *762 + repositories_added: *784 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -136910,9 +137093,9 @@ x-webhooks: - name - full_name - private - repository: *759 - repository_selection: *781 - requester: *778 + repository: *763 + repository_selection: *785 + requester: *782 sender: *4 required: - action @@ -136991,11 +137174,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *762 + repositories: *783 + repository: *763 requester: nullable: true sender: *4 @@ -137173,10 +137356,10 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 target_type: type: string @@ -137255,11 +137438,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *756 + enterprise: *760 installation: *22 - organization: *758 - repositories: *779 - repository: *759 + organization: *762 + repositories: *783 + repository: *763 requester: nullable: true sender: *4 @@ -137433,8 +137616,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *587 - required: *588 + properties: *588 + required: *589 nullable: true user: title: User @@ -137519,8 +137702,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138309,8 +138492,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138659,8 +138842,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -138740,7 +138923,7 @@ x-webhooks: type: string enum: - deleted - comment: &782 + comment: &786 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -138897,8 +139080,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *587 - required: *588 + properties: *588 + required: *589 nullable: true required: - url @@ -138913,8 +139096,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139699,8 +139882,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140051,8 +140234,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -140132,7 +140315,7 @@ x-webhooks: type: string enum: - edited - changes: &812 + changes: &816 description: The changes to the comment. type: object properties: @@ -140144,9 +140327,9 @@ x-webhooks: type: string required: - from - comment: *782 - enterprise: *756 - installation: *757 + comment: *786 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140934,8 +141117,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141284,8 +141467,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -141366,9 +141549,9 @@ x-webhooks: type: string enum: - pinned - comment: *782 - enterprise: *756 - installation: *757 + comment: *786 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142158,8 +142341,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142510,8 +142693,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -142591,9 +142774,9 @@ x-webhooks: type: string enum: - unpinned - comment: *782 - enterprise: *756 - installation: *757 + comment: *786 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143383,8 +143566,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143735,8 +143918,8 @@ x-webhooks: - state - locked - assignee - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -143825,9 +144008,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -143916,9 +144099,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -144006,9 +144189,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -144097,9 +144280,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -144179,10 +144362,10 @@ x-webhooks: type: string enum: - assigned - assignee: *778 - enterprise: *756 - installation: *757 - issue: &783 + assignee: *782 + enterprise: *760 + installation: *761 + issue: &787 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144974,11 +145157,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145095,8 +145278,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -145176,8 +145359,8 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145974,11 +146157,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146230,8 +146413,8 @@ x-webhooks: required: - state - closed_at - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -146310,8 +146493,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147099,11 +147282,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147219,8 +147402,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -147299,8 +147482,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148110,11 +148293,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148209,7 +148392,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &784 + milestone: &788 title: Milestone description: A collection of related issues and pull requests. type: object @@ -148347,8 +148530,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -148447,8 +148630,8 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149240,11 +149423,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149361,9 +149544,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *777 - organization: *758 - repository: *759 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -149443,9 +149626,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *760 + installation: *761 + issue: *787 issue_field: type: object description: The issue field whose value was set or updated on the @@ -149599,8 +149782,8 @@ x-webhooks: - id required: - from - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -149680,9 +149863,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *760 + installation: *761 + issue: *787 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -149763,8 +149946,8 @@ x-webhooks: nullable: true required: - id - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -149844,8 +150027,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150636,11 +150819,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150757,9 +150940,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *777 - organization: *758 - repository: *759 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -150839,8 +151022,8 @@ x-webhooks: type: string enum: - locked - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151655,11 +151838,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151753,8 +151936,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -151833,8 +152016,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152643,11 +152826,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152741,9 +152924,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *784 - organization: *758 - repository: *759 + milestone: *788 + organization: *762 + repository: *763 sender: *4 required: - action @@ -153606,11 +153789,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154191,8 +154374,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154976,11 +155159,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155104,8 +155287,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -155185,9 +155368,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *756 - installation: *757 - issue: &785 + enterprise: *760 + installation: *761 + issue: &789 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -155973,11 +156156,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156093,8 +156276,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -156173,8 +156356,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156987,11 +157170,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157086,8 +157269,8 @@ x-webhooks: user_view_type: type: string type: *258 - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -157956,11 +158139,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158555,11 +158738,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *756 - installation: *757 - issue: *785 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + issue: *789 + organization: *762 + repository: *763 sender: *4 required: - action @@ -158639,12 +158822,12 @@ x-webhooks: type: string enum: - typed - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *760 + installation: *761 + issue: *787 type: *258 - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -158725,7 +158908,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &815 + assignee: &819 title: User type: object nullable: true @@ -158795,11 +158978,11 @@ x-webhooks: required: - login - id - enterprise: *756 - installation: *757 - issue: *783 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + issue: *787 + organization: *762 + repository: *763 sender: *4 required: - action @@ -158878,12 +159061,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *756 - installation: *757 - issue: *783 - label: *777 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + issue: *787 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -158963,8 +159146,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159777,11 +159960,11 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *692 - issue_dependencies_summary: *693 + sub_issues_summary: *696 + issue_dependencies_summary: *697 issue_field_values: type: array - items: *571 + items: *572 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159875,8 +160058,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -159956,11 +160139,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *756 - installation: *757 - issue: *785 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + issue: *789 + organization: *762 + repository: *763 sender: *4 required: - action @@ -160039,12 +160222,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *756 - installation: *757 - issue: *783 + enterprise: *760 + installation: *761 + issue: *787 type: *258 - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -160124,11 +160307,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -160206,11 +160389,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -160320,11 +160503,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - label: *777 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + label: *781 + organization: *762 + repository: *763 sender: *4 required: - action @@ -160406,9 +160589,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: &786 + enterprise: *760 + installation: *761 + marketplace_purchase: &790 title: Marketplace Purchase type: object required: @@ -160491,8 +160674,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *758 - previous_marketplace_purchase: &787 + organization: *762 + previous_marketplace_purchase: &791 title: Marketplace Purchase type: object properties: @@ -160572,7 +160755,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *763 sender: *4 required: - action @@ -160652,10 +160835,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 + enterprise: *760 + installation: *761 + marketplace_purchase: *790 + organization: *762 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160738,7 +160921,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *763 sender: *4 required: - action @@ -160820,10 +161003,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 + enterprise: *760 + installation: *761 + marketplace_purchase: *790 + organization: *762 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160905,7 +161088,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *759 + repository: *763 sender: *4 required: - action @@ -160986,8 +161169,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 marketplace_purchase: title: Marketplace Purchase type: object @@ -161069,9 +161252,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *758 - previous_marketplace_purchase: *787 - repository: *759 + organization: *762 + previous_marketplace_purchase: *791 + repository: *763 sender: *4 required: - action @@ -161151,12 +161334,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *756 - installation: *757 - marketplace_purchase: *786 - organization: *758 - previous_marketplace_purchase: *787 - repository: *759 + enterprise: *760 + installation: *761 + marketplace_purchase: *790 + organization: *762 + previous_marketplace_purchase: *791 + repository: *763 sender: *4 required: - action @@ -161258,11 +161441,11 @@ x-webhooks: type: string required: - to - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + member: *782 + organization: *762 + repository: *763 sender: *4 required: - action @@ -161362,11 +161545,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + member: *782 + organization: *762 + repository: *763 sender: *4 required: - action @@ -161445,11 +161628,11 @@ x-webhooks: type: string enum: - removed - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + member: *782 + organization: *762 + repository: *763 sender: *4 required: - action @@ -161527,11 +161710,11 @@ x-webhooks: type: string enum: - added - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + member: *782 + organization: *762 + repository: *763 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161607,7 +161790,7 @@ x-webhooks: required: - login - id - team: &788 + team: &792 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -161830,11 +162013,11 @@ x-webhooks: type: string enum: - removed - enterprise: *756 - installation: *757 - member: *778 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + member: *782 + organization: *762 + repository: *763 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161911,7 +162094,7 @@ x-webhooks: required: - login - id - team: *788 + team: *792 required: - action - scope @@ -161993,8 +162176,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *757 - merge_group: &790 + installation: *761 + merge_group: &794 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -162013,15 +162196,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *789 + head_commit: *793 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162107,10 +162290,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *757 - merge_group: *790 - organization: *758 - repository: *759 + installation: *761 + merge_group: *794 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162183,7 +162366,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 + enterprise: *760 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -162292,17 +162475,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *757 - organization: *758 + installation: *761 + organization: *762 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: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *795 + required: *796 + x-github-breaking-changes: *797 nullable: true sender: *4 required: @@ -162383,11 +162566,11 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + milestone: *788 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162466,9 +162649,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - milestone: &794 + enterprise: *760 + installation: *761 + milestone: &798 title: Milestone description: A collection of related issues and pull requests. type: object @@ -162605,8 +162788,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162685,11 +162868,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + milestone: *788 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162799,11 +162982,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - milestone: *784 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + milestone: *788 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162883,11 +163066,11 @@ x-webhooks: type: string enum: - opened - enterprise: *756 - installation: *757 - milestone: *794 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + milestone: *798 + organization: *762 + repository: *763 sender: *4 required: - action @@ -162966,11 +163149,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *778 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + blocked_user: *782 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163049,11 +163232,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *778 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + blocked_user: *782 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163132,9 +163315,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - membership: &795 + enterprise: *760 + installation: *761 + membership: &799 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -163241,8 +163424,8 @@ x-webhooks: - role - organization_url - user - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163320,11 +163503,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + membership: *799 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163403,8 +163586,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -163520,10 +163703,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 - user: *778 + user: *782 required: - action - invitation @@ -163601,11 +163784,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + membership: *799 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163692,11 +163875,11 @@ x-webhooks: properties: from: type: string - enterprise: *756 - installation: *757 - membership: *795 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + membership: *799 + organization: *762 + repository: *763 sender: *4 required: - action @@ -163773,9 +163956,9 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 package: description: Information about the package. type: object @@ -164274,7 +164457,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &796 + items: &800 title: Ruby Gems metadata type: object properties: @@ -164369,7 +164552,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *763 sender: *4 required: - action @@ -164445,9 +164628,9 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 package: description: Information about the package. type: object @@ -164800,7 +164983,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *796 + items: *800 source_url: type: string format: uri @@ -164870,7 +165053,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *763 sender: *4 required: - action @@ -165046,12 +165229,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *756 + enterprise: *760 id: type: integer - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - id @@ -165128,7 +165311,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &797 + personal_access_token_request: &801 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -165274,10 +165457,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *756 - organization: *758 + enterprise: *760 + organization: *762 sender: *4 - installation: *757 + installation: *761 required: - action - personal_access_token_request @@ -165354,11 +165537,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *797 - enterprise: *756 - organization: *758 + personal_access_token_request: *801 + enterprise: *760 + organization: *762 sender: *4 - installation: *757 + installation: *761 required: - action - personal_access_token_request @@ -165434,11 +165617,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *797 - enterprise: *756 - organization: *758 + personal_access_token_request: *801 + enterprise: *760 + organization: *762 sender: *4 - installation: *757 + installation: *761 required: - action - personal_access_token_request @@ -165513,11 +165696,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *797 - organization: *758 - enterprise: *756 + personal_access_token_request: *801 + organization: *762 + enterprise: *760 sender: *4 - installation: *757 + installation: *761 required: - action - personal_access_token_request @@ -165622,7 +165805,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *798 + last_response: *802 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -165654,8 +165837,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 zen: description: Random string of GitHub zen. @@ -165900,10 +166083,10 @@ x-webhooks: - from required: - note - enterprise: *756 - installation: *757 - organization: *758 - project_card: &799 + enterprise: *760 + installation: *761 + organization: *762 + project_card: &803 title: Project Card type: object properties: @@ -166022,7 +166205,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *759 + repository: *763 sender: *4 required: - action @@ -166103,11 +166286,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project_card: *799 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project_card: *803 + repository: *763 sender: *4 required: - action @@ -166187,9 +166370,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 project_card: title: Project Card type: object @@ -166317,9 +166500,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *795 + required: *796 + x-github-breaking-changes: *797 nullable: true sender: *4 required: @@ -166413,11 +166596,11 @@ x-webhooks: - from required: - note - enterprise: *756 - installation: *757 - organization: *758 - project_card: *799 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project_card: *803 + repository: *763 sender: *4 required: - action @@ -166511,9 +166694,9 @@ x-webhooks: - from required: - column_id - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 project_card: allOf: - title: Project Card @@ -166703,7 +166886,7 @@ x-webhooks: type: string required: - after_id - repository: *759 + repository: *763 sender: *4 required: - action @@ -166783,10 +166966,10 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - organization: *758 - project: &801 + enterprise: *760 + installation: *761 + organization: *762 + project: &805 title: Project type: object properties: @@ -166910,7 +167093,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *759 + repository: *763 sender: *4 required: - action @@ -166990,10 +167173,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project_column: &800 + enterprise: *760 + installation: *761 + organization: *762 + project_column: &804 title: Project Column type: object properties: @@ -167032,7 +167215,7 @@ x-webhooks: - name - created_at - updated_at - repository: *759 + repository: *763 sender: *4 required: - action @@ -167111,19 +167294,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 + enterprise: *760 + installation: *761 + organization: *762 + project_column: *804 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *795 + required: *796 + x-github-breaking-changes: *797 nullable: true sender: *4 required: @@ -167213,11 +167396,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project_column: *804 + repository: *763 sender: *4 required: - action @@ -167297,11 +167480,11 @@ x-webhooks: type: string enum: - moved - enterprise: *756 - installation: *757 - organization: *758 - project_column: *800 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project_column: *804 + repository: *763 sender: *4 required: - action @@ -167381,11 +167564,11 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project: *805 + repository: *763 sender: *4 required: - action @@ -167465,19 +167648,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - project: *801 + enterprise: *760 + installation: *761 + organization: *762 + project: *805 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: *791 - required: *792 - x-github-breaking-changes: *793 + properties: *795 + required: *796 + x-github-breaking-changes: *797 nullable: true sender: *4 required: @@ -167579,11 +167762,11 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project: *805 + repository: *763 sender: *4 required: - action @@ -167662,11 +167845,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 - organization: *758 - project: *801 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + project: *805 + repository: *763 sender: *4 required: - action @@ -167747,8 +167930,8 @@ x-webhooks: type: string enum: - closed - installation: *757 - organization: *758 + installation: *761 + organization: *762 projects_v2: *292 sender: *4 required: @@ -167830,8 +168013,8 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 + installation: *761 + organization: *762 projects_v2: *292 sender: *4 required: @@ -167913,8 +168096,8 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 + installation: *761 + organization: *762 projects_v2: *292 sender: *4 required: @@ -168032,8 +168215,8 @@ x-webhooks: type: string to: type: string - installation: *757 - organization: *758 + installation: *761 + organization: *762 projects_v2: *292 sender: *4 required: @@ -168117,7 +168300,7 @@ x-webhooks: type: string enum: - archived - changes: &805 + changes: &809 type: object properties: archived_at: @@ -168131,9 +168314,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *757 - organization: *758 - projects_v2_item: &802 + installation: *761 + organization: *762 + projects_v2_item: &806 title: Projects v2 Item description: An item belonging to a project type: object @@ -168268,9 +168451,9 @@ x-webhooks: nullable: true to: type: string - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168352,9 +168535,9 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168435,9 +168618,9 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168543,7 +168726,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &803 + - &807 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -168565,7 +168748,7 @@ x-webhooks: required: - id - name - - &804 + - &808 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -168599,8 +168782,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *803 - - *804 + - *807 + - *808 required: - field_value - type: object @@ -168616,9 +168799,9 @@ x-webhooks: nullable: true required: - body - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168713,9 +168896,9 @@ x-webhooks: to: type: string nullable: true - installation: *757 - organization: *758 - projects_v2_item: *802 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168798,10 +168981,10 @@ x-webhooks: type: string enum: - restored - changes: *805 - installation: *757 - organization: *758 - projects_v2_item: *802 + changes: *809 + installation: *761 + organization: *762 + projects_v2_item: *806 sender: *4 required: - action @@ -168883,8 +169066,8 @@ x-webhooks: type: string enum: - reopened - installation: *757 - organization: *758 + installation: *761 + organization: *762 projects_v2: *292 sender: *4 required: @@ -168966,14 +169149,14 @@ x-webhooks: type: string enum: - created - installation: *757 - organization: *758 - projects_v2_status_update: &808 + installation: *761 + organization: *762 + projects_v2_status_update: &812 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *806 - required: *807 + properties: *810 + required: *811 sender: *4 required: - action @@ -169054,9 +169237,9 @@ x-webhooks: type: string enum: - deleted - installation: *757 - organization: *758 - projects_v2_status_update: *808 + installation: *761 + organization: *762 + projects_v2_status_update: *812 sender: *4 required: - action @@ -169192,9 +169375,9 @@ x-webhooks: type: string format: date nullable: true - installation: *757 - organization: *758 - projects_v2_status_update: *808 + installation: *761 + organization: *762 + projects_v2_status_update: *812 sender: *4 required: - action @@ -169265,10 +169448,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - repository @@ -169345,13 +169528,13 @@ x-webhooks: type: string enum: - assigned - assignee: *778 - enterprise: *756 - installation: *757 - number: &809 + assignee: *782 + enterprise: *760 + installation: *761 + number: &813 description: The pull request number. type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -171656,7 +171839,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -171753,11 +171936,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -174057,7 +174240,7 @@ x-webhooks: - draft reason: type: string - repository: *759 + repository: *763 sender: *4 required: - action @@ -174154,11 +174337,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -176458,7 +176641,7 @@ x-webhooks: - draft reason: type: string - repository: *759 + repository: *763 sender: *4 required: - action @@ -176555,13 +176738,13 @@ x-webhooks: type: string enum: - closed - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: &810 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: &814 allOf: - - *610 + - *614 - type: object properties: allow_auto_merge: @@ -176623,7 +176806,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *759 + repository: *763 sender: *4 required: - action @@ -176704,12 +176887,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: *814 + repository: *763 sender: *4 required: - action @@ -176789,11 +176972,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *756 - milestone: *594 - number: *809 - organization: *758 - pull_request: &811 + enterprise: *760 + milestone: *598 + number: *813 + organization: *762 + pull_request: &815 title: Pull Request type: object properties: @@ -179120,7 +179303,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *759 + repository: *763 sender: *4 required: - action @@ -179199,11 +179382,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -181507,7 +181690,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *759 + repository: *763 sender: *4 required: - action @@ -181639,12 +181822,12 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: *814 + repository: *763 sender: *4 required: - action @@ -181724,11 +181907,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -184017,7 +184200,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -184105,11 +184288,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *756 - installation: *757 - label: *777 - number: *809 - organization: *758 + enterprise: *760 + installation: *761 + label: *781 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -186413,7 +186596,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -186509,10 +186692,10 @@ x-webhooks: type: string enum: - locked - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -188814,7 +188997,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -188909,12 +189092,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *756 - milestone: *594 - number: *809 - organization: *758 - pull_request: *811 - repository: *759 + enterprise: *760 + milestone: *598 + number: *813 + organization: *762 + pull_request: *815 + repository: *763 sender: *4 required: - action @@ -188993,12 +189176,12 @@ x-webhooks: type: string enum: - opened - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: *814 + repository: *763 sender: *4 required: - action @@ -189079,12 +189262,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: *814 + repository: *763 sender: *4 required: - action @@ -189164,12 +189347,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *756 - installation: *757 - number: *809 - organization: *758 - pull_request: *810 - repository: *759 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 + pull_request: *814 + repository: *763 sender: *4 required: - action @@ -189535,9 +189718,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: type: object properties: @@ -191729,7 +191912,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *763 sender: *4 required: - action @@ -191824,7 +192007,7 @@ x-webhooks: type: string enum: - deleted - comment: &813 + comment: &817 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -192109,9 +192292,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: type: object properties: @@ -194291,7 +194474,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *763 sender: *4 required: - action @@ -194386,11 +194569,11 @@ x-webhooks: type: string enum: - edited - changes: *812 - comment: *813 - enterprise: *756 - installation: *757 - organization: *758 + changes: *816 + comment: *817 + enterprise: *760 + installation: *761 + organization: *762 pull_request: type: object properties: @@ -196573,7 +196756,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *759 + repository: *763 sender: *4 required: - action @@ -196669,9 +196852,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: title: Simple Pull Request type: object @@ -198866,7 +199049,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *763 review: description: The review that was affected. type: object @@ -199128,9 +199311,9 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: title: Simple Pull Request type: object @@ -201184,8 +201367,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 - review: &814 + repository: *763 + review: &818 description: The review that was affected. type: object properties: @@ -201426,12 +201609,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: description: The pull request number. type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -203736,7 +203919,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 requested_reviewer: title: User type: object @@ -203820,12 +204003,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: description: The pull request number. type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -206137,7 +206320,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 requested_team: title: Team description: Groups of organization members that gives permissions @@ -206352,12 +206535,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: description: The pull request number. type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -208664,7 +208847,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 requested_reviewer: title: User type: object @@ -208749,12 +208932,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *756 - installation: *757 + enterprise: *760 + installation: *761 number: description: The pull request number. type: integer - organization: *758 + organization: *762 pull_request: title: Pull Request type: object @@ -211052,7 +211235,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211256,9 +211439,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: title: Simple Pull Request type: object @@ -213455,8 +213638,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 - review: *814 + repository: *763 + review: *818 sender: *4 required: - action @@ -213551,9 +213734,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: title: Simple Pull Request type: object @@ -215645,7 +215828,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *763 sender: *4 thread: type: object @@ -216040,9 +216223,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 pull_request: title: Simple Pull Request type: object @@ -218120,7 +218303,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *759 + repository: *763 sender: *4 thread: type: object @@ -218518,10 +218701,10 @@ x-webhooks: type: string before: type: string - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -220814,7 +220997,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -220911,11 +221094,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *815 - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + assignee: *819 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -223220,7 +223403,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -223314,11 +223497,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *756 - installation: *757 - label: *777 - number: *809 - organization: *758 + enterprise: *760 + installation: *761 + label: *781 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -225613,7 +225796,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -225709,10 +225892,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *756 - installation: *757 - number: *809 - organization: *758 + enterprise: *760 + installation: *761 + number: *813 + organization: *762 pull_request: title: Pull Request type: object @@ -227999,7 +228182,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *759 + repository: *763 sender: *4 required: - action @@ -228214,7 +228397,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *756 + enterprise: *760 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -228306,8 +228489,8 @@ x-webhooks: - url - author - committer - installation: *757 - organization: *758 + installation: *761 + organization: *762 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -228893,9 +229076,9 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 registry_package: type: object properties: @@ -229341,7 +229524,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *796 + items: *800 summary: type: string tag_name: @@ -229395,7 +229578,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *763 sender: *4 required: - action @@ -229473,9 +229656,9 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 registry_package: type: object properties: @@ -229783,7 +229966,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *796 + items: *800 summary: type: string tag_name: @@ -229832,7 +230015,7 @@ x-webhooks: - owner - package_version - registry - repository: *759 + repository: *763 sender: *4 required: - action @@ -229909,10 +230092,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - release: &816 + enterprise: *760 + installation: *761 + organization: *762 + release: &820 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -230230,7 +230413,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *759 + repository: *763 sender: *4 required: - action @@ -230307,11 +230490,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + release: *820 + repository: *763 sender: *4 required: - action @@ -230428,11 +230611,11 @@ x-webhooks: type: boolean required: - to - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + release: *820 + repository: *763 sender: *4 required: - action @@ -230510,9 +230693,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -230834,7 +231017,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *759 + repository: *763 sender: *4 required: - action @@ -230910,10 +231093,10 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - release: &817 + enterprise: *760 + installation: *761 + organization: *762 + release: &821 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -231232,7 +231415,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *759 + repository: *763 sender: *4 required: - action @@ -231308,11 +231491,11 @@ x-webhooks: type: string enum: - released - enterprise: *756 - installation: *757 - organization: *758 - release: *816 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + release: *820 + repository: *763 sender: *4 required: - action @@ -231388,11 +231571,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *756 - installation: *757 - organization: *758 - release: *817 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + release: *821 + repository: *763 sender: *4 required: - action @@ -231468,11 +231651,11 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_advisory: *679 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + repository_advisory: *683 sender: *4 required: - action @@ -231548,11 +231731,11 @@ x-webhooks: type: string enum: - reported - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - repository_advisory: *679 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + repository_advisory: *683 sender: *4 required: - action @@ -231628,10 +231811,10 @@ x-webhooks: type: string enum: - archived - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -231708,10 +231891,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -231789,10 +231972,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -231876,10 +232059,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -231991,10 +232174,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -232066,10 +232249,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 status: type: string @@ -232150,10 +232333,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -232230,10 +232413,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -232327,10 +232510,10 @@ x-webhooks: - name required: - repository - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -232410,10 +232593,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 repository_ruleset: *341 sender: *4 required: @@ -232492,10 +232675,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 repository_ruleset: *341 sender: *4 required: @@ -232574,10 +232757,10 @@ x-webhooks: type: string enum: - edited - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 repository_ruleset: *341 changes: type: object @@ -232639,16 +232822,16 @@ x-webhooks: properties: added: type: array - items: *630 + items: *634 deleted: type: array - items: *630 + items: *634 updated: type: array items: type: object properties: - rule: *630 + rule: *634 changes: type: object properties: @@ -232882,10 +233065,10 @@ x-webhooks: - from required: - owner - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -232963,10 +233146,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233044,7 +233227,7 @@ x-webhooks: type: string enum: - create - alert: &818 + alert: &822 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -233166,10 +233349,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233375,10 +233558,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233456,11 +233639,11 @@ x-webhooks: type: string enum: - reopen - alert: *818 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *822 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233659,10 +233842,10 @@ x-webhooks: enum: - fixed - open - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233740,7 +233923,7 @@ x-webhooks: type: string enum: - assigned - alert: &819 + alert: &823 type: object properties: number: *188 @@ -233883,10 +234066,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -233964,11 +234147,11 @@ x-webhooks: type: string enum: - created - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *823 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234049,11 +234232,11 @@ x-webhooks: type: string enum: - created - alert: *819 - installation: *757 - location: *820 - organization: *758 - repository: *759 + alert: *823 + installation: *761 + location: *824 + organization: *762 + repository: *763 sender: *4 required: - location @@ -234291,11 +234474,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *823 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234373,11 +234556,11 @@ x-webhooks: type: string enum: - reopened - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *823 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234455,11 +234638,11 @@ x-webhooks: type: string enum: - resolved - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *823 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234537,12 +234720,12 @@ x-webhooks: type: string enum: - unassigned - alert: *819 + alert: *823 assignee: *4 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234620,11 +234803,11 @@ x-webhooks: type: string enum: - validated - alert: *819 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + alert: *823 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -234750,10 +234933,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *759 - enterprise: *756 - installation: *757 - organization: *758 + repository: *763 + enterprise: *760 + installation: *761 + organization: *762 sender: *4 required: - action @@ -234831,11 +235014,11 @@ x-webhooks: type: string enum: - published - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - security_advisory: &821 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + security_advisory: &825 description: The details of the security advisory, including summary, description, and severity. type: object @@ -235036,11 +235219,11 @@ x-webhooks: type: string enum: - updated - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 - security_advisory: *821 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 + security_advisory: *825 sender: *4 required: - action @@ -235113,10 +235296,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -235309,9 +235492,9 @@ x-webhooks: type: object properties: security_and_analysis: *314 - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: *359 sender: *4 required: @@ -235390,12 +235573,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: &822 + sponsorship: &826 type: object properties: created_at: @@ -235696,12 +235879,12 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: *822 + sponsorship: *826 required: - action - sponsorship @@ -235789,12 +235972,12 @@ x-webhooks: type: string required: - from - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: *822 + sponsorship: *826 required: - action - changes @@ -235871,17 +236054,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &823 + effective_date: &827 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: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: *822 + sponsorship: *826 required: - action - sponsorship @@ -235955,7 +236138,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &824 + changes: &828 type: object properties: tier: @@ -235999,13 +236182,13 @@ x-webhooks: - from required: - tier - effective_date: *823 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + effective_date: *827 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: *822 + sponsorship: *826 required: - action - changes @@ -236082,13 +236265,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *824 - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + changes: *828 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - sponsorship: *822 + sponsorship: *826 required: - action - changes @@ -236162,10 +236345,10 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -236248,10 +236431,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -236671,15 +236854,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *756 + enterprise: *760 id: description: The unique identifier of the status. type: integer - installation: *757 + installation: *761 name: type: string - organization: *758 - repository: *759 + organization: *762 + repository: *763 sender: *4 sha: description: The Commit SHA. @@ -236794,9 +236977,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -236885,9 +237068,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -236976,9 +237159,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -237067,9 +237250,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *757 - organization: *758 - repository: *759 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -237145,12 +237328,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - team: &825 + team: &829 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -237373,9 +237556,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: title: Repository description: A git repository @@ -237833,7 +238016,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *829 required: - action - team @@ -237909,9 +238092,9 @@ x-webhooks: type: string enum: - created - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: title: Repository description: A git repository @@ -238369,7 +238552,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *829 required: - action - team @@ -238446,9 +238629,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: title: Repository description: A git repository @@ -238906,7 +239089,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *829 required: - action - team @@ -239050,9 +239233,9 @@ x-webhooks: - from required: - permissions - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: title: Repository description: A git repository @@ -239510,7 +239693,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *829 required: - action - changes @@ -239588,9 +239771,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *756 - installation: *757 - organization: *758 + enterprise: *760 + installation: *761 + organization: *762 repository: title: Repository description: A git repository @@ -240048,7 +240231,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *825 + team: *829 required: - action - team @@ -240124,10 +240307,10 @@ x-webhooks: type: string enum: - started - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 required: - action @@ -240200,16 +240383,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *756 + enterprise: *760 inputs: type: object nullable: true additionalProperties: true - installation: *757 - organization: *758 + installation: *761 + organization: *762 ref: type: string - repository: *759 + repository: *763 sender: *4 workflow: type: string @@ -240291,10 +240474,10 @@ x-webhooks: type: string enum: - completed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 workflow_job: allOf: @@ -240610,10 +240793,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 workflow_job: allOf: @@ -240952,10 +241135,10 @@ x-webhooks: type: string enum: - queued - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 workflow_job: type: object @@ -241169,10 +241352,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 workflow_job: type: object @@ -241388,12 +241571,12 @@ x-webhooks: type: string enum: - completed - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - workflow: *773 + workflow: *777 workflow_run: title: Workflow Run type: object @@ -242392,12 +242575,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - workflow: *773 + workflow: *777 workflow_run: title: Workflow Run type: object @@ -243381,12 +243564,12 @@ x-webhooks: type: string enum: - requested - enterprise: *756 - installation: *757 - organization: *758 - repository: *759 + enterprise: *760 + installation: *761 + organization: *762 + repository: *763 sender: *4 - workflow: *773 + workflow: *777 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 4b18b2a806..608bb05441 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -83795,6 +83795,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -87156,6 +87161,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -105856,6 +105866,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -113024,6 +113039,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -116385,6 +116405,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -188194,6 +188219,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -191555,6 +191585,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -207793,6 +207828,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -236296,6 +236336,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -245822,6 +245867,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -365090,7 +365140,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -422046,6 +422096,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -425407,6 +425462,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -450421,6 +450481,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -453891,6 +453956,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -462355,6 +462425,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -463300,6 +463375,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -466975,6 +467120,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -467920,6 +468070,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -471470,6 +471690,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -472277,551 +472502,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", - "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": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -472946,409 +472698,52 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "nullable": true - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" - }, - "license": { - "title": "License Simple", - "description": "License Simple", - "type": "object", - "properties": { - "key": { - "type": "string", - "example": "mit" - }, - "name": { - "type": "string", - "example": "MIT License" - }, - "url": { - "type": "string", - "nullable": true, - "format": "uri", - "example": "https://api.github.com/licenses/mit" - }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" - }, - "node_id": { - "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" - }, - "html_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "key", - "name", - "url", - "spdx_id", - "node_id" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "forks": { - "type": "integer" - }, - "permissions": { - "type": "object", - "properties": { - "admin": { - "type": "boolean" - }, - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - } - }, - "required": [ - "admin", - "pull", - "push" - ] + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "owner": { + "assignee": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -473470,561 +472865,190 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", + ], "nullable": true }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { + "assignees": { "type": "array", "items": { - "type": "string" + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] } }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_downloads": { - "description": "Whether downloads are enabled.", - "default": true, - "type": "boolean", - "example": true, - "deprecated": true - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" - ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", - "nullable": true - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { - "type": "string" - }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "use_squash_pr_title_as_default": { - "type": "boolean", - "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", - "default": false, - "deprecated": true - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" - }, - "master_branch": { - "type": "string" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" - }, - "code_search_index_status": { + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", "type": "object", - "description": "The status of the code search index for this repository", "properties": { - "lexical_search_ok": { - "type": "boolean" + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" }, - "lexical_commit_sha": { + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" + }, + "labels_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" + }, + "id": { + "type": "integer", + "example": 1002604 + }, + "node_id": { + "type": "string", + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + }, + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", + "type": "string", + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", "type": "string" - } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_downloads", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -474146,294 +473170,123 @@ "subscriptions_url", "type", "url" - ] + ], + "nullable": true }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", + }, + "required": [ + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", + "url", + "created_at", + "updated_at" + ], "nullable": true }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" + "locked": { + "type": "boolean" }, - "created_at": { + "active_lock_reason": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "comments": { + "type": "integer" }, - "permissions": { - "description": "The set of permissions for the GitHub app", + "pull_request": { "type": "object", "properties": { - "issues": { - "type": "string" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": true }, - "checks": { - "type": "string" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "metadata": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "contents": { - "type": "string" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "deployments": { - "type": "string" + "url": { + "type": "string", + "format": "uri", + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } + "required": [ + "diff_url", + "html_url", + "patch_url", + "url" + ] }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { + "closed_at": { "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" + "format": "date-time", + "nullable": true }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", + "created_at": { "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" + "format": "date-time" }, - "html_url": { + "updated_at": { "type": "string", - "format": "uri" + "format": "date-time" }, - "user": { + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -474558,34 +473411,818 @@ ], "nullable": true }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_html": { + "type": "string" }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_text": { + "type": "string" }, - "issue_url": { + "timeline_url": { "type": "string", "format": "uri" }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true + }, + "fork": { + "type": "boolean" + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" + }, + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" + }, + "assignees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" + }, + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" + }, + "branches_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" + }, + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/events" + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/forks" + }, + "git_commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" + }, + "git_refs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" + }, + "git_tags_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" + }, + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/languages" + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/merges" + }, + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" + }, + "statuses_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { + "type": "boolean" + }, + "has_downloads": { + "description": "Whether downloads are enabled.", + "default": true, + "type": "boolean", + "example": true, + "deprecated": true + }, + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", + "type": "string", + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" + }, + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "use_squash_pr_title_as_default": { + "type": "boolean", + "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", + "default": false, + "deprecated": true + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "master_branch": { + "type": "string" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_downloads", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" ] }, "performed_via_github_app": { @@ -474736,532 +474373,1133 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true - } - }, - "required": [ - "id", - "node_id", - "html_url", - "issue_url", - "user", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 - } - ], - "nullable": true - }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", "type": "object", "properties": { - "id": { - "description": "Unique identifier for the option.", + "issue_field_id": { + "description": "Unique identifier for the issue field.", "type": "integer", "format": "int64", "example": 1 }, - "name": { - "description": "The name of the option", + "issue_field_name": { + "description": "The human-readable name of the issue field.", "type": "string", - "example": "High" + "example": "Priority" }, - "color": { - "description": "The color of the option", + "node_id": { "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ], - "nullable": true - }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "required": [ - "id", - "name", - "color" - ] + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } }, - "nullable": true + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } + } + }, + "required": [ + "assignee", + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", + "id", + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] + }, + { + "type": "object", + "properties": {} } - }, - "required": [ - "assignee", - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" ] }, "examples": { @@ -478570,6 +478808,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -481805,6 +482048,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -486986,6 +487234,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -490308,6 +490561,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -493708,6 +493966,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -497128,6 +497391,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -500503,8 +500771,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -500963,20 +501717,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -500989,8 +501747,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -501449,24 +502207,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -501479,8 +502680,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -502412,8 +503613,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -502872,7 +504073,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -502996,217 +504248,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -503329,10 +505233,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -503345,8 +505603,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -503805,32 +506063,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -503843,8 +506109,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -504303,14 +506569,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -504323,8 +506615,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -504783,40 +507075,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -504829,8 +507125,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -505289,40 +507585,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -505335,8 +507635,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -505795,546 +508095,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -506512,6 +508346,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -506619,12 +508458,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -506636,18 +508477,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -506908,6 +508752,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -507015,12 +508864,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -507032,18 +508883,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -507414,6 +509268,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -507521,12 +509380,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -507538,18 +509399,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -512520,6 +514384,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -516815,6 +518684,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -520139,6 +522013,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -523439,6 +525318,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -526838,6 +528722,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -538462,6 +540351,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -540765,132 +542659,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -540899,13 +544292,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -541364,12 +544756,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -649374,6 +652834,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -691446,6 +694911,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -719440,6 +722910,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -736304,6 +739779,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -739665,6 +743145,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -746704,6 +750189,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -750065,6 +753555,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -757114,6 +760609,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -760475,6 +763975,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -777625,6 +781130,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -791804,6 +795314,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -795165,6 +798680,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -802200,6 +805720,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -805561,6 +809086,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1041529,6 +1045059,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1044521,6 +1048056,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1049814,6 +1053354,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1052806,6 +1056351,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1058099,6 +1061649,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1061835,6 +1065390,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1066384,6 +1069944,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1070120,6 +1073685,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1073785,6 +1077355,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1077524,6 +1081099,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1081455,6 +1085035,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1085204,6 +1088789,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1089126,6 +1092716,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1092902,6 +1096497,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1096842,6 +1100442,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1100684,6 +1104289,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1104483,6 +1108093,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1108208,6 +1111823,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1111308,6 +1114928,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1114109,6 +1117734,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1118539,6 +1122169,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1122291,6 +1125926,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1125910,6 +1129550,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1128727,6 +1132372,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1132461,6 +1136111,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1136353,6 +1140008,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1140087,6 +1143747,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1143884,6 +1147549,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1147588,6 +1151258,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1151321,6 +1154996,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1514188,6 +1517868,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1517924,6 +1521609,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1522474,6 +1526164,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1526210,6 +1529905,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1530760,6 +1534460,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1534496,6 +1538201,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1539046,6 +1542756,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1542782,6 +1546497,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 7aa605a55d..9e0a5eae7e 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1038,7 +1038,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &791 + - &795 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4261,7 +4261,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &800 + schema: &804 title: Scim Error description: Scim Error type: object @@ -11645,7 +11645,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &801 + '401': &805 description: Authorization failure '404': *6 x-github: @@ -24642,7 +24642,7 @@ paths: - *169 rules: type: array - items: &756 + items: &760 title: Repository Rule type: object description: A repository rule. @@ -24651,7 +24651,7 @@ paths: - *175 - *176 - *177 - - &754 + - &758 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25258,14 +25258,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &769 + state: &773 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &770 + resolution: &774 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -25382,8 +25382,8 @@ paths: pull request. ' - oneOf: &771 - - &773 + oneOf: &775 + - &777 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -25441,7 +25441,7 @@ paths: - blob_url - commit_sha - commit_url - - &774 + - &778 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -25496,7 +25496,7 @@ paths: - page_url - commit_sha - commit_url - - &775 + - &779 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -25516,7 +25516,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &776 + - &780 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -25536,7 +25536,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &777 + - &781 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -25556,7 +25556,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &778 + - &782 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -25570,7 +25570,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &779 + - &783 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -25584,7 +25584,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &780 + - &784 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -25598,7 +25598,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &781 + - &785 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -25618,7 +25618,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &782 + - &786 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -25638,7 +25638,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &783 + - &787 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -25658,7 +25658,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &784 + - &788 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -25678,7 +25678,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &785 + - &789 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -29556,7 +29556,7 @@ paths: properties: action: type: string - discussion: &909 + discussion: &913 title: Discussion description: A Discussion in a repository. type: object @@ -30301,7 +30301,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &828 + sub_issues_summary: &832 title: Sub-issues Summary type: object properties: @@ -30388,7 +30388,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &711 + properties: &712 pinned_at: type: string format: date-time @@ -30400,7 +30400,7 @@ paths: properties: *20 required: *21 nullable: true - required: &712 + required: &713 - pinned_at - pinned_by nullable: true @@ -30414,7 +30414,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &829 + issue_dependencies_summary: &833 title: Issue Dependencies Summary type: object properties: @@ -30433,7 +30433,7 @@ paths: - total_blocking issue_field_values: type: array - items: &695 + items: &696 title: Issue Field Value description: A value assigned to an issue field type: object @@ -30444,6 +30444,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -31222,7 +31227,7 @@ paths: type: string release: allOf: - - &747 + - &751 title: Release description: A release. type: object @@ -31293,7 +31298,7 @@ paths: author: *4 assets: type: array - items: &748 + items: &752 title: Release Asset description: Data related to a release. type: object @@ -31872,7 +31877,7 @@ paths: url: type: string format: uri - user: &835 + user: &839 title: Public User description: Public User type: object @@ -35276,7 +35281,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &721 + - &725 name: all description: If `true`, show notifications marked as read. in: query @@ -35284,7 +35289,7 @@ paths: schema: type: boolean default: false - - &722 + - &726 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -35294,7 +35299,7 @@ paths: type: boolean default: false - *235 - - &723 + - &727 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -35832,7 +35837,7 @@ paths: - url - subscription_url examples: - default: &724 + default: &728 value: - id: '1' repository: @@ -36684,7 +36689,7 @@ paths: type: array items: *160 examples: - default: &730 + default: &734 value: - property_name: environment value: production @@ -36734,7 +36739,7 @@ paths: required: - properties examples: - default: &731 + default: &735 value: properties: - property_name: environment @@ -43370,12 +43375,12 @@ paths: required: - subject_digests examples: - default: &867 + default: &871 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &868 + withPredicateType: &872 value: subject_digests: - sha256:abc123 @@ -43433,7 +43438,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &869 + default: &873 value: attestations_subject_digests: - sha256:abc: @@ -56247,7 +56252,7 @@ paths: parameters: - *89 - *411 - - &850 + - &854 name: repo_name description: repo_name parameter in: path @@ -57575,7 +57580,7 @@ paths: - nuget - container - *89 - - &851 + - &855 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -57616,7 +57621,7 @@ paths: default: *417 '403': *29 '401': *25 - '400': &853 + '400': &857 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -59713,7 +59718,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &945 + properties: &949 id: type: number description: The unique identifier of the status update. @@ -59761,7 +59766,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &946 + required: &950 - id - node_id - created_at @@ -60201,7 +60206,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: &733 + auto_merge: &737 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60579,7 +60584,7 @@ paths: - updated_at - project_url examples: - default: &873 + default: &877 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -60756,7 +60761,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &874 + items: &878 type: object properties: name: @@ -60793,7 +60798,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &875 + iteration_configuration: &879 type: object description: The configuration for iteration fields. properties: @@ -60843,7 +60848,7 @@ paths: value: name: Due date data_type: date - single_select_field: &876 + single_select_field: &880 summary: Create a single select field value: name: Priority @@ -60870,7 +60875,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &877 + iteration_field: &881 summary: Create an iteration field value: name: Sprint @@ -60896,7 +60901,7 @@ paths: application/json: schema: *438 examples: - text_field: &878 + text_field: &882 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -60905,7 +60910,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: &879 + number_field: &883 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -60914,7 +60919,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: &880 + date_field: &884 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -60923,7 +60928,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: &881 + single_select_field: &885 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -60957,7 +60962,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &882 + iteration_field: &886 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -61003,7 +61008,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *434 - - &883 + - &887 name: field_id description: The unique identifier of the field. in: path @@ -61018,7 +61023,7 @@ paths: application/json: schema: *438 examples: - default: &884 + default: &888 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62215,7 +62220,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &864 + schema: &868 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62392,7 +62397,7 @@ paths: parameters: - *434 - *89 - - &885 + - &889 name: view_number description: The number that identifies the project view. in: path @@ -64220,7 +64225,7 @@ paths: - *89 - *17 - *19 - - &755 + - &759 name: targets description: | A comma-separated list of rule targets to filter by. @@ -64436,7 +64441,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &757 + - &761 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -64448,14 +64453,14 @@ paths: x-multi-segment: true - *322 - *107 - - &758 + - &762 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &759 + - &763 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -64468,7 +64473,7 @@ paths: - bypass - all default: all - - &760 + - &764 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -64491,7 +64496,7 @@ paths: description: Response content: application/json: - schema: &761 + schema: &765 title: Rule Suites description: Response type: array @@ -64546,7 +64551,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &762 + default: &766 value: - id: 21 actor_id: 12 @@ -64590,7 +64595,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &763 + - &767 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -64606,7 +64611,7 @@ paths: description: Response content: application/json: - schema: &764 + schema: &768 title: Rule Suite description: Response type: object @@ -64705,7 +64710,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &765 + default: &769 value: id: 21 actor_id: 12 @@ -65041,7 +65046,7 @@ paths: - *112 - *19 - *17 - - &767 + - &771 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -65051,7 +65056,7 @@ paths: required: false schema: type: string - - &768 + - &772 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -65265,7 +65270,7 @@ paths: application/json: schema: type: array - items: &789 + items: &793 description: A repository security advisory. type: object properties: @@ -65556,7 +65561,7 @@ paths: - private_fork additionalProperties: false examples: - default: &790 + default: &794 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -67582,7 +67587,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &831 + response-if-user-is-a-team-maintainer: &835 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -67647,7 +67652,7 @@ paths: application/json: schema: *490 examples: - response-if-users-membership-with-team-is-now-pending: &832 + response-if-users-membership-with-team-is-now-pending: &836 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -67761,7 +67766,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &833 + schema: &837 title: Team Repository description: A team's access to a repository. type: object @@ -68529,7 +68534,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: &834 + response-if-child-teams-exist: &838 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -74205,7 +74210,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &903 + properties: &907 url: type: string format: uri @@ -74290,7 +74295,7 @@ paths: nullable: true properties: *223 required: *224 - required: &904 + required: &908 - id - node_id - sha @@ -80714,7 +80719,7 @@ paths: check. type: array items: *233 - deployment: &896 + deployment: &900 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81626,7 +81631,7 @@ paths: type: string format: date-time nullable: true - head_commit: &929 + head_commit: &933 title: Simple Commit description: A commit. type: object @@ -83166,7 +83171,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -85897,14 +85902,14 @@ paths: type: integer machines: type: array - items: &840 + items: &844 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *595 required: *596 examples: - default: &841 + default: &845 value: total_count: 2 machines: @@ -87542,7 +87547,7 @@ paths: type: array items: *607 examples: - default: &740 + default: &744 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -87833,7 +87838,7 @@ paths: type: array items: *611 examples: - default: &732 + default: &736 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88391,7 +88396,7 @@ paths: application/json: schema: *607 examples: - default: &717 + default: &721 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -89050,7 +89055,7 @@ paths: application/json: schema: type: array - items: &794 + items: &798 title: Status description: The status of a commit. type: object @@ -90019,7 +90024,7 @@ paths: - size - type - url - - &745 + - &749 title: Content File description: Content File type: object @@ -90633,7 +90638,7 @@ paths: items: type: object properties: - placeholder_id: &786 + placeholder_id: &790 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -97333,7 +97338,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &937 + last_response: &941 title: Hook Response type: object properties: @@ -98385,7 +98390,7 @@ paths: parameters: - *491 - *492 - - &862 + - &866 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -98970,7 +98975,7 @@ paths: type: array items: *681 examples: - default: &855 + default: &859 value: - id: 1 repository: @@ -99416,7 +99421,7 @@ paths: type: array items: *228 examples: - default: &694 + default: &695 value: - id: 1 node_id: MDU6SXNzdWUx @@ -99704,7 +99709,7 @@ paths: application/json: schema: *228 examples: - default: &691 + default: &692 value: id: 1 node_id: MDU6SXNzdWUx @@ -99913,7 +99918,7 @@ paths: type: array items: *684 examples: - default: &693 + default: &694 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -100368,7 +100373,7 @@ paths: application/json: schema: type: array - items: &690 + items: &691 title: Issue Event description: Issue Event type: object @@ -100521,6 +100526,35 @@ paths: required: - from - to + issue_type: &690 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *690 author_association: *225 lock_reason: type: string @@ -100732,7 +100766,7 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: default: value: @@ -100961,7 +100995,7 @@ paths: parameters: - *491 - *492 - - &692 + - &693 name: issue_number description: The number that identifies the issue. in: path @@ -100977,7 +101011,7 @@ paths: examples: default: summary: Issue - value: *691 + value: *692 pinned_comment: summary: Issue with pinned comment value: @@ -101205,7 +101239,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -101333,9 +101367,13 @@ paths: description: Response content: application/json: - schema: *228 + schema: + allOf: + - *228 + - type: object + properties: {} examples: - default: *691 + default: *692 '422': *15 '503': *200 '403': *29 @@ -101361,7 +101399,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -101389,7 +101427,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101407,7 +101445,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: content: application/json: @@ -101434,7 +101472,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101458,7 +101496,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: assignee in: path required: true @@ -101500,7 +101538,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *235 - *17 - *19 @@ -101513,7 +101551,7 @@ paths: type: array items: *684 examples: - default: *693 + default: *694 headers: Link: *47 '404': *6 @@ -101548,7 +101586,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -101609,7 +101647,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101621,7 +101659,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '301': *497 @@ -101656,7 +101694,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -101680,7 +101718,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -101721,7 +101759,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -101735,7 +101773,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '301': *497 '400': *14 '401': *25 @@ -101769,7 +101807,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101781,7 +101819,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '301': *497 @@ -101805,7 +101843,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101819,7 +101857,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &698 + - &699 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -101873,7 +101911,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &699 + - &700 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -102009,7 +102047,7 @@ paths: - performed_via_github_app - assignee - assigner - - &700 + - &701 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -102060,7 +102098,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &701 + - &702 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -102111,7 +102149,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &702 + - &703 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -102165,7 +102203,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &703 + - &704 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -102212,7 +102250,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &705 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -102259,7 +102297,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &705 + - &706 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -102319,7 +102357,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &707 title: Locked Issue Event description: Locked Issue Event type: object @@ -102367,7 +102405,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -102433,7 +102471,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &709 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -102499,7 +102537,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -102565,7 +102603,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -102621,6 +102659,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &714 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *690 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &715 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + prev_issue_type: *690 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &716 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *690 + prev_issue_type: *690 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -102675,7 +102850,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -102685,15 +102860,17 @@ paths: application/json: schema: type: array - items: *695 + items: *696 examples: - default: &696 + default: &697 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -102702,14 +102879,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -102755,7 +102935,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -102825,9 +103005,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *695 + items: *696 examples: - default: *696 + default: *697 '400': *14 '403': *29 '404': *6 @@ -102865,7 +103045,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -102930,9 +103110,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *695 + items: *696 examples: - default: *696 + default: *697 '400': *14 '403': *29 '404': *6 @@ -102965,7 +103145,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *399 responses: '204': @@ -102993,7 +103173,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -103005,7 +103185,7 @@ paths: type: array items: *227 examples: - default: &697 + default: &698 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -103043,7 +103223,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -103088,7 +103268,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 '301': *497 '404': *6 '410': *683 @@ -103110,7 +103290,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -103172,7 +103352,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 '301': *497 '404': *6 '410': *683 @@ -103194,7 +103374,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '204': description: Response @@ -103221,7 +103401,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: name in: path required: true @@ -103269,7 +103449,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -103317,7 +103497,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '204': description: Response @@ -103349,7 +103529,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '200': description: Response @@ -103357,7 +103537,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '301': *497 '404': *6 '410': *683 @@ -103379,7 +103559,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -103431,7 +103611,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103496,7 +103676,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *687 responses: '204': @@ -103528,7 +103708,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103552,7 +103732,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -103587,7 +103767,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -103599,7 +103779,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '404': *6 @@ -103633,7 +103813,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103662,7 +103842,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -103691,7 +103871,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103724,7 +103904,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '403': *29 '404': *6 '422': *7 @@ -103748,7 +103928,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -103763,7 +103943,6 @@ paths: description: Timeline Event type: object anyOf: - - *698 - *699 - *700 - *701 @@ -103776,6 +103955,7 @@ paths: - *708 - *709 - *710 + - *711 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -103836,8 +104016,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true required: - event @@ -104092,7 +104272,7 @@ paths: type: string comments: type: array - items: &734 + items: &738 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -104441,6 +104621,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *714 + - *715 + - *716 examples: default: value: @@ -104624,7 +104807,7 @@ paths: application/json: schema: type: array - items: &713 + items: &717 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -104727,9 +104910,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *717 examples: - default: &714 + default: &718 value: id: 1 key: ssh-rsa AAA... @@ -104765,7 +104948,7 @@ paths: parameters: - *491 - *492 - - &715 + - &719 name: key_id description: The unique identifier of the key. in: path @@ -104777,9 +104960,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *717 examples: - default: *714 + default: *718 '404': *6 x-github: githubCloudOnly: false @@ -104799,7 +104982,7 @@ paths: parameters: - *491 - *492 - - *715 + - *719 responses: '204': description: Response @@ -104832,7 +105015,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 headers: Link: *47 '404': *6 @@ -104892,7 +105075,7 @@ paths: application/json: schema: *227 examples: - default: &716 + default: &720 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -104938,7 +105121,7 @@ paths: application/json: schema: *227 examples: - default: *716 + default: *720 '404': *6 x-github: githubCloudOnly: false @@ -105391,7 +105574,7 @@ paths: application/json: schema: *607 examples: - default: *717 + default: *721 '204': description: Response when already merged '404': @@ -105458,7 +105641,7 @@ paths: application/json: schema: type: array - items: &718 + items: &722 title: Milestone description: A collection of related issues and pull requests. type: object @@ -105560,9 +105743,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: &719 + default: &723 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -105623,7 +105806,7 @@ paths: parameters: - *491 - *492 - - &720 + - &724 name: milestone_number description: The number that identifies the milestone. in: path @@ -105635,9 +105818,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: *719 + default: *723 '404': *6 x-github: githubCloudOnly: false @@ -105656,7 +105839,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 requestBody: required: false content: @@ -105694,9 +105877,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: *719 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105714,7 +105897,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 responses: '204': description: Response @@ -105737,7 +105920,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 - *17 - *19 responses: @@ -105749,7 +105932,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 headers: Link: *47 x-github: @@ -105770,10 +105953,10 @@ paths: parameters: - *491 - *492 - - *721 - - *722 + - *725 + - *726 - *235 - - *723 + - *727 - *17 - *19 responses: @@ -105785,7 +105968,7 @@ paths: type: array items: *255 examples: - default: *724 + default: *728 headers: Link: *47 x-github: @@ -105875,7 +106058,7 @@ paths: description: Response content: application/json: - schema: &725 + schema: &729 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -106000,7 +106183,7 @@ paths: - custom_404 - public examples: - default: &726 + default: &730 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -106096,9 +106279,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *729 examples: - default: *726 + default: *730 '422': *15 '409': *121 x-github: @@ -106267,7 +106450,7 @@ paths: application/json: schema: type: array - items: &727 + items: &731 title: Page Build description: Page Build type: object @@ -106414,9 +106597,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *731 examples: - default: &728 + default: &732 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -106476,9 +106659,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *731 examples: - default: *728 + default: *732 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106606,7 +106789,7 @@ paths: parameters: - *491 - *492 - - &729 + - &733 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -106666,7 +106849,7 @@ paths: parameters: - *491 - *492 - - *729 + - *733 responses: '204': *130 '404': *6 @@ -107046,7 +107229,7 @@ paths: type: array items: *160 examples: - default: *730 + default: *734 '403': *29 '404': *6 x-github: @@ -107085,7 +107268,7 @@ paths: required: - properties examples: - default: *731 + default: *735 responses: '204': description: No Content when custom property values are successfully created @@ -107186,7 +107369,7 @@ paths: type: array items: *611 examples: - default: *732 + default: *736 headers: Link: *47 '304': *37 @@ -107284,7 +107467,7 @@ paths: description: Response content: application/json: - schema: &736 + schema: &740 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -107495,7 +107678,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: *733 + auto_merge: *737 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -107587,7 +107770,7 @@ paths: - merged_by - review_comments examples: - default: &737 + default: &741 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -108144,9 +108327,9 @@ paths: application/json: schema: type: array - items: *734 + items: *738 examples: - default: &739 + default: &743 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -108231,9 +108414,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: - default: &735 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -108332,9 +108515,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: - default: *735 + default: *739 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108537,7 +108720,7 @@ paths: parameters: - *491 - *492 - - &738 + - &742 name: pull_number description: The number that identifies the pull request. in: path @@ -108550,9 +108733,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *736 + schema: *740 examples: - default: *737 + default: *741 '304': *37 '404': *6 '406': @@ -108589,7 +108772,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -108631,9 +108814,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *740 examples: - default: *737 + default: *741 '422': *15 '403': *29 x-github: @@ -108657,7 +108840,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -108759,7 +108942,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *252 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -108780,9 +108963,9 @@ paths: application/json: schema: type: array - items: *734 + items: *738 examples: - default: *739 + default: *743 headers: Link: *47 x-github: @@ -108817,7 +109000,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -108922,7 +109105,7 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: example-for-a-multi-line-comment: value: @@ -109012,7 +109195,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *244 requestBody: required: true @@ -109035,7 +109218,7 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: default: value: @@ -109123,7 +109306,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -109135,7 +109318,7 @@ paths: type: array items: *607 examples: - default: *740 + default: *744 headers: Link: *47 x-github: @@ -109167,7 +109350,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -109217,7 +109400,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 responses: '204': description: Response if pull request has been merged @@ -109242,7 +109425,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -109355,7 +109538,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 responses: '200': description: Response @@ -109432,7 +109615,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -110007,7 +110190,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -110548,7 +110731,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -110558,7 +110741,7 @@ paths: application/json: schema: type: array - items: &741 + items: &745 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -110711,7 +110894,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -110797,9 +110980,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: &743 + default: &747 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -110864,8 +111047,8 @@ paths: parameters: - *491 - *492 - - *738 - - &742 + - *742 + - &746 name: review_id description: The unique identifier of the review. in: path @@ -110877,9 +111060,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: &744 + default: &748 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -110940,8 +111123,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -110964,7 +111147,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: default: value: @@ -111028,16 +111211,16 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 responses: '200': description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: *743 + default: *747 '422': *7 '404': *6 x-github: @@ -111066,8 +111249,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 - *17 - *19 responses: @@ -111304,8 +111487,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -111333,7 +111516,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: default: value: @@ -111398,8 +111581,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -111434,9 +111617,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: *744 + default: *748 '404': *6 '422': *7 '403': *29 @@ -111460,7 +111643,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -111537,9 +111720,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *749 examples: - default: &746 + default: &750 value: type: file encoding: base64 @@ -111602,9 +111785,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *749 examples: - default: *746 + default: *750 '404': *6 '422': *15 x-github: @@ -111637,7 +111820,7 @@ paths: application/json: schema: type: array - items: *747 + items: *751 examples: default: value: @@ -111808,9 +111991,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: &751 + default: &755 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -111917,7 +112100,7 @@ paths: parameters: - *491 - *492 - - &749 + - &753 name: asset_id description: The unique identifier of the asset. in: path @@ -111929,9 +112112,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: &750 + default: &754 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -111984,7 +112167,7 @@ paths: parameters: - *491 - *492 - - *749 + - *753 requestBody: required: false content: @@ -112012,9 +112195,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: *750 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112032,7 +112215,7 @@ paths: parameters: - *491 - *492 - - *749 + - *753 responses: '204': description: Response @@ -112150,9 +112333,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': *6 x-github: githubCloudOnly: false @@ -112184,9 +112367,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': *6 x-github: githubCloudOnly: false @@ -112210,7 +112393,7 @@ paths: parameters: - *491 - *492 - - &752 + - &756 name: release_id description: The unique identifier of the release. in: path @@ -112224,9 +112407,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '401': description: Unauthorized x-github: @@ -112246,7 +112429,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 requestBody: required: false content: @@ -112310,9 +112493,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': description: Not Found if the discussion category name is invalid content: @@ -112335,7 +112518,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 responses: '204': description: Response @@ -112358,7 +112541,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - *17 - *19 responses: @@ -112368,7 +112551,7 @@ paths: application/json: schema: type: array - items: *748 + items: *752 examples: default: value: @@ -112452,7 +112635,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - name: name in: query required: true @@ -112478,7 +112661,7 @@ paths: description: Response for successful upload content: application/json: - schema: *748 + schema: *752 examples: response-for-successful-upload: value: @@ -112535,7 +112718,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -112584,7 +112767,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 requestBody: required: true content: @@ -112647,7 +112830,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - *687 responses: '204': @@ -112691,7 +112874,7 @@ paths: oneOf: - allOf: - *174 - - &753 + - &757 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -112712,67 +112895,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *175 - - *753 + - *757 - allOf: - *176 - - *753 + - *757 - allOf: - *177 - - *753 + - *757 - allOf: - - *754 - - *753 + - *758 + - *757 - allOf: - *178 - - *753 + - *757 - allOf: - *179 - - *753 + - *757 - allOf: - *180 - - *753 + - *757 - allOf: - *181 - - *753 + - *757 - allOf: - *182 - - *753 + - *757 - allOf: - *183 - - *753 + - *757 - allOf: - *184 - - *753 + - *757 - allOf: - *185 - - *753 + - *757 - allOf: - *186 - - *753 + - *757 - allOf: - *187 - - *753 + - *757 - allOf: - *188 - - *753 + - *757 - allOf: - *189 - - *753 + - *757 - allOf: - *190 - - *753 + - *757 - allOf: - *191 - - *753 + - *757 - allOf: - *192 - - *753 + - *757 - allOf: - *193 - - *753 + - *757 - allOf: - *194 - - *753 + - *757 examples: default: value: @@ -112823,7 +113006,7 @@ paths: schema: type: boolean default: true - - *755 + - *759 responses: '200': description: Response @@ -112908,7 +113091,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *756 + items: *760 required: - name - enforcement @@ -112941,7 +113124,7 @@ paths: application/json: schema: *195 examples: - default: &766 + default: &770 value: id: 42 name: super cool ruleset @@ -112991,11 +113174,11 @@ paths: parameters: - *491 - *492 - - *757 + - *761 - *107 - - *758 - - *759 - - *760 + - *762 + - *763 + - *764 - *17 - *19 responses: @@ -113003,9 +113186,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *765 examples: - default: *762 + default: *766 '404': *6 '500': *40 x-github: @@ -113028,15 +113211,15 @@ paths: parameters: - *491 - *492 - - *763 + - *767 responses: '200': description: Response content: application/json: - schema: *764 + schema: *768 examples: - default: *765 + default: *769 '404': *6 '500': *40 x-github: @@ -113087,7 +113270,7 @@ paths: application/json: schema: *195 examples: - default: *766 + default: *770 '404': *6 '500': *40 put: @@ -113140,7 +113323,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *756 + items: *760 examples: default: value: @@ -113170,7 +113353,7 @@ paths: application/json: schema: *195 examples: - default: *766 + default: *770 '404': *6 '422': *15 '500': *40 @@ -113338,8 +113521,8 @@ paths: - *112 - *19 - *17 - - *767 - - *768 + - *771 + - *772 - *465 - *466 - *467 @@ -113352,7 +113535,7 @@ paths: application/json: schema: type: array - items: &772 + items: &776 type: object properties: number: *131 @@ -113371,8 +113554,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *769 - resolution: *770 + state: *773 + resolution: *774 resolved_at: type: string format: date-time @@ -113478,7 +113661,7 @@ paths: pull request. ' - oneOf: *771 + oneOf: *775 nullable: true has_more_locations: type: boolean @@ -113651,7 +113834,7 @@ paths: description: Response content: application/json: - schema: *772 + schema: *776 examples: default: value: @@ -113715,8 +113898,8 @@ paths: schema: type: object properties: - state: *769 - resolution: *770 + state: *773 + resolution: *774 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -113760,7 +113943,7 @@ paths: description: Response content: application/json: - schema: *772 + schema: *776 examples: default: value: @@ -113872,7 +114055,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &959 + items: &963 type: object properties: type: @@ -113898,10 +114081,6 @@ paths: example: commit details: oneOf: - - *773 - - *774 - - *775 - - *776 - *777 - *778 - *779 @@ -113911,6 +114090,10 @@ paths: - *783 - *784 - *785 + - *786 + - *787 + - *788 + - *789 examples: default: value: @@ -114005,14 +114188,14 @@ paths: schema: type: object properties: - reason: &787 + reason: &791 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *786 + placeholder_id: *790 required: - reason - placeholder_id @@ -114029,7 +114212,7 @@ paths: schema: type: object properties: - reason: *787 + reason: *791 expire_at: type: string format: date-time @@ -114091,7 +114274,7 @@ paths: properties: incremental_scans: type: array - items: &788 + items: &792 description: Information on a single scan performed by secret scanning on the repository type: object @@ -114122,15 +114305,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *788 + items: *792 backfill_scans: type: array - items: *788 + items: *792 custom_pattern_backfill_scans: type: array items: allOf: - - *788 + - *792 - type: object properties: pattern_name: @@ -114143,7 +114326,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *788 + items: *792 examples: default: value: @@ -114253,9 +114436,9 @@ paths: application/json: schema: type: array - items: *789 + items: *793 examples: - default: *790 + default: *794 '400': *14 '404': *6 x-github: @@ -114439,9 +114622,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: &792 + default: &796 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -114779,7 +114962,7 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: default: value: @@ -114928,15 +115111,15 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '200': description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: *792 + default: *796 '403': *29 '404': *6 x-github: @@ -114962,7 +115145,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 requestBody: required: true content: @@ -115121,10 +115304,10 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: *792 - add_credit: *792 + default: *796 + add_credit: *796 '403': *29 '404': *6 '422': @@ -115164,7 +115347,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '202': *39 '400': *14 @@ -115193,7 +115376,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '202': description: Response @@ -115337,7 +115520,7 @@ paths: application/json: schema: type: array - items: &793 + items: &797 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -115710,7 +115893,7 @@ paths: application/json: schema: type: array - items: *793 + items: *797 examples: default: value: @@ -115798,7 +115981,7 @@ paths: description: Response content: application/json: - schema: *794 + schema: *798 examples: default: value: @@ -115892,7 +116075,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &795 + schema: &799 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -115987,7 +116170,7 @@ paths: description: Response content: application/json: - schema: *795 + schema: *799 examples: default: value: @@ -116194,7 +116377,7 @@ paths: description: Response content: application/json: - schema: &796 + schema: &800 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -116206,7 +116389,7 @@ paths: required: - names examples: - default: &797 + default: &801 value: names: - octocat @@ -116261,9 +116444,9 @@ paths: description: Response content: application/json: - schema: *796 + schema: *800 examples: - default: *797 + default: *801 '404': *6 '422': *7 x-github: @@ -116286,7 +116469,7 @@ paths: parameters: - *491 - *492 - - &798 + - &802 name: per description: The time frame to display results for. in: query @@ -116315,7 +116498,7 @@ paths: example: 128 clones: type: array - items: &799 + items: &803 title: Traffic type: object properties: @@ -116556,7 +116739,7 @@ paths: parameters: - *491 - *492 - - *798 + - *802 responses: '200': description: Response @@ -116575,7 +116758,7 @@ paths: example: 3782 views: type: array - items: *799 + items: *803 required: - uniques - count @@ -117247,7 +117430,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &807 + - &811 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -117256,7 +117439,7 @@ paths: schema: type: string example: members - - &812 + - &816 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -117267,7 +117450,7 @@ paths: default: 1 format: int32 example: 1 - - &813 + - &817 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -117309,7 +117492,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &802 + items: &806 allOf: - type: object required: @@ -117384,7 +117567,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &814 + meta: &818 type: object description: The metadata associated with the creation/updates to the user. @@ -117444,30 +117627,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &803 + '400': &807 description: Bad request content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '401': *801 - '403': &804 + schema: *804 + '401': *805 + '403': &808 description: Permission denied - '429': &805 + '429': &809 description: Too many requests content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '500': &806 + schema: *804 + '500': &810 description: Internal server error content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 + schema: *804 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117491,7 +117674,7 @@ paths: required: true content: application/json: - schema: &810 + schema: &814 type: object required: - schemas @@ -117551,9 +117734,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *802 + schema: *806 examples: - group: &808 + group: &812 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -117572,13 +117755,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *803 - '401': *801 - '403': *804 - '409': &811 + '400': *807 + '401': *805 + '403': *808 + '409': &815 description: Duplicate record detected - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117595,7 +117778,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &809 + - &813 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -117603,22 +117786,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *807 + - *811 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *802 + schema: *806 examples: - default: *808 - '400': *803 - '401': *801 - '403': *804 + default: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117637,13 +117820,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *809 + - *813 - *41 requestBody: required: true content: application/json: - schema: *810 + schema: *814 examples: group: summary: Group @@ -117669,17 +117852,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *802 + schema: *806 examples: - group: *808 - groupWithMembers: *808 - '400': *803 - '401': *801 - '403': *804 + group: *812 + groupWithMembers: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117703,13 +117886,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *809 + - *813 - *41 requestBody: required: true content: application/json: - schema: &821 + schema: &825 type: object required: - Operations @@ -117769,17 +117952,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *802 + schema: *806 examples: - updateGroup: *808 - addMembers: *808 - '400': *803 - '401': *801 - '403': *804 + updateGroup: *812 + addMembers: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117795,17 +117978,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *809 + - *813 - *41 responses: '204': description: Group was deleted, no content - '400': *803 - '401': *801 - '403': *804 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117839,8 +118022,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *812 - - *813 + - *816 + - *817 - *41 responses: '200': @@ -117873,7 +118056,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &816 + items: &820 allOf: - type: object required: @@ -117952,7 +118135,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &815 + roles: &819 type: array description: The roles assigned to the user. items: @@ -118008,7 +118191,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *814 + meta: *818 startIndex: type: integer description: A starting index for the returned page @@ -118045,11 +118228,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *803 - '401': *801 - '403': *804 - '429': *805 - '500': *806 + '400': *807 + '401': *805 + '403': *808 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118073,7 +118256,7 @@ paths: required: true content: application/json: - schema: &819 + schema: &823 type: object required: - schemas @@ -118155,9 +118338,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *815 + roles: *819 examples: - user: &820 + user: &824 summary: User value: schemas: @@ -118204,9 +118387,9 @@ paths: description: User has been created content: application/scim+json: - schema: *816 + schema: *820 examples: - user: &817 + user: &821 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118232,13 +118415,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *817 - '400': *803 - '401': *801 - '403': *804 - '409': *811 - '429': *805 - '500': *806 + enterpriseOwner: *821 + '400': *807 + '401': *805 + '403': *808 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118255,7 +118438,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &818 + - &822 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -118268,15 +118451,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *816 + schema: *820 examples: - default: *817 - '400': *803 - '401': *801 - '403': *804 + default: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118327,30 +118510,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *818 + - *822 - *41 requestBody: required: true content: application/json: - schema: *819 + schema: *823 examples: - user: *820 + user: *824 responses: '200': description: User was updated content: application/scim+json: - schema: *816 + schema: *820 examples: - user: *817 - '400': *803 - '401': *801 - '403': *804 + user: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118391,13 +118574,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *818 + - *822 - *41 requestBody: required: true content: application/json: - schema: *821 + schema: *825 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -118437,18 +118620,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *816 + schema: *820 examples: - userMultiValuedProperties: *817 - userSingleValuedProperties: *817 - disableUser: *817 - '400': *803 - '401': *801 - '403': *804 + userMultiValuedProperties: *821 + userSingleValuedProperties: *821 + disableUser: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118468,17 +118651,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *818 + - *822 - *41 responses: '204': description: User was deleted, no content - '400': *803 - '401': *801 - '403': *804 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118565,7 +118748,7 @@ paths: example: 1 Resources: type: array - items: &822 + items: &826 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -118796,22 +118979,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &823 + '404': &827 description: Resource not found content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '403': &824 + schema: *804 + '403': &828 description: Forbidden content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '400': *803 - '429': *805 + schema: *804 + '400': *807 + '429': *809 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -118837,9 +119020,9 @@ paths: description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: &825 + default: &829 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118862,17 +119045,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *823 - '403': *824 - '500': *806 + '404': *827 + '403': *828 + '500': *810 '409': description: Conflict content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '400': *803 + schema: *804 + '400': *807 requestBody: required: true content: @@ -118970,17 +119153,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 - '404': *823 - '403': *824 + default: *829 + '404': *827 + '403': *828 '304': *37 x-github: githubCloudOnly: true @@ -119004,18 +119187,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 + default: *829 '304': *37 - '404': *823 - '403': *824 + '404': *827 + '403': *828 requestBody: required: true content: @@ -119128,19 +119311,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 + default: *829 '304': *37 - '404': *823 - '403': *824 - '400': *803 + '404': *827 + '403': *828 + '400': *807 '429': description: Response content: @@ -119231,12 +119414,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *818 + - *822 responses: '204': description: Response - '404': *823 - '403': *824 + '404': *827 + '403': *828 '304': *37 x-github: githubCloudOnly: true @@ -119372,7 +119555,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &826 + text_matches: &830 title: Search Result Text Matches type: array items: @@ -119535,7 +119718,7 @@ paths: enum: - author-date - committer-date - - &827 + - &831 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -119663,7 +119846,7 @@ paths: type: number node_id: type: string - text_matches: *826 + text_matches: *830 required: - sha - node_id @@ -119856,7 +120039,7 @@ paths: - interactions - created - updated - - *827 + - *831 - *17 - *19 - name: advanced_search @@ -119970,11 +120153,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: type: string state_reason: @@ -120006,7 +120189,7 @@ paths: type: string format: date-time nullable: true - text_matches: *826 + text_matches: *830 pull_request: type: object properties: @@ -120288,7 +120471,7 @@ paths: enum: - created - updated - - *827 + - *831 - *17 - *19 responses: @@ -120332,7 +120515,7 @@ paths: nullable: true score: type: number - text_matches: *826 + text_matches: *830 required: - id - node_id @@ -120418,7 +120601,7 @@ paths: - forks - help-wanted-issues - updated - - *827 + - *831 - *17 - *19 responses: @@ -120666,7 +120849,7 @@ paths: - admin - pull - push - text_matches: *826 + text_matches: *830 temp_clone_token: type: string allow_merge_commit: @@ -120967,7 +121150,7 @@ paths: type: string format: uri nullable: true - text_matches: *826 + text_matches: *830 related: type: array nullable: true @@ -121160,7 +121343,7 @@ paths: - followers - repositories - joined - - *827 + - *831 - *17 - *19 responses: @@ -121264,7 +121447,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *826 + text_matches: *830 blog: type: string nullable: true @@ -121343,7 +121526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &830 + - &834 name: team_id description: The unique identifier of the team. in: path @@ -121384,7 +121567,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *830 + - *834 requestBody: required: true content: @@ -121484,7 +121667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *830 + - *834 responses: '204': description: Response @@ -121513,7 +121696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -121551,7 +121734,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *830 + - *834 - name: role description: Filters members returned by their role in the team. in: query @@ -121602,7 +121785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121639,7 +121822,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121679,7 +121862,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121716,7 +121899,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 responses: '200': @@ -121725,7 +121908,7 @@ paths: application/json: schema: *490 examples: - response-if-user-is-a-team-maintainer: *831 + response-if-user-is-a-team-maintainer: *835 '404': *6 x-github: githubCloudOnly: false @@ -121758,7 +121941,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 requestBody: required: false @@ -121786,7 +121969,7 @@ paths: application/json: schema: *490 examples: - response-if-users-membership-with-team-is-now-pending: *832 + response-if-users-membership-with-team-is-now-pending: *836 '403': description: Forbidden if team synchronization is set up '422': @@ -121820,7 +122003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121848,7 +122031,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -121890,7 +122073,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *830 + - *834 - *491 - *492 responses: @@ -121898,7 +122081,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *833 + schema: *837 examples: alternative-response-with-extra-repository-information: value: @@ -122049,7 +122232,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *830 + - *834 - *491 - *492 requestBody: @@ -122101,7 +122284,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *830 + - *834 - *491 - *492 responses: @@ -122132,7 +122315,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *830 + - *834 responses: '200': description: Response @@ -122167,7 +122350,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *830 + - *834 requestBody: required: true content: @@ -122255,7 +122438,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -122267,7 +122450,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: *834 + response-if-child-teams-exist: *838 headers: Link: *47 '404': *6 @@ -122300,7 +122483,7 @@ paths: application/json: schema: oneOf: - - &836 + - &840 title: Private User description: Private User type: object @@ -122503,7 +122686,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *835 + - *839 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -122656,7 +122839,7 @@ paths: description: Response content: application/json: - schema: *836 + schema: *840 examples: default: value: @@ -123054,7 +123237,7 @@ paths: type: integer secrets: type: array - items: &837 + items: &841 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -123170,7 +123353,7 @@ paths: description: Response content: application/json: - schema: *837 + schema: *841 examples: default: value: @@ -123583,7 +123766,7 @@ paths: description: Response content: application/json: - schema: &838 + schema: &842 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -123624,7 +123807,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &839 + default: &843 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -123669,9 +123852,9 @@ paths: description: Response content: application/json: - schema: *838 + schema: *842 examples: - default: *839 + default: *843 '404': *6 x-github: githubCloudOnly: false @@ -123708,9 +123891,9 @@ paths: type: integer machines: type: array - items: *840 + items: *844 examples: - default: *841 + default: *845 '304': *37 '500': *40 '401': *25 @@ -124649,7 +124832,7 @@ paths: type: array items: *416 examples: - default: &852 + default: &856 value: - id: 197 name: hello_docker @@ -124750,7 +124933,7 @@ paths: application/json: schema: type: array - items: &842 + items: &846 title: Email description: Email type: object @@ -124815,9 +124998,9 @@ paths: application/json: schema: type: array - items: *842 + items: *846 examples: - default: &854 + default: &858 value: - email: octocat@github.com verified: true @@ -124892,7 +125075,7 @@ paths: application/json: schema: type: array - items: *842 + items: *846 examples: default: value: @@ -125148,7 +125331,7 @@ paths: application/json: schema: type: array - items: &843 + items: &847 title: GPG Key description: A unique encryption key type: object @@ -125279,7 +125462,7 @@ paths: - subkeys - revoked examples: - default: &871 + default: &875 value: - id: 3 name: Octocat's GPG Key @@ -125364,9 +125547,9 @@ paths: description: Response content: application/json: - schema: *843 + schema: *847 examples: - default: &844 + default: &848 value: id: 3 name: Octocat's GPG Key @@ -125423,7 +125606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &845 + - &849 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -125435,9 +125618,9 @@ paths: description: Response content: application/json: - schema: *843 + schema: *847 examples: - default: *844 + default: *848 '404': *6 '304': *37 '403': *29 @@ -125460,7 +125643,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *845 + - *849 responses: '204': description: Response @@ -125927,7 +126110,7 @@ paths: application/json: schema: type: array - items: &846 + items: &850 title: Key description: Key type: object @@ -126028,9 +126211,9 @@ paths: description: Response content: application/json: - schema: *846 + schema: *850 examples: - default: &847 + default: &851 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -126063,15 +126246,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *715 + - *719 responses: '200': description: Response content: application/json: - schema: *846 + schema: *850 examples: - default: *847 + default: *851 '404': *6 '304': *37 '403': *29 @@ -126094,7 +126277,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *715 + - *719 responses: '204': description: Response @@ -126127,7 +126310,7 @@ paths: application/json: schema: type: array - items: &848 + items: &852 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -126195,7 +126378,7 @@ paths: - account - plan examples: - default: &849 + default: &853 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -126257,9 +126440,9 @@ paths: application/json: schema: type: array - items: *848 + items: *852 examples: - default: *849 + default: *853 headers: Link: *47 '304': *37 @@ -127268,7 +127451,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *411 - - *850 + - *854 responses: '204': description: Response @@ -127383,7 +127566,7 @@ paths: - docker - nuget - container - - *851 + - *855 - *19 - *17 responses: @@ -127395,8 +127578,8 @@ paths: type: array items: *416 examples: - default: *852 - '400': *853 + default: *856 + '400': *857 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -127425,7 +127608,7 @@ paths: application/json: schema: *416 examples: - default: &872 + default: &876 value: id: 40201 name: octo-name @@ -127787,9 +127970,9 @@ paths: application/json: schema: type: array - items: *842 + items: *846 examples: - default: *854 + default: *858 headers: Link: *47 '304': *37 @@ -127902,7 +128085,7 @@ paths: type: array items: *80 examples: - default: &861 + default: &865 summary: Default response value: - id: 1296269 @@ -128248,7 +128431,7 @@ paths: type: array items: *681 examples: - default: *855 + default: *859 headers: Link: *47 '304': *37 @@ -128327,7 +128510,7 @@ paths: application/json: schema: type: array - items: &856 + items: &860 title: Social account description: Social media account type: object @@ -128342,7 +128525,7 @@ paths: - provider - url examples: - default: &857 + default: &861 value: - provider: twitter url: https://twitter.com/github @@ -128404,9 +128587,9 @@ paths: application/json: schema: type: array - items: *856 + items: *860 examples: - default: *857 + default: *861 '422': *15 '304': *37 '404': *6 @@ -128493,7 +128676,7 @@ paths: application/json: schema: type: array - items: &858 + items: &862 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -128513,7 +128696,7 @@ paths: - title - created_at examples: - default: &886 + default: &890 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128577,9 +128760,9 @@ paths: description: Response content: application/json: - schema: *858 + schema: *862 examples: - default: &859 + default: &863 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128609,7 +128792,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &860 + - &864 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -128621,9 +128804,9 @@ paths: description: Response content: application/json: - schema: *858 + schema: *862 examples: - default: *859 + default: *863 '404': *6 '304': *37 '403': *29 @@ -128646,7 +128829,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *860 + - *864 responses: '204': description: Response @@ -128675,7 +128858,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &887 + - &891 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 @@ -128700,11 +128883,11 @@ paths: type: array items: *80 examples: - default-response: *861 + default-response: *865 application/vnd.github.v3.star+json: schema: type: array - items: &888 + items: &892 title: Starred Repository description: Starred Repository type: object @@ -129073,10 +129256,10 @@ paths: application/json: schema: oneOf: - - *836 - - *835 + - *840 + - *839 examples: - default-response: &865 + default-response: &869 summary: Default response value: login: octocat @@ -129111,7 +129294,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &866 + response-with-git-hub-plan-information: &870 summary: Response with GitHub plan information value: login: octocat @@ -129168,7 +129351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &863 + - &867 name: user_id description: The unique identifier of the user. in: path @@ -129234,7 +129417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *862 + - *866 - *17 responses: '200': @@ -129269,7 +129452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *863 + - *867 - *434 requestBody: required: true @@ -129341,7 +129524,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *864 + schema: *868 examples: table_view: summary: Response for creating a table view @@ -129393,11 +129576,11 @@ paths: application/json: schema: oneOf: - - *836 - - *835 + - *840 + - *839 examples: - default-response: *865 - response-with-git-hub-plan-information: *866 + default-response: *869 + response-with-git-hub-plan-information: *870 '404': *6 x-github: githubCloudOnly: false @@ -129447,8 +129630,8 @@ paths: required: - subject_digests examples: - default: *867 - withPredicateType: *868 + default: *871 + withPredicateType: *872 responses: '200': description: Response @@ -129501,7 +129684,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *869 + default: *873 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -129987,7 +130170,7 @@ paths: application/json: schema: *340 examples: - default: &870 + default: &874 summary: Example response for a user copilot space value: id: 42 @@ -130088,7 +130271,7 @@ paths: application/json: schema: *340 examples: - default: *870 + default: *874 '403': *29 '404': *6 x-github: @@ -130211,7 +130394,7 @@ paths: application/json: schema: *340 examples: - default: *870 + default: *874 '403': *29 '404': *6 '422': *15 @@ -130979,7 +131162,7 @@ paths: type: array items: *416 examples: - default: *852 + default: *856 '403': *29 '401': *25 x-github: @@ -131363,9 +131546,9 @@ paths: application/json: schema: type: array - items: *843 + items: *847 examples: - default: *871 + default: *875 headers: Link: *47 x-github: @@ -131593,7 +131776,7 @@ paths: - docker - nuget - container - - *851 + - *855 - *148 - *19 - *17 @@ -131606,10 +131789,10 @@ paths: type: array items: *416 examples: - default: *852 + default: *856 '403': *29 '401': *25 - '400': *853 + '400': *857 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131639,7 +131822,7 @@ paths: application/json: schema: *416 examples: - default: *872 + default: *876 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131988,7 +132171,7 @@ paths: type: array items: *438 examples: - default: *873 + default: *877 headers: Link: *47 '304': *37 @@ -132048,7 +132231,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *874 + items: *878 required: - name - data_type @@ -132064,7 +132247,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *875 + iteration_configuration: *879 required: - name - data_type @@ -132086,8 +132269,8 @@ paths: value: name: Due date data_type: date - single_select_field: *876 - iteration_field: *877 + single_select_field: *880 + iteration_field: *881 responses: '201': description: Response @@ -132095,11 +132278,11 @@ paths: application/json: schema: *438 examples: - text_field: *878 - number_field: *879 - date_field: *880 - single_select_field: *881 - iteration_field: *882 + text_field: *882 + number_field: *883 + date_field: *884 + single_select_field: *885 + iteration_field: *886 '304': *37 '403': *29 '401': *25 @@ -132121,7 +132304,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *434 - - *883 + - *887 - *148 responses: '200': @@ -132130,7 +132313,7 @@ paths: application/json: schema: *438 examples: - default: *884 + default: *888 headers: Link: *47 '304': *37 @@ -132484,7 +132667,7 @@ paths: parameters: - *434 - *148 - - *885 + - *889 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -132763,9 +132946,9 @@ paths: application/json: schema: type: array - items: *856 + items: *860 examples: - default: *857 + default: *861 headers: Link: *47 x-github: @@ -132795,9 +132978,9 @@ paths: application/json: schema: type: array - items: *858 + items: *862 examples: - default: *886 + default: *890 headers: Link: *47 x-github: @@ -132822,7 +133005,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *148 - - *887 + - *891 - *112 - *17 - *19 @@ -132834,11 +133017,11 @@ paths: schema: anyOf: - type: array - items: *888 + items: *892 - type: array items: *80 examples: - default-response: *861 + default-response: *865 headers: Link: *47 x-github: @@ -132997,7 +133180,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &889 + enterprise: &893 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -133055,7 +133238,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &890 + installation: &894 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -133074,7 +133257,7 @@ x-webhooks: required: - id - node_id - organization: &891 + organization: &895 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -133134,13 +133317,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &892 + repository: &896 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: &931 + properties: &935 id: description: Unique identifier of the repository example: 42 @@ -133835,7 +134018,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &932 + required: &936 - archive_url - assignees_url - blobs_url @@ -133986,10 +134169,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -134065,11 +134248,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: &893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: &897 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -134292,11 +134475,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: *893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: *897 sender: *4 required: - action @@ -134479,11 +134662,11 @@ x-webhooks: - everyone required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: *893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: *897 sender: *4 required: - action @@ -134556,7 +134739,7 @@ x-webhooks: required: true content: application/json: - schema: &915 + schema: &919 title: Exemption request cancellation event type: object properties: @@ -134564,11 +134747,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: &894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: &898 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -134872,7 +135055,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &895 + items: &899 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -134982,7 +135165,7 @@ x-webhooks: required: true content: application/json: - schema: &916 + schema: &920 title: Exemption request completed event type: object properties: @@ -134990,11 +135173,11 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 sender: *4 required: - action @@ -135066,7 +135249,7 @@ x-webhooks: required: true content: application/json: - schema: &913 + schema: &917 title: Exemption request created event type: object properties: @@ -135074,11 +135257,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 sender: *4 required: - action @@ -135150,7 +135333,7 @@ x-webhooks: required: true content: application/json: - schema: &917 + schema: &921 title: Exemption response dismissed event type: object properties: @@ -135158,12 +135341,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 - exemption_response: *895 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 + exemption_response: *899 sender: *4 required: - action @@ -135237,7 +135420,7 @@ x-webhooks: required: true content: application/json: - schema: &914 + schema: &918 title: Exemption response submitted event type: object properties: @@ -135245,12 +135428,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 - exemption_response: *895 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 + exemption_response: *899 sender: *4 required: - action @@ -135334,7 +135517,7 @@ x-webhooks: type: string enum: - completed - check_run: &897 + check_run: &901 title: CheckRun description: A check performed on the code of a given code change type: object @@ -135425,7 +135608,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *896 + deployment: *900 details_url: example: https://example.com type: string @@ -135510,10 +135693,10 @@ x-webhooks: - output - app - pull_requests - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -135904,11 +136087,11 @@ x-webhooks: type: string enum: - created - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -136302,11 +136485,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 requested_action: description: The action requested by the user. type: object @@ -136709,11 +136892,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -137683,10 +137866,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -138385,10 +138568,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -139081,10 +139264,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -139395,20 +139578,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &898 + commit_oid: &902 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: *889 - installation: *890 - organization: *891 - ref: &899 + enterprise: *893 + installation: *894 + organization: *895 + ref: &903 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: *892 + repository: *896 sender: *4 required: - action @@ -139803,12 +139986,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -140074,12 +140257,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -140411,12 +140594,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -140690,16 +140873,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 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: *892 + repository: *896 sender: *4 required: - action @@ -140936,12 +141119,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -141252,10 +141435,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -141510,10 +141693,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -141593,18 +141776,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *891 - pusher_type: &900 + organization: *895 + pusher_type: &904 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &901 + ref: &905 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -141614,7 +141797,7 @@ x-webhooks: enum: - tag - branch - repository: *892 + repository: *896 sender: *4 required: - ref @@ -141697,9 +141880,9 @@ x-webhooks: enum: - created definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141784,9 +141967,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141864,9 +142047,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141944,9 +142127,9 @@ x-webhooks: enum: - updated definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -142023,10 +142206,10 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - repository: *892 - organization: *891 + enterprise: *893 + installation: *894 + repository: *896 + organization: *895 sender: *4 new_property_values: type: array @@ -142111,18 +142294,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - pusher_type: *900 - ref: *901 + enterprise: *893 + installation: *894 + organization: *895 + pusher_type: *904 + ref: *905 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *892 + repository: *896 sender: *4 required: - ref @@ -142203,10 +142386,10 @@ x-webhooks: enum: - assignees_changed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142287,10 +142470,10 @@ x-webhooks: enum: - auto_dismissed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142372,10 +142555,10 @@ x-webhooks: enum: - auto_reopened alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142457,10 +142640,10 @@ x-webhooks: enum: - created alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142540,10 +142723,10 @@ x-webhooks: enum: - dismissed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142623,10 +142806,10 @@ x-webhooks: enum: - fixed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142707,10 +142890,10 @@ x-webhooks: enum: - reintroduced alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142790,10 +142973,10 @@ x-webhooks: enum: - reopened alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142870,9 +143053,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - key: &902 + enterprise: *893 + installation: *894 + key: &906 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -142908,8 +143091,8 @@ x-webhooks: - verified - created_at - read_only - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -142986,11 +143169,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - key: *902 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + key: *906 + organization: *895 + repository: *896 sender: *4 required: - action @@ -143546,12 +143729,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: &908 + workflow: &912 title: Workflow type: object nullable: true @@ -144292,15 +144475,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *903 - required: *904 + properties: *907 + required: *908 nullable: true pull_requests: type: array - items: *736 - repository: *892 - organization: *891 - installation: *890 + items: *740 + repository: *896 + organization: *895 + installation: *894 sender: *4 responses: '200': @@ -144371,7 +144554,7 @@ x-webhooks: type: string enum: - approved - approver: &905 + approver: &909 type: object properties: avatar_url: @@ -144414,11 +144597,11 @@ x-webhooks: type: string comment: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - reviewers: &906 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + reviewers: &910 type: array items: type: object @@ -144497,7 +144680,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &907 + workflow_job_run: &911 type: object properties: conclusion: @@ -145228,18 +145411,18 @@ x-webhooks: type: string enum: - rejected - approver: *905 + approver: *909 comment: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - reviewers: *906 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + reviewers: *910 sender: *4 since: type: string - workflow_job_run: *907 + workflow_job_run: *911 workflow_job_runs: type: array items: @@ -145943,13 +146126,13 @@ x-webhooks: type: string enum: - requested - enterprise: *889 + enterprise: *893 environment: type: string - installation: *890 - organization: *891 - repository: *892 - requestor: &918 + installation: *894 + organization: *895 + repository: *896 + requestor: &922 title: User type: object nullable: true @@ -147838,12 +148021,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Deployment Workflow Run type: object @@ -148523,7 +148706,7 @@ x-webhooks: type: string enum: - answered - answer: &911 + answer: &915 type: object properties: author_association: @@ -148680,11 +148863,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148811,11 +148994,11 @@ x-webhooks: - from required: - category - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148898,11 +149081,11 @@ x-webhooks: type: string enum: - closed - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148984,7 +149167,7 @@ x-webhooks: type: string enum: - created - comment: &910 + comment: &914 type: object properties: author_association: @@ -149141,11 +149324,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149228,12 +149411,12 @@ x-webhooks: type: string enum: - deleted - comment: *910 - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + comment: *914 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149328,12 +149511,12 @@ x-webhooks: - from required: - body - comment: *910 - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + comment: *914 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149417,11 +149600,11 @@ x-webhooks: type: string enum: - created - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149503,11 +149686,11 @@ x-webhooks: type: string enum: - deleted - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149607,11 +149790,11 @@ x-webhooks: type: string required: - from - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149693,10 +149876,10 @@ x-webhooks: type: string enum: - labeled - discussion: *909 - enterprise: *889 - installation: *890 - label: &912 + discussion: *913 + enterprise: *893 + installation: *894 + label: &916 title: Label type: object properties: @@ -149728,8 +149911,8 @@ x-webhooks: - color - default - description - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149812,11 +149995,11 @@ x-webhooks: type: string enum: - locked - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149898,11 +150081,11 @@ x-webhooks: type: string enum: - pinned - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149984,11 +150167,11 @@ x-webhooks: type: string enum: - reopened - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150073,16 +150256,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *909 - new_repository: *892 + new_discussion: *913 + new_repository: *896 required: - new_discussion - new_repository - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150165,10 +150348,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *909 - old_answer: *911 - organization: *891 - repository: *892 + discussion: *913 + old_answer: *915 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150250,12 +150433,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *909 - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150338,11 +150521,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150424,11 +150607,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150497,7 +150680,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150560,7 +150743,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150623,7 +150806,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150686,7 +150869,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150749,7 +150932,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150815,7 +150998,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150881,7 +151064,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150947,7 +151130,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151013,7 +151196,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151079,7 +151262,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151144,7 +151327,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151209,7 +151392,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151274,7 +151457,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151339,7 +151522,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151405,7 +151588,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151472,7 +151655,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *889 + enterprise: *893 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -152132,9 +152315,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - forkee @@ -152280,9 +152463,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pages: description: The pages that were updated. type: array @@ -152319,7 +152502,7 @@ x-webhooks: - action - sha - html_url - repository: *892 + repository: *896 sender: *4 required: - pages @@ -152395,10 +152578,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: &919 + organization: *895 + repositories: &923 description: An array of repository objects that the installation can access. type: array @@ -152424,8 +152607,8 @@ x-webhooks: - name - full_name - private - repository: *892 - requester: *918 + repository: *896 + requester: *922 sender: *4 required: - action @@ -152500,11 +152683,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152580,11 +152763,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152660,10 +152843,10 @@ x-webhooks: type: string enum: - added - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories_added: &920 + organization: *895 + repositories_added: &924 description: An array of repository objects, which were added to the installation. type: array @@ -152709,15 +152892,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *892 - repository_selection: &921 + repository: *896 + repository_selection: &925 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *918 + requester: *922 sender: *4 required: - action @@ -152796,10 +152979,10 @@ x-webhooks: type: string enum: - removed - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories_added: *920 + organization: *895 + repositories_added: *924 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -152826,9 +153009,9 @@ x-webhooks: - name - full_name - private - repository: *892 - repository_selection: *921 - requester: *918 + repository: *896 + repository_selection: *925 + requester: *922 sender: *4 required: - action @@ -152907,11 +153090,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -153090,10 +153273,10 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 target_type: type: string @@ -153172,11 +153355,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -153350,8 +153533,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true user: title: User @@ -153436,8 +153619,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -154226,8 +154409,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154576,8 +154759,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -154657,7 +154840,7 @@ x-webhooks: type: string enum: - deleted - comment: &922 + comment: &926 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -154814,8 +154997,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true required: - url @@ -154830,8 +155013,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -155616,8 +155799,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155968,8 +156151,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -156049,7 +156232,7 @@ x-webhooks: type: string enum: - edited - changes: &951 + changes: &955 description: The changes to the comment. type: object properties: @@ -156061,9 +156244,9 @@ x-webhooks: type: string required: - from - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156851,8 +157034,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157201,8 +157384,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -157283,9 +157466,9 @@ x-webhooks: type: string enum: - pinned - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158075,8 +158258,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158427,8 +158610,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -158508,9 +158691,9 @@ x-webhooks: type: string enum: - unpinned - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159300,8 +159483,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159652,8 +159835,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159742,9 +159925,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159833,9 +160016,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159923,9 +160106,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -160014,9 +160197,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -160096,10 +160279,10 @@ x-webhooks: type: string enum: - assigned - assignee: *918 - enterprise: *889 - installation: *890 - issue: &923 + assignee: *922 + enterprise: *893 + installation: *894 + issue: &927 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -160891,11 +161074,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161012,8 +161195,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -161093,8 +161276,8 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -161891,11 +162074,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162147,8 +162330,8 @@ x-webhooks: required: - state - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -162227,8 +162410,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -163016,11 +163199,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163136,8 +163319,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -163216,8 +163399,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -164027,11 +164210,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164126,7 +164309,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &924 + milestone: &928 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164264,8 +164447,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -164364,8 +164547,8 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165157,11 +165340,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165278,9 +165461,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *912 - organization: *891 - repository: *892 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -165360,9 +165543,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 issue_field: type: object description: The issue field whose value was set or updated on the @@ -165516,8 +165699,8 @@ x-webhooks: - id required: - from - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -165597,9 +165780,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -165680,8 +165863,8 @@ x-webhooks: nullable: true required: - id - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -165761,8 +165944,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166553,11 +166736,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166674,9 +166857,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *912 - organization: *891 - repository: *892 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -166756,8 +166939,8 @@ x-webhooks: type: string enum: - locked - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167572,11 +167755,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167670,8 +167853,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -167750,8 +167933,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168560,11 +168743,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168658,9 +168841,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *924 - organization: *891 - repository: *892 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -169523,11 +169706,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170108,8 +170291,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170893,11 +171076,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171021,8 +171204,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -171102,9 +171285,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *889 - installation: *890 - issue: &925 + enterprise: *893 + installation: *894 + issue: &929 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -171890,11 +172073,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172010,8 +172193,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -172090,8 +172273,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172904,11 +173087,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173003,8 +173186,8 @@ x-webhooks: user_view_type: type: string type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -173873,11 +174056,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174472,11 +174655,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *889 - installation: *890 - issue: *925 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *929 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174556,12 +174739,12 @@ x-webhooks: type: string enum: - typed - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174642,7 +174825,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &954 + assignee: &958 title: User type: object nullable: true @@ -174712,11 +174895,11 @@ x-webhooks: required: - login - id - enterprise: *889 - installation: *890 - issue: *923 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *927 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174795,12 +174978,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *889 - installation: *890 - issue: *923 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *927 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174880,8 +175063,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175694,11 +175877,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175792,8 +175975,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175873,11 +176056,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *889 - installation: *890 - issue: *925 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *929 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175956,12 +176139,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176041,11 +176224,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176123,11 +176306,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176237,11 +176420,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176323,9 +176506,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: &926 + enterprise: *893 + installation: *894 + marketplace_purchase: &930 title: Marketplace Purchase type: object required: @@ -176408,8 +176591,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *891 - previous_marketplace_purchase: &927 + organization: *895 + previous_marketplace_purchase: &931 title: Marketplace Purchase type: object properties: @@ -176489,7 +176672,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176569,10 +176752,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176655,7 +176838,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176737,10 +176920,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176822,7 +177005,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176903,8 +177086,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 marketplace_purchase: title: Marketplace Purchase type: object @@ -176986,9 +177169,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *891 - previous_marketplace_purchase: *927 - repository: *892 + organization: *895 + previous_marketplace_purchase: *931 + repository: *896 sender: *4 required: - action @@ -177068,12 +177251,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 - previous_marketplace_purchase: *927 - repository: *892 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 + previous_marketplace_purchase: *931 + repository: *896 sender: *4 required: - action @@ -177175,11 +177358,11 @@ x-webhooks: type: string required: - to - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177279,11 +177462,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177362,11 +177545,11 @@ x-webhooks: type: string enum: - removed - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177444,11 +177627,11 @@ x-webhooks: type: string enum: - added - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177524,7 +177707,7 @@ x-webhooks: required: - login - id - team: &928 + team: &932 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -177747,11 +177930,11 @@ x-webhooks: type: string enum: - removed - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177828,7 +178011,7 @@ x-webhooks: required: - login - id - team: *928 + team: *932 required: - action - scope @@ -177910,8 +178093,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *890 - merge_group: &930 + installation: *894 + merge_group: &934 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -177930,15 +178113,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *929 + head_commit: *933 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178024,10 +178207,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *890 - merge_group: *930 - organization: *891 - repository: *892 + installation: *894 + merge_group: *934 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178100,7 +178283,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 + enterprise: *893 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -178209,16 +178392,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *890 - organization: *891 + installation: *894 + organization: *895 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -178299,11 +178482,11 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178382,9 +178565,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - milestone: &933 + enterprise: *893 + installation: *894 + milestone: &937 title: Milestone description: A collection of related issues and pull requests. type: object @@ -178521,8 +178704,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178601,11 +178784,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178715,11 +178898,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178799,11 +178982,11 @@ x-webhooks: type: string enum: - opened - enterprise: *889 - installation: *890 - milestone: *933 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *937 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178882,11 +179065,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *918 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + blocked_user: *922 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178965,11 +179148,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *918 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + blocked_user: *922 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179045,7 +179228,7 @@ x-webhooks: enum: - created definition: *156 - enterprise: *889 + enterprise: *893 sender: *4 required: - action @@ -179125,8 +179308,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 sender: *4 required: - action @@ -179199,8 +179382,8 @@ x-webhooks: enum: - updated definition: *156 - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 sender: *4 required: - action @@ -179272,9 +179455,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 new_property_values: type: array @@ -179362,9 +179545,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - membership: &934 + enterprise: *893 + installation: *894 + membership: &938 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -179471,8 +179654,8 @@ x-webhooks: - role - organization_url - user - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179550,11 +179733,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179633,8 +179816,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -179750,10 +179933,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 - user: *918 + user: *922 required: - action - invitation @@ -179831,11 +180014,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179922,11 +180105,11 @@ x-webhooks: properties: from: type: string - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -180004,9 +180187,9 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 package: description: Information about the package. type: object @@ -180505,7 +180688,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &935 + items: &939 title: Ruby Gems metadata type: object properties: @@ -180600,7 +180783,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -180677,9 +180860,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 package: description: Information about the package. type: object @@ -181032,7 +181215,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *935 + items: *939 source_url: type: string format: uri @@ -181102,7 +181285,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -181278,12 +181461,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *889 + enterprise: *893 id: type: integer - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - id @@ -181360,7 +181543,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &936 + personal_access_token_request: &940 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -181506,10 +181689,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *889 - organization: *891 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181586,11 +181769,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *936 - enterprise: *889 - organization: *891 + personal_access_token_request: *940 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181666,11 +181849,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *936 - enterprise: *889 - organization: *891 + personal_access_token_request: *940 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181745,11 +181928,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *936 - organization: *891 - enterprise: *889 + personal_access_token_request: *940 + organization: *895 + enterprise: *893 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181854,7 +182037,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *937 + last_response: *941 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -181886,8 +182069,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 zen: description: Random string of GitHub zen. @@ -182132,10 +182315,10 @@ x-webhooks: - from required: - note - enterprise: *889 - installation: *890 - organization: *891 - project_card: &938 + enterprise: *893 + installation: *894 + organization: *895 + project_card: &942 title: Project Card type: object properties: @@ -182254,7 +182437,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -182335,11 +182518,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project_card: *938 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_card: *942 + repository: *896 sender: *4 required: - action @@ -182419,9 +182602,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 project_card: title: Project Card type: object @@ -182549,8 +182732,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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -182644,11 +182827,11 @@ x-webhooks: - from required: - note - enterprise: *889 - installation: *890 - organization: *891 - project_card: *938 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_card: *942 + repository: *896 sender: *4 required: - action @@ -182742,9 +182925,9 @@ x-webhooks: - from required: - column_id - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 project_card: allOf: - title: Project Card @@ -182934,7 +183117,7 @@ x-webhooks: type: string required: - after_id - repository: *892 + repository: *896 sender: *4 required: - action @@ -183014,10 +183197,10 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - organization: *891 - project: &940 + enterprise: *893 + installation: *894 + organization: *895 + project: &944 title: Project type: object properties: @@ -183141,7 +183324,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -183221,10 +183404,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project_column: &939 + enterprise: *893 + installation: *894 + organization: *895 + project_column: &943 title: Project Column type: object properties: @@ -183263,7 +183446,7 @@ x-webhooks: - name - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -183342,18 +183525,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -183443,11 +183626,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 + repository: *896 sender: *4 required: - action @@ -183527,11 +183710,11 @@ x-webhooks: type: string enum: - moved - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 + repository: *896 sender: *4 required: - action @@ -183611,11 +183794,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183695,18 +183878,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - project: *940 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -183808,11 +183991,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183891,11 +184074,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183976,8 +184159,8 @@ x-webhooks: type: string enum: - closed - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -184059,8 +184242,8 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -184142,8 +184325,8 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -184261,8 +184444,8 @@ x-webhooks: type: string to: type: string - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -184346,7 +184529,7 @@ x-webhooks: type: string enum: - archived - changes: &944 + changes: &948 type: object properties: archived_at: @@ -184360,9 +184543,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *890 - organization: *891 - projects_v2_item: &941 + installation: *894 + organization: *895 + projects_v2_item: &945 title: Projects v2 Item description: An item belonging to a project type: object @@ -184497,9 +184680,9 @@ x-webhooks: nullable: true to: type: string - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184581,9 +184764,9 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184664,9 +184847,9 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184772,7 +184955,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &942 + - &946 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -184794,7 +184977,7 @@ x-webhooks: required: - id - name - - &943 + - &947 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -184828,8 +185011,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *942 - - *943 + - *946 + - *947 required: - field_value - type: object @@ -184845,9 +185028,9 @@ x-webhooks: nullable: true required: - body - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184942,9 +185125,9 @@ x-webhooks: to: type: string nullable: true - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -185027,10 +185210,10 @@ x-webhooks: type: string enum: - restored - changes: *944 - installation: *890 - organization: *891 - projects_v2_item: *941 + changes: *948 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -185112,8 +185295,8 @@ x-webhooks: type: string enum: - reopened - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -185195,14 +185378,14 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 - projects_v2_status_update: &947 + installation: *894 + organization: *895 + projects_v2_status_update: &951 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *945 - required: *946 + properties: *949 + required: *950 sender: *4 required: - action @@ -185283,9 +185466,9 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 - projects_v2_status_update: *947 + installation: *894 + organization: *895 + projects_v2_status_update: *951 sender: *4 required: - action @@ -185421,9 +185604,9 @@ x-webhooks: type: string format: date nullable: true - installation: *890 - organization: *891 - projects_v2_status_update: *947 + installation: *894 + organization: *895 + projects_v2_status_update: *951 sender: *4 required: - action @@ -185494,10 +185677,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - repository @@ -185574,13 +185757,13 @@ x-webhooks: type: string enum: - assigned - assignee: *918 - enterprise: *889 - installation: *890 - number: &948 + assignee: *922 + enterprise: *893 + installation: *894 + number: &952 description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -187885,7 +188068,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -187967,11 +188150,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -190271,7 +190454,7 @@ x-webhooks: - draft reason: type: string - repository: *892 + repository: *896 sender: *4 required: - action @@ -190353,11 +190536,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -192657,7 +192840,7 @@ x-webhooks: - draft reason: type: string - repository: *892 + repository: *896 sender: *4 required: - action @@ -192739,13 +192922,13 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: &949 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: &953 allOf: - - *736 + - *740 - type: object properties: allow_auto_merge: @@ -192807,7 +192990,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *892 + repository: *896 sender: *4 required: - action @@ -192888,12 +193071,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -192973,11 +193156,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *889 - milestone: *718 - number: *948 - organization: *891 - pull_request: &950 + enterprise: *893 + milestone: *722 + number: *952 + organization: *895 + pull_request: &954 title: Pull Request type: object properties: @@ -195262,7 +195445,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -195341,11 +195524,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -197649,7 +197832,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *892 + repository: *896 sender: *4 required: - action @@ -197773,12 +197956,12 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -197858,11 +198041,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -200151,7 +200334,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -200231,11 +200414,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *889 - installation: *890 - label: *912 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + label: *916 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -202539,7 +202722,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -202620,10 +202803,10 @@ x-webhooks: type: string enum: - locked - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -204925,7 +205108,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -205005,12 +205188,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *889 - milestone: *718 - number: *948 - organization: *891 - pull_request: *950 - repository: *892 + enterprise: *893 + milestone: *722 + number: *952 + organization: *895 + pull_request: *954 + repository: *896 sender: *4 required: - action @@ -205089,12 +205272,12 @@ x-webhooks: type: string enum: - opened - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -205175,12 +205358,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -205260,12 +205443,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -205631,9 +205814,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -207825,7 +208008,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -207905,7 +208088,7 @@ x-webhooks: type: string enum: - deleted - comment: &952 + comment: &956 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -208190,9 +208373,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -210372,7 +210555,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -210452,11 +210635,11 @@ x-webhooks: type: string enum: - edited - changes: *951 - comment: *952 - enterprise: *889 - installation: *890 - organization: *891 + changes: *955 + comment: *956 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -212639,7 +212822,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -212720,9 +212903,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -214917,7 +215100,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 review: description: The review that was affected. type: object @@ -215164,9 +215347,9 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -217220,8 +217403,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 - review: &953 + repository: *896 + review: &957 description: The review that was affected. type: object properties: @@ -217454,12 +217637,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -219764,7 +219947,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_reviewer: title: User type: object @@ -219848,12 +220031,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -222165,7 +222348,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_team: title: Team description: Groups of organization members that gives permissions @@ -222357,12 +222540,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -224669,7 +224852,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_reviewer: title: User type: object @@ -224754,12 +224937,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -227057,7 +227240,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_team: title: Team description: Groups of organization members that gives permissions @@ -227238,9 +227421,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -229437,8 +229620,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 - review: *953 + repository: *896 + review: *957 sender: *4 required: - action @@ -229518,9 +229701,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -231612,7 +231795,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 sender: *4 thread: type: object @@ -231999,9 +232182,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -234079,7 +234262,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 sender: *4 thread: type: object @@ -234469,10 +234652,10 @@ x-webhooks: type: string before: type: string - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -236765,7 +236948,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -236847,11 +237030,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *954 - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + assignee: *958 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -239156,7 +239339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -239235,11 +239418,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *889 - installation: *890 - label: *912 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + label: *916 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -241534,7 +241717,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -241615,10 +241798,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -243905,7 +244088,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -244105,7 +244288,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *889 + enterprise: *893 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -244197,8 +244380,8 @@ x-webhooks: - url - author - committer - installation: *890 - organization: *891 + installation: *894 + organization: *895 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -244784,9 +244967,9 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 registry_package: type: object properties: @@ -245232,7 +245415,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *935 + items: *939 summary: type: string tag_name: @@ -245286,7 +245469,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -245364,9 +245547,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 registry_package: type: object properties: @@ -245674,7 +245857,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *935 + items: *939 summary: type: string tag_name: @@ -245723,7 +245906,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -245800,10 +245983,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - release: &955 + enterprise: *893 + installation: *894 + organization: *895 + release: &959 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -246121,7 +246304,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *892 + repository: *896 sender: *4 required: - action @@ -246198,11 +246381,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -246319,11 +246502,11 @@ x-webhooks: type: boolean required: - to - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -246401,9 +246584,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -246725,7 +246908,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *892 + repository: *896 sender: *4 required: - action @@ -246801,10 +246984,10 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - release: &956 + enterprise: *893 + installation: *894 + organization: *895 + release: &960 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -247123,7 +247306,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *892 + repository: *896 sender: *4 required: - action @@ -247199,11 +247382,11 @@ x-webhooks: type: string enum: - released - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -247279,11 +247462,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *889 - installation: *890 - organization: *891 - release: *956 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *960 + repository: *896 sender: *4 required: - action @@ -247359,11 +247542,11 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - repository_advisory: *789 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + repository_advisory: *793 sender: *4 required: - action @@ -247439,11 +247622,11 @@ x-webhooks: type: string enum: - reported - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - repository_advisory: *789 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + repository_advisory: *793 sender: *4 required: - action @@ -247519,10 +247702,10 @@ x-webhooks: type: string enum: - archived - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247599,10 +247782,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247680,10 +247863,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247767,10 +247950,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247882,10 +248065,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247957,10 +248140,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 status: type: string @@ -248041,10 +248224,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248121,10 +248304,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248218,10 +248401,10 @@ x-webhooks: - name required: - repository - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248301,10 +248484,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 sender: *4 required: @@ -248383,10 +248566,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 sender: *4 required: @@ -248465,10 +248648,10 @@ x-webhooks: type: string enum: - edited - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 changes: type: object @@ -248530,16 +248713,16 @@ x-webhooks: properties: added: type: array - items: *756 + items: *760 deleted: type: array - items: *756 + items: *760 updated: type: array items: type: object properties: - rule: *756 + rule: *760 changes: type: object properties: @@ -248773,10 +248956,10 @@ x-webhooks: - from required: - owner - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248854,10 +249037,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248935,7 +249118,7 @@ x-webhooks: type: string enum: - create - alert: &957 + alert: &961 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -249057,10 +249240,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249266,10 +249449,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249347,11 +249530,11 @@ x-webhooks: type: string enum: - reopen - alert: *957 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *961 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249550,10 +249733,10 @@ x-webhooks: enum: - fixed - open - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249631,7 +249814,7 @@ x-webhooks: type: string enum: - assigned - alert: &958 + alert: &962 type: object properties: number: *131 @@ -249774,10 +249957,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249855,11 +250038,11 @@ x-webhooks: type: string enum: - created - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249940,11 +250123,11 @@ x-webhooks: type: string enum: - created - alert: *958 - installation: *890 - location: *959 - organization: *891 - repository: *892 + alert: *962 + installation: *894 + location: *963 + organization: *895 + repository: *896 sender: *4 required: - location @@ -250182,11 +250365,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -250264,11 +250447,11 @@ x-webhooks: type: string enum: - reopened - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -250346,11 +250529,11 @@ x-webhooks: type: string enum: - resolved - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -250428,12 +250611,12 @@ x-webhooks: type: string enum: - unassigned - alert: *958 + alert: *962 assignee: *4 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -250511,11 +250694,11 @@ x-webhooks: type: string enum: - validated - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -250641,10 +250824,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *892 - enterprise: *889 - installation: *890 - organization: *891 + repository: *896 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -250722,11 +250905,11 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - security_advisory: &960 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + security_advisory: &964 description: The details of the security advisory, including summary, description, and severity. type: object @@ -250909,11 +251092,11 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - security_advisory: *960 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + security_advisory: *964 sender: *4 required: - action @@ -250986,10 +251169,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -251174,9 +251357,9 @@ x-webhooks: type: object properties: security_and_analysis: *449 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: *496 sender: *4 required: @@ -251255,12 +251438,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: &961 + sponsorship: &965 type: object properties: created_at: @@ -251561,12 +251744,12 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - sponsorship @@ -251654,12 +251837,12 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -251736,17 +251919,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &962 + effective_date: &966 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: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - sponsorship @@ -251820,7 +252003,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &963 + changes: &967 type: object properties: tier: @@ -251864,13 +252047,13 @@ x-webhooks: - from required: - tier - effective_date: *962 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + effective_date: *966 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -251947,13 +252130,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *963 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + changes: *967 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -252027,10 +252210,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252113,10 +252296,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252536,15 +252719,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *889 + enterprise: *893 id: description: The unique identifier of the status. type: integer - installation: *890 + installation: *894 name: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 sha: description: The Commit SHA. @@ -252659,9 +252842,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252750,9 +252933,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252841,9 +253024,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252932,9 +253115,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -253010,12 +253193,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - team: &964 + team: &968 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -253238,9 +253421,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -253698,7 +253881,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -253774,9 +253957,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -254234,7 +254417,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -254311,9 +254494,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -254771,7 +254954,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -254915,9 +255098,9 @@ x-webhooks: - from required: - permissions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -255375,7 +255558,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - changes @@ -255453,9 +255636,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -255913,7 +256096,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -255989,10 +256172,10 @@ x-webhooks: type: string enum: - started - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -256065,16 +256248,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *889 + enterprise: *893 inputs: type: object nullable: true additionalProperties: true - installation: *890 - organization: *891 + installation: *894 + organization: *895 ref: type: string - repository: *892 + repository: *896 sender: *4 workflow: type: string @@ -256156,10 +256339,10 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: allOf: @@ -256475,10 +256658,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: allOf: @@ -256817,10 +257000,10 @@ x-webhooks: type: string enum: - queued - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: type: object @@ -257034,10 +257217,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: type: object @@ -257253,12 +257436,12 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object @@ -258257,12 +258440,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object @@ -259246,12 +259429,12 @@ x-webhooks: type: string enum: - requested - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index c60516a0ac..e933346705 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -83512,6 +83512,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -86730,6 +86735,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -102753,6 +102763,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -109778,6 +109793,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -112996,6 +113016,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -184338,6 +184363,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -187556,6 +187586,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -203651,6 +203686,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -230681,6 +230721,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -239898,6 +239943,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -358711,7 +358761,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -415261,6 +415311,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -418479,6 +418534,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -443281,6 +443341,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -446603,6 +446668,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -454904,6 +454974,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -455848,6 +455923,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -459381,6 +459526,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -460325,6 +460475,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -463733,6 +463953,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -464494,426 +464719,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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 + "type": "string" }, "url": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -465038,409 +464915,470 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": false - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": false - }, - "url": { - "type": "string", - "format": "uri", - "nullable": false - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" + "assignees": { + "type": "array", + "items": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } }, - "license": { - "title": "License Simple", - "description": "License Simple", + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", "type": "object", "properties": { - "key": { + "url": { "type": "string", - "example": "mit" + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" }, - "name": { + "html_url": { "type": "string", - "example": "MIT License" + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" }, - "url": { + "labels_url": { "type": "string", - "nullable": true, "format": "uri", - "example": "https://api.github.com/licenses/mit" + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" + "id": { + "type": "integer", + "example": 1002604 }, "node_id": { "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" }, - "html_url": { + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", "type": "string", - "format": "uri" + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", + "type": "string" + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } }, "required": [ - "key", - "name", + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", "url", - "spdx_id", - "node_id" + "created_at", + "updated_at" ], "nullable": true }, - "forks": { + "locked": { + "type": "boolean" + }, + "active_lock_reason": { + "type": "string", + "nullable": true + }, + "comments": { "type": "integer" }, - "permissions": { + "pull_request": { "type": "object", "properties": { - "admin": { - "type": "boolean" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": false }, - "pull": { - "type": "boolean" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "triage": { - "type": "boolean" + "html_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "push": { - "type": "boolean" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": false }, - "maintain": { - "type": "boolean" + "url": { + "type": "string", + "format": "uri", + "nullable": false } }, "required": [ - "admin", - "pull", - "push" + "diff_url", + "html_url", + "patch_url", + "url" ] }, - "owner": { + "closed_at": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "format": "date-time" + }, + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -465562,544 +465500,174 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", - "nullable": true - }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { - "type": "array", - "items": { - "type": "string" - } - }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { + "body_html": { "type": "string" }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" + "body_text": { + "type": "string" }, - "starred_at": { + "timeline_url": { "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" + "format": "uri" }, - "code_search_index_status": { + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", "type": "object", - "description": "The status of the code search index for this repository", + "nullable": true, "properties": { - "lexical_search_ok": { - "type": "boolean" + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." }, - "lexical_commit_sha": { - "type": "string" + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] }, - "owner": { - "oneOf": [ - { + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -466223,444 +465791,513 @@ "url" ] }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" }, - "checks": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" }, - "metadata": { - "type": "string" + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true }, - "contents": { - "type": "string" + "fork": { + "type": "boolean" }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", - "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", - "type": "object", - "properties": { - "name": { - "nullable": true, - "type": "string" + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" }, - "email": { - "nullable": true, - "type": "string" + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" }, - "login": { + "assignees_url": { "type": "string", - "example": "octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" }, - "id": { - "type": "integer", - "format": "int64", - "example": 1 + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" }, - "node_id": { + "branches_url": { "type": "string", - "example": "MDQ6VXNlcjE=" + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" }, - "avatar_url": { + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { "type": "string", "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" }, - "gravatar_id": { + "deployments_url": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", - "nullable": true + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" }, - "url": { + "downloads_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" }, - "html_url": { + "events_url": { "type": "string", "format": "uri", - "example": "https://github.com/octocat" + "example": "http://api.github.com/repos/octocat/Hello-World/events" }, - "followers_url": { + "forks_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/followers" + "example": "http://api.github.com/repos/octocat/Hello-World/forks" }, - "following_url": { + "git_commits_url": { "type": "string", - "example": "https://api.github.com/users/octocat/following{/other_user}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" }, - "gists_url": { + "git_refs_url": { "type": "string", - "example": "https://api.github.com/users/octocat/gists{/gist_id}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" }, - "starred_url": { + "git_tags_url": { "type": "string", - "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" }, - "subscriptions_url": { + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "example": "http://api.github.com/repos/octocat/Hello-World/languages" }, - "organizations_url": { + "merges_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "example": "http://api.github.com/repos/octocat/Hello-World/merges" }, - "repos_url": { + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" }, - "events_url": { + "statuses_url": { "type": "string", - "example": "https://api.github.com/users/octocat/events{/privacy}" + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" }, - "received_events_url": { + "subscribers_url": { "type": "string", "format": "uri", - "example": "https://api.github.com/users/octocat/received_events" + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" }, - "type": { + "subscription_url": { "type": "string", - "example": "User" + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" }, - "site_admin": { + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { "type": "boolean" }, - "starred_at": { + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", "type": "string", - "example": "\"2020-07-09T00:17:55Z\"" + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" }, - "user_view_type": { + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { "type": "string", - "example": "public" + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } } }, "required": [ - "avatar_url", + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", "events_url", - "followers_url", - "following_url", - "gists_url", - "gravatar_id", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", "html_url", "id", "node_id", - "login", - "organizations_url", - "received_events_url", - "repos_url", - "site_admin", - "starred_url", - "subscriptions_url", - "type", - "url" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "issue_url": { - "type": "string", - "format": "uri" - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" ] }, "performed_via_github_app": { @@ -466811,531 +466448,1132 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true - } - }, - "required": [ - "id", - "node_id", - "html_url", - "issue_url", - "user", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 - } - ], - "nullable": true - }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", "type": "object", "properties": { - "id": { - "description": "Unique identifier for the option.", + "issue_field_id": { + "description": "Unique identifier for the issue field.", "type": "integer", "format": "int64", "example": 1 }, - "name": { - "description": "The name of the option", + "issue_field_name": { + "description": "The human-readable name of the issue field.", "type": "string", - "example": "High" + "example": "Priority" }, - "color": { - "description": "The color of the option", + "node_id": { "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ], - "nullable": true - }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "required": [ - "id", - "name", - "color" - ] + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } }, - "nullable": true + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } + } + }, + "required": [ + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", + "id", + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] + }, + { + "type": "object", + "properties": {} } - }, - "required": [ - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" ] }, "examples": { @@ -470482,6 +470720,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -473554,6 +473797,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -478572,6 +478820,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -481751,6 +482004,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -484988,6 +485246,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -488245,6 +488508,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -491619,8 +491887,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -492079,20 +492833,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -492105,8 +492863,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -492565,24 +493323,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -492595,8 +493796,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -493528,8 +494729,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -493988,7 +495189,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -494112,217 +495364,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -494445,10 +496349,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -494461,8 +496719,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -494921,32 +497179,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -494959,8 +497225,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -495419,14 +497685,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -495439,8 +497731,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -495899,40 +498191,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -495945,8 +498241,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -496405,40 +498701,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -496451,8 +498751,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -496911,546 +499211,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -497628,6 +499462,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -497735,12 +499574,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -497752,18 +499593,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -498024,6 +499868,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -498131,12 +499980,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -498148,18 +499999,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -498530,6 +500384,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -498637,12 +500496,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -498654,18 +500515,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -503494,6 +505358,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -507626,6 +509495,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -510787,6 +512661,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -513944,6 +515823,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -517180,6 +519064,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -528641,6 +530530,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -530943,132 +532837,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -531077,13 +534470,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -531542,12 +534934,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -638193,6 +641653,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -679865,6 +683330,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -706281,6 +709751,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -722795,6 +726270,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -726013,6 +729493,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -732909,6 +736394,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -736127,6 +739617,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -743033,6 +746528,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -746251,6 +749751,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -763118,6 +766623,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -776988,6 +780498,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -780206,6 +783721,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -787098,6 +790618,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -790316,6 +793841,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1024599,6 +1028129,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1027448,6 +1030983,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1032569,6 +1036109,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1035418,6 +1038963,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1040539,6 +1044089,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1044115,6 +1047670,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1048509,6 +1052069,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1052085,6 +1055650,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1055737,6 +1059307,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1059464,6 +1063039,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1063383,6 +1066963,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1067120,6 +1070705,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1071030,6 +1074620,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1074794,6 +1078389,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1078722,6 +1082322,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1082552,6 +1086157,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1086339,6 +1089949,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1090052,6 +1093667,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1093140,6 +1096760,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1095941,6 +1099566,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1100359,6 +1103989,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1104099,6 +1107734,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1107706,6 +1111346,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1110523,6 +1114168,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1114245,6 +1117895,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1118125,6 +1121780,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1121847,6 +1125507,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1125632,6 +1129297,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1129324,6 +1132994,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1133045,6 +1136720,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1492763,6 +1496443,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1496339,6 +1500024,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1500734,6 +1504424,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1504310,6 +1508005,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1508705,6 +1512405,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1512281,6 +1515986,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1516676,6 +1520386,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1520252,6 +1523967,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml index 27daec53d5..3e72e9a366 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -1009,7 +1009,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &791 + - &795 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4229,7 +4229,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &800 + schema: &804 title: Scim Error description: Scim Error type: object @@ -11597,7 +11597,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &801 + '401': &805 description: Authorization failure '404': *6 x-github: @@ -24572,7 +24572,7 @@ paths: - *169 rules: type: array - items: &756 + items: &760 title: Repository Rule type: object description: A repository rule. @@ -24581,7 +24581,7 @@ paths: - *175 - *176 - *177 - - &754 + - &758 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25188,14 +25188,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &769 + state: &773 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &770 + resolution: &774 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -25312,8 +25312,8 @@ paths: pull request. ' - oneOf: &771 - - &773 + oneOf: &775 + - &777 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -25371,7 +25371,7 @@ paths: - blob_url - commit_sha - commit_url - - &774 + - &778 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -25426,7 +25426,7 @@ paths: - page_url - commit_sha - commit_url - - &775 + - &779 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -25446,7 +25446,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &776 + - &780 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -25466,7 +25466,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &777 + - &781 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -25486,7 +25486,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &778 + - &782 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -25500,7 +25500,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &779 + - &783 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -25514,7 +25514,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &780 + - &784 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -25528,7 +25528,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &781 + - &785 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -25548,7 +25548,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &782 + - &786 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -25568,7 +25568,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &783 + - &787 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -25588,7 +25588,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &784 + - &788 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -25608,7 +25608,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &785 + - &789 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -29486,7 +29486,7 @@ paths: properties: action: type: string - discussion: &909 + discussion: &913 title: Discussion description: A Discussion in a repository. type: object @@ -30224,7 +30224,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &828 + sub_issues_summary: &832 title: Sub-issues Summary type: object properties: @@ -30311,7 +30311,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &711 + properties: &712 pinned_at: type: string format: date-time @@ -30323,7 +30323,7 @@ paths: properties: *20 required: *21 nullable: true - required: &712 + required: &713 - pinned_at - pinned_by nullable: true @@ -30337,7 +30337,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &829 + issue_dependencies_summary: &833 title: Issue Dependencies Summary type: object properties: @@ -30356,7 +30356,7 @@ paths: - total_blocking issue_field_values: type: array - items: &695 + items: &696 title: Issue Field Value description: A value assigned to an issue field type: object @@ -30367,6 +30367,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -31144,7 +31149,7 @@ paths: type: string release: allOf: - - &747 + - &751 title: Release description: A release. type: object @@ -31215,7 +31220,7 @@ paths: author: *4 assets: type: array - items: &748 + items: &752 title: Release Asset description: Data related to a release. type: object @@ -34972,7 +34977,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &721 + - &725 name: all description: If `true`, show notifications marked as read. in: query @@ -34980,7 +34985,7 @@ paths: schema: type: boolean default: false - - &722 + - &726 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -34990,7 +34995,7 @@ paths: type: boolean default: false - *235 - - &723 + - &727 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -35526,7 +35531,7 @@ paths: - url - subscription_url examples: - default: &724 + default: &728 value: - id: '1' repository: @@ -36298,7 +36303,7 @@ paths: type: array items: *160 examples: - default: &730 + default: &734 value: - property_name: environment value: production @@ -36348,7 +36353,7 @@ paths: required: - properties examples: - default: &731 + default: &735 value: properties: - property_name: environment @@ -42975,12 +42980,12 @@ paths: required: - subject_digests examples: - default: &867 + default: &871 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &868 + withPredicateType: &872 value: subject_digests: - sha256:abc123 @@ -43024,7 +43029,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &869 + default: &873 value: attestations_subject_digests: - sha256:abc: @@ -55890,7 +55895,7 @@ paths: parameters: - *89 - *411 - - &849 + - &853 name: repo_name description: repo_name parameter in: path @@ -57105,7 +57110,7 @@ paths: - nuget - container - *89 - - &850 + - &854 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -57146,7 +57151,7 @@ paths: default: *417 '403': *29 '401': *25 - '400': &852 + '400': &856 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -59354,7 +59359,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &945 + properties: &949 id: type: number description: The unique identifier of the status update. @@ -59402,7 +59407,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &946 + required: &950 - id - node_id - created_at @@ -59831,7 +59836,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: &733 + auto_merge: &737 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60207,7 +60212,7 @@ paths: - updated_at - project_url examples: - default: &873 + default: &877 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -60384,7 +60389,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &874 + items: &878 type: object properties: name: @@ -60421,7 +60426,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &875 + iteration_configuration: &879 type: object description: The configuration for iteration fields. properties: @@ -60471,7 +60476,7 @@ paths: value: name: Due date data_type: date - single_select_field: &876 + single_select_field: &880 summary: Create a single select field value: name: Priority @@ -60498,7 +60503,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &877 + iteration_field: &881 summary: Create an iteration field value: name: Sprint @@ -60524,7 +60529,7 @@ paths: application/json: schema: *438 examples: - text_field: &878 + text_field: &882 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -60533,7 +60538,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: &879 + number_field: &883 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -60542,7 +60547,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: &880 + date_field: &884 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -60551,7 +60556,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: &881 + single_select_field: &885 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -60585,7 +60590,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &882 + iteration_field: &886 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -60631,7 +60636,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *434 - - &883 + - &887 name: field_id description: The unique identifier of the field. in: path @@ -60646,7 +60651,7 @@ paths: application/json: schema: *438 examples: - default: &884 + default: &888 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61843,7 +61848,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &864 + schema: &868 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62020,7 +62025,7 @@ paths: parameters: - *434 - *89 - - &885 + - &889 name: view_number description: The number that identifies the project view. in: path @@ -63842,7 +63847,7 @@ paths: - *89 - *17 - *19 - - &755 + - &759 name: targets description: | A comma-separated list of rule targets to filter by. @@ -64058,7 +64063,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &757 + - &761 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -64070,14 +64075,14 @@ paths: x-multi-segment: true - *322 - *107 - - &758 + - &762 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &759 + - &763 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -64090,7 +64095,7 @@ paths: - bypass - all default: all - - &760 + - &764 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -64113,7 +64118,7 @@ paths: description: Response content: application/json: - schema: &761 + schema: &765 title: Rule Suites description: Response type: array @@ -64168,7 +64173,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &762 + default: &766 value: - id: 21 actor_id: 12 @@ -64212,7 +64217,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &763 + - &767 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -64228,7 +64233,7 @@ paths: description: Response content: application/json: - schema: &764 + schema: &768 title: Rule Suite description: Response type: object @@ -64327,7 +64332,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &765 + default: &769 value: id: 21 actor_id: 12 @@ -64663,7 +64668,7 @@ paths: - *112 - *19 - *17 - - &767 + - &771 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -64673,7 +64678,7 @@ paths: required: false schema: type: string - - &768 + - &772 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -64887,7 +64892,7 @@ paths: application/json: schema: type: array - items: &789 + items: &793 description: A repository security advisory. type: object properties: @@ -65159,7 +65164,7 @@ paths: - private_fork additionalProperties: false examples: - default: &790 + default: &794 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -67177,7 +67182,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &831 + response-if-user-is-a-team-maintainer: &835 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -67242,7 +67247,7 @@ paths: application/json: schema: *490 examples: - response-if-users-membership-with-team-is-now-pending: &832 + response-if-users-membership-with-team-is-now-pending: &836 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -67356,7 +67361,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &833 + schema: &837 title: Team Repository description: A team's access to a repository. type: object @@ -68117,7 +68122,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: &834 + response-if-child-teams-exist: &838 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -73785,7 +73790,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &903 + properties: &907 url: type: string format: uri @@ -73870,7 +73875,7 @@ paths: nullable: true properties: *223 required: *224 - required: &904 + required: &908 - id - node_id - sha @@ -80271,7 +80276,7 @@ paths: check. type: array items: *233 - deployment: &896 + deployment: &900 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81183,7 +81188,7 @@ paths: type: string format: date-time nullable: true - head_commit: &929 + head_commit: &933 title: Simple Commit description: A commit. type: object @@ -82723,7 +82728,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -85452,14 +85457,14 @@ paths: type: integer machines: type: array - items: &839 + items: &843 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *595 required: *596 examples: - default: &840 + default: &844 value: total_count: 2 machines: @@ -87097,7 +87102,7 @@ paths: type: array items: *607 examples: - default: &740 + default: &744 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -87388,7 +87393,7 @@ paths: type: array items: *611 examples: - default: &732 + default: &736 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87946,7 +87951,7 @@ paths: application/json: schema: *607 examples: - default: &717 + default: &721 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88605,7 +88610,7 @@ paths: application/json: schema: type: array - items: &794 + items: &798 title: Status description: The status of a commit. type: object @@ -89574,7 +89579,7 @@ paths: - size - type - url - - &745 + - &749 title: Content File description: Content File type: object @@ -90188,7 +90193,7 @@ paths: items: type: object properties: - placeholder_id: &786 + placeholder_id: &790 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -96888,7 +96893,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &937 + last_response: &941 title: Hook Response type: object properties: @@ -97940,7 +97945,7 @@ paths: parameters: - *491 - *492 - - &862 + - &866 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -98525,7 +98530,7 @@ paths: type: array items: *681 examples: - default: &854 + default: &858 value: - id: 1 repository: @@ -98971,7 +98976,7 @@ paths: type: array items: *228 examples: - default: &694 + default: &695 value: - id: 1 node_id: MDU6SXNzdWUx @@ -99252,7 +99257,7 @@ paths: application/json: schema: *228 examples: - default: &691 + default: &692 value: id: 1 node_id: MDU6SXNzdWUx @@ -99442,7 +99447,7 @@ paths: type: array items: *684 examples: - default: &693 + default: &694 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -99897,7 +99902,7 @@ paths: application/json: schema: type: array - items: &690 + items: &691 title: Issue Event description: Issue Event type: object @@ -100050,6 +100055,35 @@ paths: required: - from - to + issue_type: &690 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *690 author_association: *225 lock_reason: type: string @@ -100261,7 +100295,7 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: default: value: @@ -100490,7 +100524,7 @@ paths: parameters: - *491 - *492 - - &692 + - &693 name: issue_number description: The number that identifies the issue. in: path @@ -100506,7 +100540,7 @@ paths: examples: default: summary: Issue - value: *691 + value: *692 pinned_comment: summary: Issue with pinned comment value: @@ -100715,7 +100749,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -100838,9 +100872,13 @@ paths: description: Response content: application/json: - schema: *228 + schema: + allOf: + - *228 + - type: object + properties: {} examples: - default: *691 + default: *692 '422': *15 '503': *200 '403': *29 @@ -100866,7 +100904,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -100894,7 +100932,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100912,7 +100950,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: content: application/json: @@ -100939,7 +100977,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100963,7 +101001,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: assignee in: path required: true @@ -101005,7 +101043,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *235 - *17 - *19 @@ -101018,7 +101056,7 @@ paths: type: array items: *684 examples: - default: *693 + default: *694 headers: Link: *47 '404': *6 @@ -101053,7 +101091,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -101114,7 +101152,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101126,7 +101164,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '301': *497 @@ -101161,7 +101199,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -101185,7 +101223,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -101226,7 +101264,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -101240,7 +101278,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '301': *497 '400': *14 '401': *25 @@ -101274,7 +101312,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101286,7 +101324,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '301': *497 @@ -101310,7 +101348,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -101324,7 +101362,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &698 + - &699 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -101378,7 +101416,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &699 + - &700 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -101514,7 +101552,7 @@ paths: - performed_via_github_app - assignee - assigner - - &700 + - &701 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -101565,7 +101603,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &701 + - &702 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -101616,7 +101654,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &702 + - &703 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -101670,7 +101708,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &703 + - &704 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -101717,7 +101755,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &705 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -101764,7 +101802,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &705 + - &706 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -101824,7 +101862,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &707 title: Locked Issue Event description: Locked Issue Event type: object @@ -101872,7 +101910,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -101938,7 +101976,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &709 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -102004,7 +102042,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -102070,7 +102108,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -102126,6 +102164,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &714 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *690 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &715 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + prev_issue_type: *690 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &716 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *690 + prev_issue_type: *690 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -102180,7 +102355,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -102190,15 +102365,17 @@ paths: application/json: schema: type: array - items: *695 + items: *696 examples: - default: &696 + default: &697 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -102207,14 +102384,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -102260,7 +102440,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -102330,9 +102510,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *695 + items: *696 examples: - default: *696 + default: *697 '400': *14 '403': *29 '404': *6 @@ -102370,7 +102550,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -102435,9 +102615,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *695 + items: *696 examples: - default: *696 + default: *697 '400': *14 '403': *29 '404': *6 @@ -102470,7 +102650,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *399 responses: '204': @@ -102498,7 +102678,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -102510,7 +102690,7 @@ paths: type: array items: *227 examples: - default: &697 + default: &698 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -102548,7 +102728,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -102593,7 +102773,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 '301': *497 '404': *6 '410': *683 @@ -102615,7 +102795,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -102677,7 +102857,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 '301': *497 '404': *6 '410': *683 @@ -102699,7 +102879,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '204': description: Response @@ -102726,7 +102906,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: name in: path required: true @@ -102774,7 +102954,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: false content: @@ -102822,7 +103002,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '204': description: Response @@ -102854,7 +103034,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 responses: '200': description: Response @@ -102862,7 +103042,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '301': *497 '404': *6 '410': *683 @@ -102884,7 +103064,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -102936,7 +103116,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103001,7 +103181,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *687 responses: '204': @@ -103033,7 +103213,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103057,7 +103237,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -103092,7 +103272,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -103104,7 +103284,7 @@ paths: type: array items: *228 examples: - default: *694 + default: *695 headers: Link: *47 '404': *6 @@ -103138,7 +103318,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103167,7 +103347,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -103196,7 +103376,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 requestBody: required: true content: @@ -103229,7 +103409,7 @@ paths: application/json: schema: *228 examples: - default: *691 + default: *692 '403': *29 '404': *6 '422': *7 @@ -103253,7 +103433,7 @@ paths: parameters: - *491 - *492 - - *692 + - *693 - *17 - *19 responses: @@ -103268,7 +103448,6 @@ paths: description: Timeline Event type: object anyOf: - - *698 - *699 - *700 - *701 @@ -103281,6 +103460,7 @@ paths: - *708 - *709 - *710 + - *711 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -103341,8 +103521,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true required: - event @@ -103597,7 +103777,7 @@ paths: type: string comments: type: array - items: &734 + items: &738 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -103946,6 +104126,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *714 + - *715 + - *716 examples: default: value: @@ -104129,7 +104312,7 @@ paths: application/json: schema: type: array - items: &713 + items: &717 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -104232,9 +104415,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *717 examples: - default: &714 + default: &718 value: id: 1 key: ssh-rsa AAA... @@ -104270,7 +104453,7 @@ paths: parameters: - *491 - *492 - - &715 + - &719 name: key_id description: The unique identifier of the key. in: path @@ -104282,9 +104465,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *717 examples: - default: *714 + default: *718 '404': *6 x-github: githubCloudOnly: false @@ -104304,7 +104487,7 @@ paths: parameters: - *491 - *492 - - *715 + - *719 responses: '204': description: Response @@ -104337,7 +104520,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 headers: Link: *47 '404': *6 @@ -104397,7 +104580,7 @@ paths: application/json: schema: *227 examples: - default: &716 + default: &720 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -104443,7 +104626,7 @@ paths: application/json: schema: *227 examples: - default: *716 + default: *720 '404': *6 x-github: githubCloudOnly: false @@ -104896,7 +105079,7 @@ paths: application/json: schema: *607 examples: - default: *717 + default: *721 '204': description: Response when already merged '404': @@ -104963,7 +105146,7 @@ paths: application/json: schema: type: array - items: &718 + items: &722 title: Milestone description: A collection of related issues and pull requests. type: object @@ -105065,9 +105248,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: &719 + default: &723 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -105128,7 +105311,7 @@ paths: parameters: - *491 - *492 - - &720 + - &724 name: milestone_number description: The number that identifies the milestone. in: path @@ -105140,9 +105323,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: *719 + default: *723 '404': *6 x-github: githubCloudOnly: false @@ -105161,7 +105344,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 requestBody: required: false content: @@ -105199,9 +105382,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *722 examples: - default: *719 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105219,7 +105402,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 responses: '204': description: Response @@ -105242,7 +105425,7 @@ paths: parameters: - *491 - *492 - - *720 + - *724 - *17 - *19 responses: @@ -105254,7 +105437,7 @@ paths: type: array items: *227 examples: - default: *697 + default: *698 headers: Link: *47 x-github: @@ -105275,10 +105458,10 @@ paths: parameters: - *491 - *492 - - *721 - - *722 + - *725 + - *726 - *235 - - *723 + - *727 - *17 - *19 responses: @@ -105290,7 +105473,7 @@ paths: type: array items: *255 examples: - default: *724 + default: *728 headers: Link: *47 x-github: @@ -105380,7 +105563,7 @@ paths: description: Response content: application/json: - schema: &725 + schema: &729 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -105505,7 +105688,7 @@ paths: - custom_404 - public examples: - default: &726 + default: &730 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -105601,9 +105784,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *729 examples: - default: *726 + default: *730 '422': *15 '409': *121 x-github: @@ -105772,7 +105955,7 @@ paths: application/json: schema: type: array - items: &727 + items: &731 title: Page Build description: Page Build type: object @@ -105919,9 +106102,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *731 examples: - default: &728 + default: &732 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -105981,9 +106164,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *731 examples: - default: *728 + default: *732 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106111,7 +106294,7 @@ paths: parameters: - *491 - *492 - - &729 + - &733 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -106171,7 +106354,7 @@ paths: parameters: - *491 - *492 - - *729 + - *733 responses: '204': *130 '404': *6 @@ -106551,7 +106734,7 @@ paths: type: array items: *160 examples: - default: *730 + default: *734 '403': *29 '404': *6 x-github: @@ -106590,7 +106773,7 @@ paths: required: - properties examples: - default: *731 + default: *735 responses: '204': description: No Content when custom property values are successfully created @@ -106691,7 +106874,7 @@ paths: type: array items: *611 examples: - default: *732 + default: *736 headers: Link: *47 '304': *37 @@ -106789,7 +106972,7 @@ paths: description: Response content: application/json: - schema: &736 + schema: &740 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -106989,7 +107172,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: *733 + auto_merge: *737 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -107079,7 +107262,7 @@ paths: - merged_by - review_comments examples: - default: &737 + default: &741 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -107616,9 +107799,9 @@ paths: application/json: schema: type: array - items: *734 + items: *738 examples: - default: &739 + default: &743 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -107703,9 +107886,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: - default: &735 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -107804,9 +107987,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: - default: *735 + default: *739 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108009,7 +108192,7 @@ paths: parameters: - *491 - *492 - - &738 + - &742 name: pull_number description: The number that identifies the pull request. in: path @@ -108022,9 +108205,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *736 + schema: *740 examples: - default: *737 + default: *741 '304': *37 '404': *6 '406': @@ -108061,7 +108244,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -108103,9 +108286,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *740 examples: - default: *737 + default: *741 '422': *15 '403': *29 x-github: @@ -108129,7 +108312,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -108231,7 +108414,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *252 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -108252,9 +108435,9 @@ paths: application/json: schema: type: array - items: *734 + items: *738 examples: - default: *739 + default: *743 headers: Link: *47 x-github: @@ -108289,7 +108472,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -108394,7 +108577,7 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: example-for-a-multi-line-comment: value: @@ -108484,7 +108667,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *244 requestBody: required: true @@ -108507,7 +108690,7 @@ paths: description: Response content: application/json: - schema: *734 + schema: *738 examples: default: value: @@ -108595,7 +108778,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -108607,7 +108790,7 @@ paths: type: array items: *607 examples: - default: *740 + default: *744 headers: Link: *47 x-github: @@ -108639,7 +108822,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -108689,7 +108872,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 responses: '204': description: Response if pull request has been merged @@ -108714,7 +108897,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -108827,7 +109010,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 responses: '200': description: Response @@ -108904,7 +109087,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -109479,7 +109662,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: true content: @@ -110000,7 +110183,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 - *17 - *19 responses: @@ -110010,7 +110193,7 @@ paths: application/json: schema: type: array - items: &741 + items: &745 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -110163,7 +110346,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -110249,9 +110432,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: &743 + default: &747 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -110316,8 +110499,8 @@ paths: parameters: - *491 - *492 - - *738 - - &742 + - *742 + - &746 name: review_id description: The unique identifier of the review. in: path @@ -110329,9 +110512,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: &744 + default: &748 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -110392,8 +110575,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -110416,7 +110599,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: default: value: @@ -110480,16 +110663,16 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 responses: '200': description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: *743 + default: *747 '422': *7 '404': *6 x-github: @@ -110518,8 +110701,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 - *17 - *19 responses: @@ -110756,8 +110939,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -110785,7 +110968,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: default: value: @@ -110850,8 +111033,8 @@ paths: parameters: - *491 - *492 - - *738 - *742 + - *746 requestBody: required: true content: @@ -110886,9 +111069,9 @@ paths: description: Response content: application/json: - schema: *741 + schema: *745 examples: - default: *744 + default: *748 '404': *6 '422': *7 '403': *29 @@ -110912,7 +111095,7 @@ paths: parameters: - *491 - *492 - - *738 + - *742 requestBody: required: false content: @@ -110989,9 +111172,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *749 examples: - default: &746 + default: &750 value: type: file encoding: base64 @@ -111054,9 +111237,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *749 examples: - default: *746 + default: *750 '404': *6 '422': *15 x-github: @@ -111089,7 +111272,7 @@ paths: application/json: schema: type: array - items: *747 + items: *751 examples: default: value: @@ -111260,9 +111443,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: &751 + default: &755 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -111369,7 +111552,7 @@ paths: parameters: - *491 - *492 - - &749 + - &753 name: asset_id description: The unique identifier of the asset. in: path @@ -111381,9 +111564,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: &750 + default: &754 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -111436,7 +111619,7 @@ paths: parameters: - *491 - *492 - - *749 + - *753 requestBody: required: false content: @@ -111464,9 +111647,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: *750 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111484,7 +111667,7 @@ paths: parameters: - *491 - *492 - - *749 + - *753 responses: '204': description: Response @@ -111602,9 +111785,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': *6 x-github: githubCloudOnly: false @@ -111636,9 +111819,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': *6 x-github: githubCloudOnly: false @@ -111662,7 +111845,7 @@ paths: parameters: - *491 - *492 - - &752 + - &756 name: release_id description: The unique identifier of the release. in: path @@ -111676,9 +111859,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '401': description: Unauthorized x-github: @@ -111698,7 +111881,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 requestBody: required: false content: @@ -111762,9 +111945,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *751 examples: - default: *751 + default: *755 '404': description: Not Found if the discussion category name is invalid content: @@ -111787,7 +111970,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 responses: '204': description: Response @@ -111810,7 +111993,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - *17 - *19 responses: @@ -111820,7 +112003,7 @@ paths: application/json: schema: type: array - items: *748 + items: *752 examples: default: value: @@ -111904,7 +112087,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - name: name in: query required: true @@ -111930,7 +112113,7 @@ paths: description: Response for successful upload content: application/json: - schema: *748 + schema: *752 examples: response-for-successful-upload: value: @@ -111987,7 +112170,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -112036,7 +112219,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 requestBody: required: true content: @@ -112099,7 +112282,7 @@ paths: parameters: - *491 - *492 - - *752 + - *756 - *687 responses: '204': @@ -112143,7 +112326,7 @@ paths: oneOf: - allOf: - *174 - - &753 + - &757 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -112164,67 +112347,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *175 - - *753 + - *757 - allOf: - *176 - - *753 + - *757 - allOf: - *177 - - *753 + - *757 - allOf: - - *754 - - *753 + - *758 + - *757 - allOf: - *178 - - *753 + - *757 - allOf: - *179 - - *753 + - *757 - allOf: - *180 - - *753 + - *757 - allOf: - *181 - - *753 + - *757 - allOf: - *182 - - *753 + - *757 - allOf: - *183 - - *753 + - *757 - allOf: - *184 - - *753 + - *757 - allOf: - *185 - - *753 + - *757 - allOf: - *186 - - *753 + - *757 - allOf: - *187 - - *753 + - *757 - allOf: - *188 - - *753 + - *757 - allOf: - *189 - - *753 + - *757 - allOf: - *190 - - *753 + - *757 - allOf: - *191 - - *753 + - *757 - allOf: - *192 - - *753 + - *757 - allOf: - *193 - - *753 + - *757 - allOf: - *194 - - *753 + - *757 examples: default: value: @@ -112275,7 +112458,7 @@ paths: schema: type: boolean default: true - - *755 + - *759 responses: '200': description: Response @@ -112360,7 +112543,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *756 + items: *760 required: - name - enforcement @@ -112393,7 +112576,7 @@ paths: application/json: schema: *195 examples: - default: &766 + default: &770 value: id: 42 name: super cool ruleset @@ -112443,11 +112626,11 @@ paths: parameters: - *491 - *492 - - *757 + - *761 - *107 - - *758 - - *759 - - *760 + - *762 + - *763 + - *764 - *17 - *19 responses: @@ -112455,9 +112638,9 @@ paths: description: Response content: application/json: - schema: *761 + schema: *765 examples: - default: *762 + default: *766 '404': *6 '500': *40 x-github: @@ -112480,15 +112663,15 @@ paths: parameters: - *491 - *492 - - *763 + - *767 responses: '200': description: Response content: application/json: - schema: *764 + schema: *768 examples: - default: *765 + default: *769 '404': *6 '500': *40 x-github: @@ -112539,7 +112722,7 @@ paths: application/json: schema: *195 examples: - default: *766 + default: *770 '404': *6 '500': *40 put: @@ -112592,7 +112775,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *756 + items: *760 examples: default: value: @@ -112622,7 +112805,7 @@ paths: application/json: schema: *195 examples: - default: *766 + default: *770 '404': *6 '422': *15 '500': *40 @@ -112790,8 +112973,8 @@ paths: - *112 - *19 - *17 - - *767 - - *768 + - *771 + - *772 - *465 - *466 - *467 @@ -112804,7 +112987,7 @@ paths: application/json: schema: type: array - items: &772 + items: &776 type: object properties: number: *131 @@ -112823,8 +113006,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *769 - resolution: *770 + state: *773 + resolution: *774 resolved_at: type: string format: date-time @@ -112930,7 +113113,7 @@ paths: pull request. ' - oneOf: *771 + oneOf: *775 nullable: true has_more_locations: type: boolean @@ -113103,7 +113286,7 @@ paths: description: Response content: application/json: - schema: *772 + schema: *776 examples: default: value: @@ -113167,8 +113350,8 @@ paths: schema: type: object properties: - state: *769 - resolution: *770 + state: *773 + resolution: *774 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -113212,7 +113395,7 @@ paths: description: Response content: application/json: - schema: *772 + schema: *776 examples: default: value: @@ -113324,7 +113507,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &959 + items: &963 type: object properties: type: @@ -113350,10 +113533,6 @@ paths: example: commit details: oneOf: - - *773 - - *774 - - *775 - - *776 - *777 - *778 - *779 @@ -113363,6 +113542,10 @@ paths: - *783 - *784 - *785 + - *786 + - *787 + - *788 + - *789 examples: default: value: @@ -113457,14 +113640,14 @@ paths: schema: type: object properties: - reason: &787 + reason: &791 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *786 + placeholder_id: *790 required: - reason - placeholder_id @@ -113481,7 +113664,7 @@ paths: schema: type: object properties: - reason: *787 + reason: *791 expire_at: type: string format: date-time @@ -113543,7 +113726,7 @@ paths: properties: incremental_scans: type: array - items: &788 + items: &792 description: Information on a single scan performed by secret scanning on the repository type: object @@ -113574,15 +113757,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *788 + items: *792 backfill_scans: type: array - items: *788 + items: *792 custom_pattern_backfill_scans: type: array items: allOf: - - *788 + - *792 - type: object properties: pattern_name: @@ -113595,7 +113778,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *788 + items: *792 examples: default: value: @@ -113705,9 +113888,9 @@ paths: application/json: schema: type: array - items: *789 + items: *793 examples: - default: *790 + default: *794 '400': *14 '404': *6 x-github: @@ -113891,9 +114074,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: &792 + default: &796 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -114228,7 +114411,7 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: default: value: @@ -114376,15 +114559,15 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '200': description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: *792 + default: *796 '403': *29 '404': *6 x-github: @@ -114410,7 +114593,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 requestBody: required: true content: @@ -114569,10 +114752,10 @@ paths: description: Response content: application/json: - schema: *789 + schema: *793 examples: - default: *792 - add_credit: *792 + default: *796 + add_credit: *796 '403': *29 '404': *6 '422': @@ -114612,7 +114795,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '202': *39 '400': *14 @@ -114641,7 +114824,7 @@ paths: parameters: - *491 - *492 - - *791 + - *795 responses: '202': description: Response @@ -114785,7 +114968,7 @@ paths: application/json: schema: type: array - items: &793 + items: &797 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -115158,7 +115341,7 @@ paths: application/json: schema: type: array - items: *793 + items: *797 examples: default: value: @@ -115246,7 +115429,7 @@ paths: description: Response content: application/json: - schema: *794 + schema: *798 examples: default: value: @@ -115340,7 +115523,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &795 + schema: &799 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -115435,7 +115618,7 @@ paths: description: Response content: application/json: - schema: *795 + schema: *799 examples: default: value: @@ -115642,7 +115825,7 @@ paths: description: Response content: application/json: - schema: &796 + schema: &800 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -115654,7 +115837,7 @@ paths: required: - names examples: - default: &797 + default: &801 value: names: - octocat @@ -115709,9 +115892,9 @@ paths: description: Response content: application/json: - schema: *796 + schema: *800 examples: - default: *797 + default: *801 '404': *6 '422': *7 x-github: @@ -115734,7 +115917,7 @@ paths: parameters: - *491 - *492 - - &798 + - &802 name: per description: The time frame to display results for. in: query @@ -115763,7 +115946,7 @@ paths: example: 128 clones: type: array - items: &799 + items: &803 title: Traffic type: object properties: @@ -116004,7 +116187,7 @@ paths: parameters: - *491 - *492 - - *798 + - *802 responses: '200': description: Response @@ -116023,7 +116206,7 @@ paths: example: 3782 views: type: array - items: *799 + items: *803 required: - uniques - count @@ -116694,7 +116877,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &807 + - &811 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -116703,7 +116886,7 @@ paths: schema: type: string example: members - - &812 + - &816 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -116714,7 +116897,7 @@ paths: default: 1 format: int32 example: 1 - - &813 + - &817 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -116756,7 +116939,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &802 + items: &806 allOf: - type: object required: @@ -116831,7 +117014,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &814 + meta: &818 type: object description: The metadata associated with the creation/updates to the user. @@ -116891,30 +117074,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &803 + '400': &807 description: Bad request content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '401': *801 - '403': &804 + schema: *804 + '401': *805 + '403': &808 description: Permission denied - '429': &805 + '429': &809 description: Too many requests content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '500': &806 + schema: *804 + '500': &810 description: Internal server error content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 + schema: *804 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -116938,7 +117121,7 @@ paths: required: true content: application/json: - schema: &810 + schema: &814 type: object required: - schemas @@ -116998,9 +117181,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *802 + schema: *806 examples: - group: &808 + group: &812 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -117019,13 +117202,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *803 - '401': *801 - '403': *804 - '409': &811 + '400': *807 + '401': *805 + '403': *808 + '409': &815 description: Duplicate record detected - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117042,7 +117225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &809 + - &813 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -117050,22 +117233,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *807 + - *811 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *802 + schema: *806 examples: - default: *808 - '400': *803 - '401': *801 - '403': *804 + default: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117084,13 +117267,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *809 + - *813 - *41 requestBody: required: true content: application/json: - schema: *810 + schema: *814 examples: group: summary: Group @@ -117116,17 +117299,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *802 + schema: *806 examples: - group: *808 - groupWithMembers: *808 - '400': *803 - '401': *801 - '403': *804 + group: *812 + groupWithMembers: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117150,13 +117333,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *809 + - *813 - *41 requestBody: required: true content: application/json: - schema: &821 + schema: &825 type: object required: - Operations @@ -117216,17 +117399,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *802 + schema: *806 examples: - updateGroup: *808 - addMembers: *808 - '400': *803 - '401': *801 - '403': *804 + updateGroup: *812 + addMembers: *812 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117242,17 +117425,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *809 + - *813 - *41 responses: '204': description: Group was deleted, no content - '400': *803 - '401': *801 - '403': *804 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117286,8 +117469,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *812 - - *813 + - *816 + - *817 - *41 responses: '200': @@ -117320,7 +117503,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &816 + items: &820 allOf: - type: object required: @@ -117399,7 +117582,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &815 + roles: &819 type: array description: The roles assigned to the user. items: @@ -117455,7 +117638,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *814 + meta: *818 startIndex: type: integer description: A starting index for the returned page @@ -117492,11 +117675,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *803 - '401': *801 - '403': *804 - '429': *805 - '500': *806 + '400': *807 + '401': *805 + '403': *808 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117520,7 +117703,7 @@ paths: required: true content: application/json: - schema: &819 + schema: &823 type: object required: - schemas @@ -117602,9 +117785,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *815 + roles: *819 examples: - user: &820 + user: &824 summary: User value: schemas: @@ -117651,9 +117834,9 @@ paths: description: User has been created content: application/scim+json: - schema: *816 + schema: *820 examples: - user: &817 + user: &821 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -117679,13 +117862,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *817 - '400': *803 - '401': *801 - '403': *804 - '409': *811 - '429': *805 - '500': *806 + enterpriseOwner: *821 + '400': *807 + '401': *805 + '403': *808 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117702,7 +117885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &818 + - &822 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -117715,15 +117898,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *816 + schema: *820 examples: - default: *817 - '400': *803 - '401': *801 - '403': *804 + default: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117774,30 +117957,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *818 + - *822 - *41 requestBody: required: true content: application/json: - schema: *819 + schema: *823 examples: - user: *820 + user: *824 responses: '200': description: User was updated content: application/scim+json: - schema: *816 + schema: *820 examples: - user: *817 - '400': *803 - '401': *801 - '403': *804 + user: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117838,13 +118021,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *818 + - *822 - *41 requestBody: required: true content: application/json: - schema: *821 + schema: *825 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -117884,18 +118067,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *816 + schema: *820 examples: - userMultiValuedProperties: *817 - userSingleValuedProperties: *817 - disableUser: *817 - '400': *803 - '401': *801 - '403': *804 + userMultiValuedProperties: *821 + userSingleValuedProperties: *821 + disableUser: *821 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '409': *811 - '429': *805 - '500': *806 + '409': *815 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117915,17 +118098,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *818 + - *822 - *41 responses: '204': description: User was deleted, no content - '400': *803 - '401': *801 - '403': *804 + '400': *807 + '401': *805 + '403': *808 '404': *6 - '429': *805 - '500': *806 + '429': *809 + '500': *810 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118012,7 +118195,7 @@ paths: example: 1 Resources: type: array - items: &822 + items: &826 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -118243,22 +118426,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &823 + '404': &827 description: Resource not found content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '403': &824 + schema: *804 + '403': &828 description: Forbidden content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '400': *803 - '429': *805 + schema: *804 + '400': *807 + '429': *809 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -118284,9 +118467,9 @@ paths: description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: &825 + default: &829 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118309,17 +118492,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *823 - '403': *824 - '500': *806 + '404': *827 + '403': *828 + '500': *810 '409': description: Conflict content: application/json: - schema: *800 + schema: *804 application/scim+json: - schema: *800 - '400': *803 + schema: *804 + '400': *807 requestBody: required: true content: @@ -118417,17 +118600,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 - '404': *823 - '403': *824 + default: *829 + '404': *827 + '403': *828 '304': *37 x-github: githubCloudOnly: true @@ -118451,18 +118634,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 + default: *829 '304': *37 - '404': *823 - '403': *824 + '404': *827 + '403': *828 requestBody: required: true content: @@ -118575,19 +118758,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *818 + - *822 responses: '200': description: Response content: application/scim+json: - schema: *822 + schema: *826 examples: - default: *825 + default: *829 '304': *37 - '404': *823 - '403': *824 - '400': *803 + '404': *827 + '403': *828 + '400': *807 '429': description: Response content: @@ -118678,12 +118861,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *818 + - *822 responses: '204': description: Response - '404': *823 - '403': *824 + '404': *827 + '403': *828 '304': *37 x-github: githubCloudOnly: true @@ -118819,7 +119002,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &826 + text_matches: &830 title: Search Result Text Matches type: array items: @@ -118982,7 +119165,7 @@ paths: enum: - author-date - committer-date - - &827 + - &831 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -119110,7 +119293,7 @@ paths: type: number node_id: type: string - text_matches: *826 + text_matches: *830 required: - sha - node_id @@ -119303,7 +119486,7 @@ paths: - interactions - created - updated - - *827 + - *831 - *17 - *19 - name: advanced_search @@ -119417,11 +119600,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: type: string state_reason: @@ -119446,7 +119629,7 @@ paths: type: string format: date-time nullable: true - text_matches: *826 + text_matches: *830 pull_request: type: object properties: @@ -119726,7 +119909,7 @@ paths: enum: - created - updated - - *827 + - *831 - *17 - *19 responses: @@ -119770,7 +119953,7 @@ paths: nullable: true score: type: number - text_matches: *826 + text_matches: *830 required: - id - node_id @@ -119856,7 +120039,7 @@ paths: - forks - help-wanted-issues - updated - - *827 + - *831 - *17 - *19 responses: @@ -120104,7 +120287,7 @@ paths: - admin - pull - push - text_matches: *826 + text_matches: *830 temp_clone_token: type: string allow_merge_commit: @@ -120405,7 +120588,7 @@ paths: type: string format: uri nullable: true - text_matches: *826 + text_matches: *830 related: type: array nullable: true @@ -120598,7 +120781,7 @@ paths: - followers - repositories - joined - - *827 + - *831 - *17 - *19 responses: @@ -120702,7 +120885,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *826 + text_matches: *830 blog: type: string nullable: true @@ -120781,7 +120964,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &830 + - &834 name: team_id description: The unique identifier of the team. in: path @@ -120822,7 +121005,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *830 + - *834 requestBody: required: true content: @@ -120922,7 +121105,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *830 + - *834 responses: '204': description: Response @@ -120951,7 +121134,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -120989,7 +121172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *830 + - *834 - name: role description: Filters members returned by their role in the team. in: query @@ -121040,7 +121223,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121077,7 +121260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121117,7 +121300,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121154,7 +121337,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 responses: '200': @@ -121163,7 +121346,7 @@ paths: application/json: schema: *490 examples: - response-if-user-is-a-team-maintainer: *831 + response-if-user-is-a-team-maintainer: *835 '404': *6 x-github: githubCloudOnly: false @@ -121196,7 +121379,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 requestBody: required: false @@ -121224,7 +121407,7 @@ paths: application/json: schema: *490 examples: - response-if-users-membership-with-team-is-now-pending: *832 + response-if-users-membership-with-team-is-now-pending: *836 '403': description: Forbidden if team synchronization is set up '422': @@ -121258,7 +121441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *830 + - *834 - *148 responses: '204': @@ -121286,7 +121469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -121328,7 +121511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *830 + - *834 - *491 - *492 responses: @@ -121336,7 +121519,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *833 + schema: *837 examples: alternative-response-with-extra-repository-information: value: @@ -121486,7 +121669,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *830 + - *834 - *491 - *492 requestBody: @@ -121538,7 +121721,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *830 + - *834 - *491 - *492 responses: @@ -121569,7 +121752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *830 + - *834 responses: '200': description: Response @@ -121604,7 +121787,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *830 + - *834 requestBody: required: true content: @@ -121692,7 +121875,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *830 + - *834 - *17 - *19 responses: @@ -121704,7 +121887,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: *834 + response-if-child-teams-exist: *838 headers: Link: *47 '404': *6 @@ -121737,7 +121920,7 @@ paths: application/json: schema: oneOf: - - &835 + - &839 title: Private User description: Private User type: object @@ -121940,7 +122123,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &861 + - &865 title: Public User description: Public User type: object @@ -122252,7 +122435,7 @@ paths: description: Response content: application/json: - schema: *835 + schema: *839 examples: default: value: @@ -122650,7 +122833,7 @@ paths: type: integer secrets: type: array - items: &836 + items: &840 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -122766,7 +122949,7 @@ paths: description: Response content: application/json: - schema: *836 + schema: *840 examples: default: value: @@ -123179,7 +123362,7 @@ paths: description: Response content: application/json: - schema: &837 + schema: &841 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -123220,7 +123403,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &838 + default: &842 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -123265,9 +123448,9 @@ paths: description: Response content: application/json: - schema: *837 + schema: *841 examples: - default: *838 + default: *842 '404': *6 x-github: githubCloudOnly: false @@ -123304,9 +123487,9 @@ paths: type: integer machines: type: array - items: *839 + items: *843 examples: - default: *840 + default: *844 '304': *37 '500': *40 '401': *25 @@ -124245,7 +124428,7 @@ paths: type: array items: *416 examples: - default: &851 + default: &855 value: - id: 197 name: hello_docker @@ -124346,7 +124529,7 @@ paths: application/json: schema: type: array - items: &841 + items: &845 title: Email description: Email type: object @@ -124411,9 +124594,9 @@ paths: application/json: schema: type: array - items: *841 + items: *845 examples: - default: &853 + default: &857 value: - email: octocat@github.com verified: true @@ -124488,7 +124671,7 @@ paths: application/json: schema: type: array - items: *841 + items: *845 examples: default: value: @@ -124744,7 +124927,7 @@ paths: application/json: schema: type: array - items: &842 + items: &846 title: GPG Key description: A unique encryption key type: object @@ -124875,7 +125058,7 @@ paths: - subkeys - revoked examples: - default: &871 + default: &875 value: - id: 3 name: Octocat's GPG Key @@ -124960,9 +125143,9 @@ paths: description: Response content: application/json: - schema: *842 + schema: *846 examples: - default: &843 + default: &847 value: id: 3 name: Octocat's GPG Key @@ -125019,7 +125202,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &844 + - &848 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -125031,9 +125214,9 @@ paths: description: Response content: application/json: - schema: *842 + schema: *846 examples: - default: *843 + default: *847 '404': *6 '304': *37 '403': *29 @@ -125056,7 +125239,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *844 + - *848 responses: '204': description: Response @@ -125523,7 +125706,7 @@ paths: application/json: schema: type: array - items: &845 + items: &849 title: Key description: Key type: object @@ -125624,9 +125807,9 @@ paths: description: Response content: application/json: - schema: *845 + schema: *849 examples: - default: &846 + default: &850 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -125659,15 +125842,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *715 + - *719 responses: '200': description: Response content: application/json: - schema: *845 + schema: *849 examples: - default: *846 + default: *850 '404': *6 '304': *37 '403': *29 @@ -125690,7 +125873,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *715 + - *719 responses: '204': description: Response @@ -125723,7 +125906,7 @@ paths: application/json: schema: type: array - items: &847 + items: &851 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -125791,7 +125974,7 @@ paths: - account - plan examples: - default: &848 + default: &852 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -125853,9 +126036,9 @@ paths: application/json: schema: type: array - items: *847 + items: *851 examples: - default: *848 + default: *852 headers: Link: *47 '304': *37 @@ -126864,7 +127047,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *411 - - *849 + - *853 responses: '204': description: Response @@ -126977,7 +127160,7 @@ paths: - docker - nuget - container - - *850 + - *854 - *19 - *17 responses: @@ -126989,8 +127172,8 @@ paths: type: array items: *416 examples: - default: *851 - '400': *852 + default: *855 + '400': *856 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -127019,7 +127202,7 @@ paths: application/json: schema: *416 examples: - default: &872 + default: &876 value: id: 40201 name: octo-name @@ -127381,9 +127564,9 @@ paths: application/json: schema: type: array - items: *841 + items: *845 examples: - default: *853 + default: *857 headers: Link: *47 '304': *37 @@ -127496,7 +127679,7 @@ paths: type: array items: *80 examples: - default: &860 + default: &864 summary: Default response value: - id: 1296269 @@ -127843,7 +128026,7 @@ paths: type: array items: *681 examples: - default: *854 + default: *858 headers: Link: *47 '304': *37 @@ -127923,7 +128106,7 @@ paths: application/json: schema: type: array - items: &855 + items: &859 title: Social account description: Social media account type: object @@ -127938,7 +128121,7 @@ paths: - provider - url examples: - default: &856 + default: &860 value: - provider: twitter url: https://twitter.com/github @@ -128000,9 +128183,9 @@ paths: application/json: schema: type: array - items: *855 + items: *859 examples: - default: *856 + default: *860 '422': *15 '304': *37 '404': *6 @@ -128089,7 +128272,7 @@ paths: application/json: schema: type: array - items: &857 + items: &861 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -128109,7 +128292,7 @@ paths: - title - created_at examples: - default: &886 + default: &890 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128173,9 +128356,9 @@ paths: description: Response content: application/json: - schema: *857 + schema: *861 examples: - default: &858 + default: &862 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128205,7 +128388,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &859 + - &863 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -128217,9 +128400,9 @@ paths: description: Response content: application/json: - schema: *857 + schema: *861 examples: - default: *858 + default: *862 '404': *6 '304': *37 '403': *29 @@ -128242,7 +128425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *859 + - *863 responses: '204': description: Response @@ -128271,7 +128454,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &887 + - &891 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 @@ -128296,11 +128479,11 @@ paths: type: array items: *80 examples: - default-response: *860 + default-response: *864 application/vnd.github.v3.star+json: schema: type: array - items: &888 + items: &892 title: Starred Repository description: Starred Repository type: object @@ -128669,10 +128852,10 @@ paths: application/json: schema: oneOf: - - *835 - - *861 + - *839 + - *865 examples: - default-response: &865 + default-response: &869 summary: Default response value: login: octocat @@ -128707,7 +128890,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &866 + response-with-git-hub-plan-information: &870 summary: Response with GitHub plan information value: login: octocat @@ -128764,7 +128947,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &863 + - &867 name: user_id description: The unique identifier of the user. in: path @@ -128830,7 +129013,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *862 + - *866 - *17 responses: '200': @@ -128865,7 +129048,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *863 + - *867 - *434 requestBody: required: true @@ -128937,7 +129120,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *864 + schema: *868 examples: table_view: summary: Response for creating a table view @@ -128989,11 +129172,11 @@ paths: application/json: schema: oneOf: - - *835 - - *861 + - *839 + - *865 examples: - default-response: *865 - response-with-git-hub-plan-information: *866 + default-response: *869 + response-with-git-hub-plan-information: *870 '404': *6 x-github: githubCloudOnly: false @@ -129043,8 +129226,8 @@ paths: required: - subject_digests examples: - default: *867 - withPredicateType: *868 + default: *871 + withPredicateType: *872 responses: '200': description: Response @@ -129083,7 +129266,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *869 + default: *873 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -129553,7 +129736,7 @@ paths: application/json: schema: *340 examples: - default: &870 + default: &874 summary: Example response for a user copilot space value: id: 42 @@ -129654,7 +129837,7 @@ paths: application/json: schema: *340 examples: - default: *870 + default: *874 '403': *29 '404': *6 x-github: @@ -129777,7 +129960,7 @@ paths: application/json: schema: *340 examples: - default: *870 + default: *874 '403': *29 '404': *6 '422': *15 @@ -130545,7 +130728,7 @@ paths: type: array items: *416 examples: - default: *851 + default: *855 '403': *29 '401': *25 x-github: @@ -130929,9 +131112,9 @@ paths: application/json: schema: type: array - items: *842 + items: *846 examples: - default: *871 + default: *875 headers: Link: *47 x-github: @@ -131159,7 +131342,7 @@ paths: - docker - nuget - container - - *850 + - *854 - *148 - *19 - *17 @@ -131172,10 +131355,10 @@ paths: type: array items: *416 examples: - default: *851 + default: *855 '403': *29 '401': *25 - '400': *852 + '400': *856 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131205,7 +131388,7 @@ paths: application/json: schema: *416 examples: - default: *872 + default: *876 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131554,7 +131737,7 @@ paths: type: array items: *438 examples: - default: *873 + default: *877 headers: Link: *47 '304': *37 @@ -131614,7 +131797,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *874 + items: *878 required: - name - data_type @@ -131630,7 +131813,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *875 + iteration_configuration: *879 required: - name - data_type @@ -131652,8 +131835,8 @@ paths: value: name: Due date data_type: date - single_select_field: *876 - iteration_field: *877 + single_select_field: *880 + iteration_field: *881 responses: '201': description: Response @@ -131661,11 +131844,11 @@ paths: application/json: schema: *438 examples: - text_field: *878 - number_field: *879 - date_field: *880 - single_select_field: *881 - iteration_field: *882 + text_field: *882 + number_field: *883 + date_field: *884 + single_select_field: *885 + iteration_field: *886 '304': *37 '403': *29 '401': *25 @@ -131687,7 +131870,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *434 - - *883 + - *887 - *148 responses: '200': @@ -131696,7 +131879,7 @@ paths: application/json: schema: *438 examples: - default: *884 + default: *888 headers: Link: *47 '304': *37 @@ -132050,7 +132233,7 @@ paths: parameters: - *434 - *148 - - *885 + - *889 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -132329,9 +132512,9 @@ paths: application/json: schema: type: array - items: *855 + items: *859 examples: - default: *856 + default: *860 headers: Link: *47 x-github: @@ -132361,9 +132544,9 @@ paths: application/json: schema: type: array - items: *857 + items: *861 examples: - default: *886 + default: *890 headers: Link: *47 x-github: @@ -132388,7 +132571,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *148 - - *887 + - *891 - *112 - *17 - *19 @@ -132400,11 +132583,11 @@ paths: schema: anyOf: - type: array - items: *888 + items: *892 - type: array items: *80 examples: - default-response: *860 + default-response: *864 headers: Link: *47 x-github: @@ -132563,7 +132746,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &889 + enterprise: &893 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -132621,7 +132804,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &890 + installation: &894 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -132640,7 +132823,7 @@ x-webhooks: required: - id - node_id - organization: &891 + organization: &895 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -132700,13 +132883,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &892 + repository: &896 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: &931 + properties: &935 id: description: Unique identifier of the repository example: 42 @@ -133390,7 +133573,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &932 + required: &936 - archive_url - assignees_url - blobs_url @@ -133541,10 +133724,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -133620,11 +133803,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: &893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: &897 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -133847,11 +134030,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: *893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: *897 sender: *4 required: - action @@ -134034,11 +134217,11 @@ x-webhooks: - everyone required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - rule: *893 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + rule: *897 sender: *4 required: - action @@ -134111,7 +134294,7 @@ x-webhooks: required: true content: application/json: - schema: &915 + schema: &919 title: Exemption request cancellation event type: object properties: @@ -134119,11 +134302,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: &894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: &898 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -134427,7 +134610,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &895 + items: &899 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -134537,7 +134720,7 @@ x-webhooks: required: true content: application/json: - schema: &916 + schema: &920 title: Exemption request completed event type: object properties: @@ -134545,11 +134728,11 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 sender: *4 required: - action @@ -134621,7 +134804,7 @@ x-webhooks: required: true content: application/json: - schema: &913 + schema: &917 title: Exemption request created event type: object properties: @@ -134629,11 +134812,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 sender: *4 required: - action @@ -134705,7 +134888,7 @@ x-webhooks: required: true content: application/json: - schema: &917 + schema: &921 title: Exemption response dismissed event type: object properties: @@ -134713,12 +134896,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 - exemption_response: *895 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 + exemption_response: *899 sender: *4 required: - action @@ -134792,7 +134975,7 @@ x-webhooks: required: true content: application/json: - schema: &914 + schema: &918 title: Exemption response submitted event type: object properties: @@ -134800,12 +134983,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - exemption_request: *894 - exemption_response: *895 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + exemption_request: *898 + exemption_response: *899 sender: *4 required: - action @@ -134889,7 +135072,7 @@ x-webhooks: type: string enum: - completed - check_run: &897 + check_run: &901 title: CheckRun description: A check performed on the code of a given code change type: object @@ -134980,7 +135163,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *896 + deployment: *900 details_url: example: https://example.com type: string @@ -135065,10 +135248,10 @@ x-webhooks: - output - app - pull_requests - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -135459,11 +135642,11 @@ x-webhooks: type: string enum: - created - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -135857,11 +136040,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 requested_action: description: The action requested by the user. type: object @@ -136264,11 +136447,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *897 - installation: *890 - enterprise: *889 - organization: *891 - repository: *892 + check_run: *901 + installation: *894 + enterprise: *893 + organization: *895 + repository: *896 sender: *4 required: - check_run @@ -137238,10 +137421,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -137940,10 +138123,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -138636,10 +138819,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -138950,20 +139133,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &898 + commit_oid: &902 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: *889 - installation: *890 - organization: *891 - ref: &899 + enterprise: *893 + installation: *894 + organization: *895 + ref: &903 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: *892 + repository: *896 sender: *4 required: - action @@ -139358,12 +139541,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -139629,12 +139812,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -139966,12 +140149,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -140245,16 +140428,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 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: *892 + repository: *896 sender: *4 required: - action @@ -140491,12 +140674,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *898 - enterprise: *889 - installation: *890 - organization: *891 - ref: *899 - repository: *892 + commit_oid: *902 + enterprise: *893 + installation: *894 + organization: *895 + ref: *903 + repository: *896 sender: *4 required: - action @@ -140807,10 +140990,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -141065,10 +141248,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -141148,18 +141331,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *891 - pusher_type: &900 + organization: *895 + pusher_type: &904 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &901 + ref: &905 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -141169,7 +141352,7 @@ x-webhooks: enum: - tag - branch - repository: *892 + repository: *896 sender: *4 required: - ref @@ -141252,9 +141435,9 @@ x-webhooks: enum: - created definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141339,9 +141522,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141419,9 +141602,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141499,9 +141682,9 @@ x-webhooks: enum: - updated definition: *161 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -141578,10 +141761,10 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - repository: *892 - organization: *891 + enterprise: *893 + installation: *894 + repository: *896 + organization: *895 sender: *4 new_property_values: type: array @@ -141666,18 +141849,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - pusher_type: *900 - ref: *901 + enterprise: *893 + installation: *894 + organization: *895 + pusher_type: *904 + ref: *905 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *892 + repository: *896 sender: *4 required: - ref @@ -141758,10 +141941,10 @@ x-webhooks: enum: - assignees_changed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -141842,10 +142025,10 @@ x-webhooks: enum: - auto_dismissed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -141927,10 +142110,10 @@ x-webhooks: enum: - auto_reopened alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142012,10 +142195,10 @@ x-webhooks: enum: - created alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142095,10 +142278,10 @@ x-webhooks: enum: - dismissed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142178,10 +142361,10 @@ x-webhooks: enum: - fixed alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142262,10 +142445,10 @@ x-webhooks: enum: - reintroduced alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142345,10 +142528,10 @@ x-webhooks: enum: - reopened alert: *630 - installation: *890 - organization: *891 - enterprise: *889 - repository: *892 + installation: *894 + organization: *895 + enterprise: *893 + repository: *896 sender: *4 required: - action @@ -142425,9 +142608,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - key: &902 + enterprise: *893 + installation: *894 + key: &906 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -142463,8 +142646,8 @@ x-webhooks: - verified - created_at - read_only - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -142541,11 +142724,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - key: *902 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + key: *906 + organization: *895 + repository: *896 sender: *4 required: - action @@ -143101,12 +143284,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: &908 + workflow: &912 title: Workflow type: object nullable: true @@ -143847,15 +144030,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *903 - required: *904 + properties: *907 + required: *908 nullable: true pull_requests: type: array - items: *736 - repository: *892 - organization: *891 - installation: *890 + items: *740 + repository: *896 + organization: *895 + installation: *894 sender: *4 responses: '200': @@ -143926,7 +144109,7 @@ x-webhooks: type: string enum: - approved - approver: &905 + approver: &909 type: object properties: avatar_url: @@ -143969,11 +144152,11 @@ x-webhooks: type: string comment: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - reviewers: &906 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + reviewers: &910 type: array items: type: object @@ -144052,7 +144235,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &907 + workflow_job_run: &911 type: object properties: conclusion: @@ -144783,18 +144966,18 @@ x-webhooks: type: string enum: - rejected - approver: *905 + approver: *909 comment: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - reviewers: *906 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + reviewers: *910 sender: *4 since: type: string - workflow_job_run: *907 + workflow_job_run: *911 workflow_job_runs: type: array items: @@ -145498,13 +145681,13 @@ x-webhooks: type: string enum: - requested - enterprise: *889 + enterprise: *893 environment: type: string - installation: *890 - organization: *891 - repository: *892 - requestor: &918 + installation: *894 + organization: *895 + repository: *896 + requestor: &922 title: User type: object nullable: true @@ -147393,12 +147576,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Deployment Workflow Run type: object @@ -148078,7 +148261,7 @@ x-webhooks: type: string enum: - answered - answer: &911 + answer: &915 type: object properties: author_association: @@ -148235,11 +148418,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148366,11 +148549,11 @@ x-webhooks: - from required: - category - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148453,11 +148636,11 @@ x-webhooks: type: string enum: - closed - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148539,7 +148722,7 @@ x-webhooks: type: string enum: - created - comment: &910 + comment: &914 type: object properties: author_association: @@ -148696,11 +148879,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148783,12 +148966,12 @@ x-webhooks: type: string enum: - deleted - comment: *910 - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + comment: *914 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148883,12 +149066,12 @@ x-webhooks: - from required: - body - comment: *910 - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + comment: *914 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -148972,11 +149155,11 @@ x-webhooks: type: string enum: - created - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149058,11 +149241,11 @@ x-webhooks: type: string enum: - deleted - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149162,11 +149345,11 @@ x-webhooks: type: string required: - from - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149248,10 +149431,10 @@ x-webhooks: type: string enum: - labeled - discussion: *909 - enterprise: *889 - installation: *890 - label: &912 + discussion: *913 + enterprise: *893 + installation: *894 + label: &916 title: Label type: object properties: @@ -149283,8 +149466,8 @@ x-webhooks: - color - default - description - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149367,11 +149550,11 @@ x-webhooks: type: string enum: - locked - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149453,11 +149636,11 @@ x-webhooks: type: string enum: - pinned - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149539,11 +149722,11 @@ x-webhooks: type: string enum: - reopened - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149628,16 +149811,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *909 - new_repository: *892 + new_discussion: *913 + new_repository: *896 required: - new_discussion - new_repository - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149720,10 +149903,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *909 - old_answer: *911 - organization: *891 - repository: *892 + discussion: *913 + old_answer: *915 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149805,12 +149988,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *909 - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149893,11 +150076,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -149979,11 +150162,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *909 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + discussion: *913 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -150052,7 +150235,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150115,7 +150298,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150178,7 +150361,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150241,7 +150424,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150304,7 +150487,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150370,7 +150553,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150436,7 +150619,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150502,7 +150685,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150568,7 +150751,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150634,7 +150817,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150699,7 +150882,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *919 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150764,7 +150947,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150829,7 +151012,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *917 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150894,7 +151077,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150960,7 +151143,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *918 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151027,7 +151210,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *889 + enterprise: *893 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -151687,9 +151870,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - forkee @@ -151835,9 +152018,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pages: description: The pages that were updated. type: array @@ -151874,7 +152057,7 @@ x-webhooks: - action - sha - html_url - repository: *892 + repository: *896 sender: *4 required: - pages @@ -151950,10 +152133,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: &919 + organization: *895 + repositories: &923 description: An array of repository objects that the installation can access. type: array @@ -151979,8 +152162,8 @@ x-webhooks: - name - full_name - private - repository: *892 - requester: *918 + repository: *896 + requester: *922 sender: *4 required: - action @@ -152055,11 +152238,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152135,11 +152318,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152215,10 +152398,10 @@ x-webhooks: type: string enum: - added - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories_added: &920 + organization: *895 + repositories_added: &924 description: An array of repository objects, which were added to the installation. type: array @@ -152264,15 +152447,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *892 - repository_selection: &921 + repository: *896 + repository_selection: &925 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *918 + requester: *922 sender: *4 required: - action @@ -152351,10 +152534,10 @@ x-webhooks: type: string enum: - removed - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories_added: *920 + organization: *895 + repositories_added: *924 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -152381,9 +152564,9 @@ x-webhooks: - name - full_name - private - repository: *892 - repository_selection: *921 - requester: *918 + repository: *896 + repository_selection: *925 + requester: *922 sender: *4 required: - action @@ -152462,11 +152645,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152645,10 +152828,10 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 target_type: type: string @@ -152727,11 +152910,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *889 + enterprise: *893 installation: *22 - organization: *891 - repositories: *919 - repository: *892 + organization: *895 + repositories: *923 + repository: *896 requester: nullable: true sender: *4 @@ -152905,8 +153088,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true user: title: User @@ -152991,8 +153174,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -153781,8 +153964,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154131,8 +154314,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -154212,7 +154395,7 @@ x-webhooks: type: string enum: - deleted - comment: &922 + comment: &926 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -154369,8 +154552,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *711 - required: *712 + properties: *712 + required: *713 nullable: true required: - url @@ -154385,8 +154568,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -155171,8 +155354,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155523,8 +155706,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -155604,7 +155787,7 @@ x-webhooks: type: string enum: - edited - changes: &951 + changes: &955 description: The changes to the comment. type: object properties: @@ -155616,9 +155799,9 @@ x-webhooks: type: string required: - from - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156406,8 +156589,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156756,8 +156939,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -156838,9 +157021,9 @@ x-webhooks: type: string enum: - pinned - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157630,8 +157813,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157982,8 +158165,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -158063,9 +158246,9 @@ x-webhooks: type: string enum: - unpinned - comment: *922 - enterprise: *889 - installation: *890 + comment: *926 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158855,8 +159038,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159207,8 +159390,8 @@ x-webhooks: - state - locked - assignee - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159297,9 +159480,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159388,9 +159571,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159478,9 +159661,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159569,9 +159752,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -159651,10 +159834,10 @@ x-webhooks: type: string enum: - assigned - assignee: *918 - enterprise: *889 - installation: *890 - issue: &923 + assignee: *922 + enterprise: *893 + installation: *894 + issue: &927 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -160446,11 +160629,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160567,8 +160750,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -160648,8 +160831,8 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -161446,11 +161629,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161702,8 +161885,8 @@ x-webhooks: required: - state - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -161782,8 +161965,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -162571,11 +162754,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162691,8 +162874,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -162771,8 +162954,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -163582,11 +163765,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163681,7 +163864,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &924 + milestone: &928 title: Milestone description: A collection of related issues and pull requests. type: object @@ -163819,8 +164002,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -163919,8 +164102,8 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -164712,11 +164895,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164833,9 +165016,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *912 - organization: *891 - repository: *892 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -164915,9 +165098,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 issue_field: type: object description: The issue field whose value was set or updated on the @@ -165071,8 +165254,8 @@ x-webhooks: - id required: - from - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -165152,9 +165335,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -165235,8 +165418,8 @@ x-webhooks: nullable: true required: - id - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -165316,8 +165499,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166108,11 +166291,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166229,9 +166412,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *912 - organization: *891 - repository: *892 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -166311,8 +166494,8 @@ x-webhooks: type: string enum: - locked - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167127,11 +167310,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167225,8 +167408,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -167305,8 +167488,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168115,11 +168298,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168213,9 +168396,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *924 - organization: *891 - repository: *892 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -169078,11 +169261,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169663,8 +169846,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170448,11 +170631,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170576,8 +170759,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -170657,9 +170840,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *889 - installation: *890 - issue: &925 + enterprise: *893 + installation: *894 + issue: &929 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -171445,11 +171628,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171565,8 +171748,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -171645,8 +171828,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172459,11 +172642,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172558,8 +172741,8 @@ x-webhooks: user_view_type: type: string type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -173428,11 +173611,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174027,11 +174210,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *889 - installation: *890 - issue: *925 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *929 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174111,12 +174294,12 @@ x-webhooks: type: string enum: - typed - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174197,7 +174380,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &954 + assignee: &958 title: User type: object nullable: true @@ -174267,11 +174450,11 @@ x-webhooks: required: - login - id - enterprise: *889 - installation: *890 - issue: *923 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *927 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174350,12 +174533,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *889 - installation: *890 - issue: *923 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *927 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -174435,8 +174618,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175249,11 +175432,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *828 - issue_dependencies_summary: *829 + sub_issues_summary: *832 + issue_dependencies_summary: *833 issue_field_values: type: array - items: *695 + items: *696 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175347,8 +175530,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175428,11 +175611,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *889 - installation: *890 - issue: *925 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + issue: *929 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175511,12 +175694,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *889 - installation: *890 - issue: *923 + enterprise: *893 + installation: *894 + issue: *927 type: *400 - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175596,11 +175779,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175678,11 +175861,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175792,11 +175975,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - label: *912 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + label: *916 + organization: *895 + repository: *896 sender: *4 required: - action @@ -175878,9 +176061,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: &926 + enterprise: *893 + installation: *894 + marketplace_purchase: &930 title: Marketplace Purchase type: object required: @@ -175963,8 +176146,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *891 - previous_marketplace_purchase: &927 + organization: *895 + previous_marketplace_purchase: &931 title: Marketplace Purchase type: object properties: @@ -176044,7 +176227,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176124,10 +176307,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176210,7 +176393,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176292,10 +176475,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176377,7 +176560,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *892 + repository: *896 sender: *4 required: - action @@ -176458,8 +176641,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 marketplace_purchase: title: Marketplace Purchase type: object @@ -176541,9 +176724,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *891 - previous_marketplace_purchase: *927 - repository: *892 + organization: *895 + previous_marketplace_purchase: *931 + repository: *896 sender: *4 required: - action @@ -176623,12 +176806,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *889 - installation: *890 - marketplace_purchase: *926 - organization: *891 - previous_marketplace_purchase: *927 - repository: *892 + enterprise: *893 + installation: *894 + marketplace_purchase: *930 + organization: *895 + previous_marketplace_purchase: *931 + repository: *896 sender: *4 required: - action @@ -176730,11 +176913,11 @@ x-webhooks: type: string required: - to - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176834,11 +177017,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176917,11 +177100,11 @@ x-webhooks: type: string enum: - removed - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 sender: *4 required: - action @@ -176999,11 +177182,11 @@ x-webhooks: type: string enum: - added - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177079,7 +177262,7 @@ x-webhooks: required: - login - id - team: &928 + team: &932 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -177302,11 +177485,11 @@ x-webhooks: type: string enum: - removed - enterprise: *889 - installation: *890 - member: *918 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + member: *922 + organization: *895 + repository: *896 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177383,7 +177566,7 @@ x-webhooks: required: - login - id - team: *928 + team: *932 required: - action - scope @@ -177465,8 +177648,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *890 - merge_group: &930 + installation: *894 + merge_group: &934 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -177485,15 +177668,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *929 + head_commit: *933 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177579,10 +177762,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *890 - merge_group: *930 - organization: *891 - repository: *892 + installation: *894 + merge_group: *934 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177655,7 +177838,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 + enterprise: *893 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -177764,16 +177947,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *890 - organization: *891 + installation: *894 + organization: *895 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -177854,11 +178037,11 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -177937,9 +178120,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - milestone: &933 + enterprise: *893 + installation: *894 + milestone: &937 title: Milestone description: A collection of related issues and pull requests. type: object @@ -178076,8 +178259,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178156,11 +178339,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178270,11 +178453,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - milestone: *924 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *928 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178354,11 +178537,11 @@ x-webhooks: type: string enum: - opened - enterprise: *889 - installation: *890 - milestone: *933 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + milestone: *937 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178437,11 +178620,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *918 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + blocked_user: *922 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178520,11 +178703,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *918 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + blocked_user: *922 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -178600,7 +178783,7 @@ x-webhooks: enum: - created definition: *156 - enterprise: *889 + enterprise: *893 sender: *4 required: - action @@ -178680,8 +178863,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 sender: *4 required: - action @@ -178754,8 +178937,8 @@ x-webhooks: enum: - updated definition: *156 - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 sender: *4 required: - action @@ -178827,9 +179010,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 new_property_values: type: array @@ -178917,9 +179100,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - membership: &934 + enterprise: *893 + installation: *894 + membership: &938 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -179026,8 +179209,8 @@ x-webhooks: - role - organization_url - user - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179105,11 +179288,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179188,8 +179371,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -179305,10 +179488,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 - user: *918 + user: *922 required: - action - invitation @@ -179386,11 +179569,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179477,11 +179660,11 @@ x-webhooks: properties: from: type: string - enterprise: *889 - installation: *890 - membership: *934 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + membership: *938 + organization: *895 + repository: *896 sender: *4 required: - action @@ -179559,9 +179742,9 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 package: description: Information about the package. type: object @@ -180060,7 +180243,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &935 + items: &939 title: Ruby Gems metadata type: object properties: @@ -180155,7 +180338,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -180232,9 +180415,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 package: description: Information about the package. type: object @@ -180587,7 +180770,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *935 + items: *939 source_url: type: string format: uri @@ -180657,7 +180840,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -180833,12 +181016,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *889 + enterprise: *893 id: type: integer - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - id @@ -180915,7 +181098,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &936 + personal_access_token_request: &940 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -181061,10 +181244,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *889 - organization: *891 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181141,11 +181324,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *936 - enterprise: *889 - organization: *891 + personal_access_token_request: *940 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181221,11 +181404,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *936 - enterprise: *889 - organization: *891 + personal_access_token_request: *940 + enterprise: *893 + organization: *895 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181300,11 +181483,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *936 - organization: *891 - enterprise: *889 + personal_access_token_request: *940 + organization: *895 + enterprise: *893 sender: *4 - installation: *890 + installation: *894 required: - action - personal_access_token_request @@ -181409,7 +181592,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *937 + last_response: *941 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -181441,8 +181624,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 zen: description: Random string of GitHub zen. @@ -181687,10 +181870,10 @@ x-webhooks: - from required: - note - enterprise: *889 - installation: *890 - organization: *891 - project_card: &938 + enterprise: *893 + installation: *894 + organization: *895 + project_card: &942 title: Project Card type: object properties: @@ -181809,7 +181992,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -181890,11 +182073,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project_card: *938 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_card: *942 + repository: *896 sender: *4 required: - action @@ -181974,9 +182157,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 project_card: title: Project Card type: object @@ -182104,8 +182287,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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -182199,11 +182382,11 @@ x-webhooks: - from required: - note - enterprise: *889 - installation: *890 - organization: *891 - project_card: *938 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_card: *942 + repository: *896 sender: *4 required: - action @@ -182297,9 +182480,9 @@ x-webhooks: - from required: - column_id - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 project_card: allOf: - title: Project Card @@ -182489,7 +182672,7 @@ x-webhooks: type: string required: - after_id - repository: *892 + repository: *896 sender: *4 required: - action @@ -182569,10 +182752,10 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - organization: *891 - project: &940 + enterprise: *893 + installation: *894 + organization: *895 + project: &944 title: Project type: object properties: @@ -182696,7 +182879,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -182776,10 +182959,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project_column: &939 + enterprise: *893 + installation: *894 + organization: *895 + project_column: &943 title: Project Column type: object properties: @@ -182818,7 +183001,7 @@ x-webhooks: - name - created_at - updated_at - repository: *892 + repository: *896 sender: *4 required: - action @@ -182897,18 +183080,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -182998,11 +183181,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 + repository: *896 sender: *4 required: - action @@ -183082,11 +183265,11 @@ x-webhooks: type: string enum: - moved - enterprise: *889 - installation: *890 - organization: *891 - project_column: *939 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project_column: *943 + repository: *896 sender: *4 required: - action @@ -183166,11 +183349,11 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183250,18 +183433,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - project: *940 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 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: *931 - required: *932 + properties: *935 + required: *936 nullable: true sender: *4 required: @@ -183363,11 +183546,11 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183446,11 +183629,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 - organization: *891 - project: *940 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + project: *944 + repository: *896 sender: *4 required: - action @@ -183531,8 +183714,8 @@ x-webhooks: type: string enum: - closed - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -183614,8 +183797,8 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -183697,8 +183880,8 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -183816,8 +183999,8 @@ x-webhooks: type: string to: type: string - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -183901,7 +184084,7 @@ x-webhooks: type: string enum: - archived - changes: &944 + changes: &948 type: object properties: archived_at: @@ -183915,9 +184098,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *890 - organization: *891 - projects_v2_item: &941 + installation: *894 + organization: *895 + projects_v2_item: &945 title: Projects v2 Item description: An item belonging to a project type: object @@ -184052,9 +184235,9 @@ x-webhooks: nullable: true to: type: string - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184136,9 +184319,9 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184219,9 +184402,9 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184327,7 +184510,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &942 + - &946 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -184349,7 +184532,7 @@ x-webhooks: required: - id - name - - &943 + - &947 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -184383,8 +184566,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *942 - - *943 + - *946 + - *947 required: - field_value - type: object @@ -184400,9 +184583,9 @@ x-webhooks: nullable: true required: - body - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184497,9 +184680,9 @@ x-webhooks: to: type: string nullable: true - installation: *890 - organization: *891 - projects_v2_item: *941 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184582,10 +184765,10 @@ x-webhooks: type: string enum: - restored - changes: *944 - installation: *890 - organization: *891 - projects_v2_item: *941 + changes: *948 + installation: *894 + organization: *895 + projects_v2_item: *945 sender: *4 required: - action @@ -184667,8 +184850,8 @@ x-webhooks: type: string enum: - reopened - installation: *890 - organization: *891 + installation: *894 + organization: *895 projects_v2: *432 sender: *4 required: @@ -184750,14 +184933,14 @@ x-webhooks: type: string enum: - created - installation: *890 - organization: *891 - projects_v2_status_update: &947 + installation: *894 + organization: *895 + projects_v2_status_update: &951 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *945 - required: *946 + properties: *949 + required: *950 sender: *4 required: - action @@ -184838,9 +185021,9 @@ x-webhooks: type: string enum: - deleted - installation: *890 - organization: *891 - projects_v2_status_update: *947 + installation: *894 + organization: *895 + projects_v2_status_update: *951 sender: *4 required: - action @@ -184976,9 +185159,9 @@ x-webhooks: type: string format: date nullable: true - installation: *890 - organization: *891 - projects_v2_status_update: *947 + installation: *894 + organization: *895 + projects_v2_status_update: *951 sender: *4 required: - action @@ -185049,10 +185232,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - repository @@ -185129,13 +185312,13 @@ x-webhooks: type: string enum: - assigned - assignee: *918 - enterprise: *889 - installation: *890 - number: &948 + assignee: *922 + enterprise: *893 + installation: *894 + number: &952 description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -187422,7 +187605,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -187504,11 +187687,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -189790,7 +189973,7 @@ x-webhooks: - draft reason: type: string - repository: *892 + repository: *896 sender: *4 required: - action @@ -189872,11 +190055,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -192158,7 +192341,7 @@ x-webhooks: - draft reason: type: string - repository: *892 + repository: *896 sender: *4 required: - action @@ -192240,13 +192423,13 @@ x-webhooks: type: string enum: - closed - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: &949 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: &953 allOf: - - *736 + - *740 - type: object properties: allow_auto_merge: @@ -192308,7 +192491,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *892 + repository: *896 sender: *4 required: - action @@ -192389,12 +192572,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -192474,11 +192657,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *889 - milestone: *718 - number: *948 - organization: *891 - pull_request: &950 + enterprise: *893 + milestone: *722 + number: *952 + organization: *895 + pull_request: &954 title: Pull Request type: object properties: @@ -194759,7 +194942,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -194838,11 +195021,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -197142,7 +197325,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *892 + repository: *896 sender: *4 required: - action @@ -197266,12 +197449,12 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -197351,11 +197534,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -199640,7 +199823,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -199720,11 +199903,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *889 - installation: *890 - label: *912 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + label: *916 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -202010,7 +202193,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -202091,10 +202274,10 @@ x-webhooks: type: string enum: - locked - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -204378,7 +204561,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -204458,12 +204641,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *889 - milestone: *718 - number: *948 - organization: *891 - pull_request: *950 - repository: *892 + enterprise: *893 + milestone: *722 + number: *952 + organization: *895 + pull_request: *954 + repository: *896 sender: *4 required: - action @@ -204542,12 +204725,12 @@ x-webhooks: type: string enum: - opened - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -204628,12 +204811,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -204713,12 +204896,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *889 - installation: *890 - number: *948 - organization: *891 - pull_request: *949 - repository: *892 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 + pull_request: *953 + repository: *896 sender: *4 required: - action @@ -205084,9 +205267,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -207260,7 +207443,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -207340,7 +207523,7 @@ x-webhooks: type: string enum: - deleted - comment: &952 + comment: &956 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -207625,9 +207808,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -209789,7 +209972,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -209869,11 +210052,11 @@ x-webhooks: type: string enum: - edited - changes: *951 - comment: *952 - enterprise: *889 - installation: *890 - organization: *891 + changes: *955 + comment: *956 + enterprise: *893 + installation: *894 + organization: *895 pull_request: type: object properties: @@ -212038,7 +212221,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *892 + repository: *896 sender: *4 required: - action @@ -212119,9 +212302,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -214298,7 +214481,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 review: description: The review that was affected. type: object @@ -214545,9 +214728,9 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -216597,8 +216780,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 - review: &953 + repository: *896 + review: &957 description: The review that was affected. type: object properties: @@ -216831,12 +217014,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -219123,7 +219306,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_reviewer: title: User type: object @@ -219207,12 +219390,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -221506,7 +221689,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_team: title: Team description: Groups of organization members that gives permissions @@ -221698,12 +221881,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -223992,7 +224175,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_reviewer: title: User type: object @@ -224077,12 +224260,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *889 - installation: *890 + enterprise: *893 + installation: *894 number: description: The pull request number. type: integer - organization: *891 + organization: *895 pull_request: title: Pull Request type: object @@ -226362,7 +226545,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 requested_team: title: Team description: Groups of organization members that gives permissions @@ -226543,9 +226726,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -228724,8 +228907,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 - review: *953 + repository: *896 + review: *957 sender: *4 required: - action @@ -228805,9 +228988,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -230895,7 +231078,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 sender: *4 thread: type: object @@ -231282,9 +231465,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 pull_request: title: Simple Pull Request type: object @@ -233358,7 +233541,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *892 + repository: *896 sender: *4 thread: type: object @@ -233748,10 +233931,10 @@ x-webhooks: type: string before: type: string - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -236026,7 +236209,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -236108,11 +236291,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *954 - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + assignee: *958 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -238399,7 +238582,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -238478,11 +238661,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *889 - installation: *890 - label: *912 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + label: *916 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -240759,7 +240942,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -240840,10 +241023,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *889 - installation: *890 - number: *948 - organization: *891 + enterprise: *893 + installation: *894 + number: *952 + organization: *895 pull_request: title: Pull Request type: object @@ -243112,7 +243295,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *892 + repository: *896 sender: *4 required: - action @@ -243312,7 +243495,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *889 + enterprise: *893 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -243404,8 +243587,8 @@ x-webhooks: - url - author - committer - installation: *890 - organization: *891 + installation: *894 + organization: *895 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -243991,9 +244174,9 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 registry_package: type: object properties: @@ -244439,7 +244622,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *935 + items: *939 summary: type: string tag_name: @@ -244493,7 +244676,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -244571,9 +244754,9 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 registry_package: type: object properties: @@ -244881,7 +245064,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *935 + items: *939 summary: type: string tag_name: @@ -244930,7 +245113,7 @@ x-webhooks: - owner - package_version - registry - repository: *892 + repository: *896 sender: *4 required: - action @@ -245007,10 +245190,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - release: &955 + enterprise: *893 + installation: *894 + organization: *895 + release: &959 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -245328,7 +245511,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *892 + repository: *896 sender: *4 required: - action @@ -245405,11 +245588,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -245526,11 +245709,11 @@ x-webhooks: type: boolean required: - to - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -245608,9 +245791,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -245932,7 +246115,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *892 + repository: *896 sender: *4 required: - action @@ -246008,10 +246191,10 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - release: &956 + enterprise: *893 + installation: *894 + organization: *895 + release: &960 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -246330,7 +246513,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *892 + repository: *896 sender: *4 required: - action @@ -246406,11 +246589,11 @@ x-webhooks: type: string enum: - released - enterprise: *889 - installation: *890 - organization: *891 - release: *955 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *959 + repository: *896 sender: *4 required: - action @@ -246486,11 +246669,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *889 - installation: *890 - organization: *891 - release: *956 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + release: *960 + repository: *896 sender: *4 required: - action @@ -246566,11 +246749,11 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - repository_advisory: *789 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + repository_advisory: *793 sender: *4 required: - action @@ -246646,11 +246829,11 @@ x-webhooks: type: string enum: - reported - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - repository_advisory: *789 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + repository_advisory: *793 sender: *4 required: - action @@ -246726,10 +246909,10 @@ x-webhooks: type: string enum: - archived - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -246806,10 +246989,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -246887,10 +247070,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -246974,10 +247157,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247089,10 +247272,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247164,10 +247347,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 status: type: string @@ -247248,10 +247431,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247328,10 +247511,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247425,10 +247608,10 @@ x-webhooks: - name required: - repository - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -247508,10 +247691,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 sender: *4 required: @@ -247590,10 +247773,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 sender: *4 required: @@ -247672,10 +247855,10 @@ x-webhooks: type: string enum: - edited - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 repository_ruleset: *195 changes: type: object @@ -247737,16 +247920,16 @@ x-webhooks: properties: added: type: array - items: *756 + items: *760 deleted: type: array - items: *756 + items: *760 updated: type: array items: type: object properties: - rule: *756 + rule: *760 changes: type: object properties: @@ -247980,10 +248163,10 @@ x-webhooks: - from required: - owner - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248061,10 +248244,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248142,7 +248325,7 @@ x-webhooks: type: string enum: - create - alert: &957 + alert: &961 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -248264,10 +248447,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248473,10 +248656,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248554,11 +248737,11 @@ x-webhooks: type: string enum: - reopen - alert: *957 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *961 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248757,10 +248940,10 @@ x-webhooks: enum: - fixed - open - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -248838,7 +249021,7 @@ x-webhooks: type: string enum: - assigned - alert: &958 + alert: &962 type: object properties: number: *131 @@ -248981,10 +249164,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249062,11 +249245,11 @@ x-webhooks: type: string enum: - created - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249147,11 +249330,11 @@ x-webhooks: type: string enum: - created - alert: *958 - installation: *890 - location: *959 - organization: *891 - repository: *892 + alert: *962 + installation: *894 + location: *963 + organization: *895 + repository: *896 sender: *4 required: - location @@ -249389,11 +249572,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249471,11 +249654,11 @@ x-webhooks: type: string enum: - reopened - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249553,11 +249736,11 @@ x-webhooks: type: string enum: - resolved - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249635,12 +249818,12 @@ x-webhooks: type: string enum: - unassigned - alert: *958 + alert: *962 assignee: *4 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249718,11 +249901,11 @@ x-webhooks: type: string enum: - validated - alert: *958 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + alert: *962 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -249848,10 +250031,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *892 - enterprise: *889 - installation: *890 - organization: *891 + repository: *896 + enterprise: *893 + installation: *894 + organization: *895 sender: *4 required: - action @@ -249929,11 +250112,11 @@ x-webhooks: type: string enum: - published - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - security_advisory: &960 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + security_advisory: &964 description: The details of the security advisory, including summary, description, and severity. type: object @@ -250104,11 +250287,11 @@ x-webhooks: type: string enum: - updated - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 - security_advisory: *960 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 + security_advisory: *964 sender: *4 required: - action @@ -250181,10 +250364,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -250357,9 +250540,9 @@ x-webhooks: type: object properties: security_and_analysis: *449 - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: *496 sender: *4 required: @@ -250438,12 +250621,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: &961 + sponsorship: &965 type: object properties: created_at: @@ -250744,12 +250927,12 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - sponsorship @@ -250837,12 +251020,12 @@ x-webhooks: type: string required: - from - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -250919,17 +251102,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &962 + effective_date: &966 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: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - sponsorship @@ -251003,7 +251186,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &963 + changes: &967 type: object properties: tier: @@ -251047,13 +251230,13 @@ x-webhooks: - from required: - tier - effective_date: *962 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + effective_date: *966 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -251130,13 +251313,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *963 - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + changes: *967 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - sponsorship: *961 + sponsorship: *965 required: - action - changes @@ -251210,10 +251393,10 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -251296,10 +251479,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -251719,15 +251902,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *889 + enterprise: *893 id: description: The unique identifier of the status. type: integer - installation: *890 + installation: *894 name: type: string - organization: *891 - repository: *892 + organization: *895 + repository: *896 sender: *4 sha: description: The Commit SHA. @@ -251842,9 +252025,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -251933,9 +252116,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252024,9 +252207,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252115,9 +252298,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *890 - organization: *891 - repository: *892 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -252193,12 +252376,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - team: &964 + team: &968 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -252421,9 +252604,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -252881,7 +253064,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -252957,9 +253140,9 @@ x-webhooks: type: string enum: - created - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -253417,7 +253600,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -253494,9 +253677,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -253954,7 +254137,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -254098,9 +254281,9 @@ x-webhooks: - from required: - permissions - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -254558,7 +254741,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - changes @@ -254636,9 +254819,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *889 - installation: *890 - organization: *891 + enterprise: *893 + installation: *894 + organization: *895 repository: title: Repository description: A git repository @@ -255096,7 +255279,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *964 + team: *968 required: - action - team @@ -255172,10 +255355,10 @@ x-webhooks: type: string enum: - started - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 required: - action @@ -255248,16 +255431,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *889 + enterprise: *893 inputs: type: object nullable: true additionalProperties: true - installation: *890 - organization: *891 + installation: *894 + organization: *895 ref: type: string - repository: *892 + repository: *896 sender: *4 workflow: type: string @@ -255339,10 +255522,10 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: allOf: @@ -255658,10 +255841,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: allOf: @@ -256000,10 +256183,10 @@ x-webhooks: type: string enum: - queued - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: type: object @@ -256217,10 +256400,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 workflow_job: type: object @@ -256436,12 +256619,12 @@ x-webhooks: type: string enum: - completed - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object @@ -257440,12 +257623,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object @@ -258429,12 +258612,12 @@ x-webhooks: type: string enum: - requested - enterprise: *889 - installation: *890 - organization: *891 - repository: *892 + enterprise: *893 + installation: *894 + organization: *895 + repository: *896 sender: *4 - workflow: *908 + workflow: *912 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index be6048ed27..d800ac90e8 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -84370,6 +84370,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -87894,6 +87899,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -107119,6 +107129,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -114450,6 +114465,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -117974,6 +117994,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -190774,6 +190799,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -194298,6 +194328,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -210699,6 +210734,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -241666,6 +241706,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -251644,6 +251689,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -372963,7 +373013,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -430486,6 +430536,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -434010,6 +434065,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -459561,6 +459621,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -463194,6 +463259,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -471852,6 +471922,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -472857,6 +472932,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -476635,6 +476780,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -477640,6 +477790,76 @@ "to" ] }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "author_association": { "title": "author_association", "type": "string", @@ -481293,6 +481513,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -482184,551 +482409,78 @@ "content": { "application/json": { "schema": { - "title": "Issue", - "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "description": "URL for the issue", - "example": "https://api.github.com/repositories/42/issues/1", - "type": "string", - "format": "uri" - }, - "repository_url": { - "type": "string", - "format": "uri" - }, - "labels_url": { - "type": "string" - }, - "comments_url": { - "type": "string", - "format": "uri" - }, - "events_url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri" - }, - "number": { - "description": "Number uniquely identifying the issue within its repository", - "example": 42, - "type": "integer" - }, - "state": { - "description": "State of the issue; either 'open' or 'closed'", - "example": "open", - "type": "string" - }, - "state_reason": { - "description": "The reason for the current state", - "example": "not_planned", - "type": "string", - "nullable": true, - "enum": [ - "completed", - "reopened", - "not_planned", - "duplicate" - ] - }, - "title": { - "description": "Title of the issue", - "example": "Widget creation fails in Safari on OS X 10.8", - "type": "string" - }, - "body": { - "description": "Contents of the issue", - "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "A GitHub user.", + "allOf": [ + { + "title": "Issue", + "description": "Issues are a great way to keep track of tasks, enhancements, and bugs for your projects.", "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 + "format": "int64" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "labels": { - "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", - "example": [ - "bug", - "registration" - ], - "type": "array", - "items": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string", - "nullable": true - }, - "color": { - "type": "string", - "nullable": true - }, - "default": { - "type": "boolean" - } - } - } - ] - } - }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", - "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": { + "description": "URL for the issue", + "example": "https://api.github.com/repositories/42/issues/1", "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}" + "format": "uri" }, - "subscriptions_url": { + "repository_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" + "format": "uri" }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" + "labels_url": { + "type": "string" }, - "repos_url": { + "comments_url": { "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" + "format": "uri" }, "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" - } - }, - "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" - ], - "nullable": true - }, - "assignees": { - "type": "array", - "items": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - } - }, - "milestone": { - "title": "Milestone", - "description": "A collection of related issues and pull requests.", - "type": "object", - "properties": { - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + "format": "uri" }, "html_url": { "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World/milestones/v1.0" - }, - "labels_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" - }, - "id": { - "type": "integer", - "example": 1002604 - }, - "node_id": { - "type": "string", - "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + "format": "uri" }, "number": { - "description": "The number of the milestone.", - "type": "integer", - "example": 42 + "description": "Number uniquely identifying the issue within its repository", + "example": 42, + "type": "integer" }, "state": { - "description": "The state of the milestone.", + "description": "State of the issue; either 'open' or 'closed'", "example": "open", + "type": "string" + }, + "state_reason": { + "description": "The reason for the current state", + "example": "not_planned", "type": "string", + "nullable": true, "enum": [ - "open", - "closed" - ], - "default": "open" + "completed", + "reopened", + "not_planned", + "duplicate" + ] }, "title": { - "description": "The title of the milestone.", - "example": "v1.0", + "description": "Title of the issue", + "example": "Widget creation fails in Safari on OS X 10.8", "type": "string" }, - "description": { + "body": { + "description": "Contents of the issue", + "example": "It looks like the new widget form is broken on Safari. When I try and create the widget, Safari crashes. This is reproducible on 10.8, but not 10.9. Maybe a browser bug?", "type": "string", - "example": "Tracking milestone for version 1.0", "nullable": true }, - "creator": { + "user": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -482853,409 +482605,52 @@ ], "nullable": true }, - "open_issues": { - "type": "integer", - "example": 4 - }, - "closed_issues": { - "type": "integer", - "example": 8 - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-10T20:09:31Z" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2014-03-03T18:58:10Z" - }, - "closed_at": { - "type": "string", - "format": "date-time", - "example": "2013-02-12T13:22:01Z", - "nullable": true - }, - "due_on": { - "type": "string", - "format": "date-time", - "example": "2012-10-09T23:39:01Z", - "nullable": true - } - }, - "required": [ - "closed_issues", - "creator", - "description", - "due_on", - "closed_at", - "id", - "node_id", - "labels_url", - "html_url", - "number", - "open_issues", - "state", - "title", - "url", - "created_at", - "updated_at" - ], - "nullable": true - }, - "locked": { - "type": "boolean" - }, - "active_lock_reason": { - "type": "string", - "nullable": true - }, - "comments": { - "type": "integer" - }, - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "diff_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "patch_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "nullable": true - } - }, - "required": [ - "diff_url", - "html_url", - "patch_url", - "url" - ] - }, - "closed_at": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "draft": { - "type": "boolean" - }, - "closed_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ], - "nullable": true - }, - "body_html": { - "type": "string" - }, - "body_text": { - "type": "string" - }, - "timeline_url": { - "type": "string", - "format": "uri" - }, - "type": { - "title": "Issue Type", - "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "type": "integer", - "description": "The unique identifier of the issue type." - }, - "node_id": { - "type": "string", - "description": "The node identifier of the issue type." - }, - "name": { - "type": "string", - "description": "The name of the issue type." - }, - "description": { - "type": "string", - "description": "The description of the issue type.", - "nullable": true - }, - "color": { - "type": "string", - "description": "The color of the issue type.", - "enum": [ - "gray", - "blue", - "green", - "yellow", - "orange", - "red", - "pink", - "purple" - ], - "nullable": true - }, - "created_at": { - "type": "string", - "description": "The time the issue type created.", - "format": "date-time" - }, - "updated_at": { - "type": "string", - "description": "The time the issue type last updated.", - "format": "date-time" - }, - "is_enabled": { - "type": "boolean", - "description": "The enabled state of the issue type." - } - }, - "required": [ - "id", - "node_id", - "name", - "description" - ] - }, - "repository": { - "title": "Repository", - "description": "A repository on GitHub.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the repository", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the repository.", - "type": "string", - "example": "Team Environment" - }, - "full_name": { - "type": "string", - "example": "octocat/Hello-World" - }, - "license": { - "title": "License Simple", - "description": "License Simple", - "type": "object", - "properties": { - "key": { - "type": "string", - "example": "mit" - }, - "name": { - "type": "string", - "example": "MIT License" - }, - "url": { - "type": "string", - "nullable": true, - "format": "uri", - "example": "https://api.github.com/licenses/mit" - }, - "spdx_id": { - "type": "string", - "nullable": true, - "example": "MIT" - }, - "node_id": { - "type": "string", - "example": "MDc6TGljZW5zZW1pdA==" - }, - "html_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "key", - "name", - "url", - "spdx_id", - "node_id" + "labels": { + "description": "Labels to associate with this issue; pass one or more label names to replace the set of labels on this issue; send an empty array to clear all labels from the issue; note that the labels are silently dropped for users without push access to the repository", + "example": [ + "bug", + "registration" ], - "nullable": true - }, - "forks": { - "type": "integer" - }, - "permissions": { - "type": "object", - "properties": { - "admin": { - "type": "boolean" - }, - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - } - }, - "required": [ - "admin", - "pull", - "push" - ] + "type": "array", + "items": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri" + }, + "name": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "color": { + "type": "string", + "nullable": true + }, + "default": { + "type": "boolean" + } + } + } + ] + } }, - "owner": { + "assignee": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -483377,664 +482772,190 @@ "subscriptions_url", "type", "url" - ] - }, - "private": { - "description": "Whether the repository is private or public.", - "default": false, - "type": "boolean" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat/Hello-World" - }, - "description": { - "type": "string", - "example": "This your first repo!", - "nullable": true - }, - "fork": { - "type": "boolean" - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/repos/octocat/Hello-World" - }, - "archive_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" - }, - "assignees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" - }, - "blobs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" - }, - "branches_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" - }, - "collaborators_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" - }, - "comments_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" - }, - "commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" - }, - "compare_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" - }, - "contents_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" - }, - "contributors_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/contributors" - }, - "deployments_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/deployments" - }, - "downloads_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/downloads" - }, - "events_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/events" - }, - "forks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/forks" - }, - "git_commits_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" - }, - "git_refs_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" - }, - "git_tags_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" - }, - "git_url": { - "type": "string", - "example": "git:github.com/octocat/Hello-World.git" - }, - "issue_comment_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" - }, - "issue_events_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" - }, - "issues_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" - }, - "keys_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" - }, - "labels_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" - }, - "languages_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/languages" - }, - "merges_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/merges" - }, - "milestones_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" - }, - "notifications_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" - }, - "pulls_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" - }, - "releases_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" - }, - "ssh_url": { - "type": "string", - "example": "git@github.com:octocat/Hello-World.git" - }, - "stargazers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" - }, - "statuses_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" - }, - "subscribers_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" - }, - "subscription_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/subscription" - }, - "tags_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/tags" - }, - "teams_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/teams" - }, - "trees_url": { - "type": "string", - "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" - }, - "clone_url": { - "type": "string", - "example": "https://github.com/octocat/Hello-World.git" - }, - "mirror_url": { - "type": "string", - "format": "uri", - "example": "git:git.example.com/octocat/Hello-World", - "nullable": true - }, - "hooks_url": { - "type": "string", - "format": "uri", - "example": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "svn_url": { - "type": "string", - "format": "uri", - "example": "https://svn.github.com/octocat/Hello-World" - }, - "homepage": { - "type": "string", - "format": "uri", - "example": "https://github.com", - "nullable": true - }, - "language": { - "type": "string", + ], "nullable": true }, - "forks_count": { - "type": "integer", - "example": 9 - }, - "stargazers_count": { - "type": "integer", - "example": 80 - }, - "watchers_count": { - "type": "integer", - "example": 80 - }, - "size": { - "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", - "type": "integer", - "example": 108 - }, - "default_branch": { - "description": "The default branch of the repository.", - "type": "string", - "example": "master" - }, - "open_issues_count": { - "type": "integer", - "example": 0 - }, - "is_template": { - "description": "Whether this repository acts as a template that can be used to generate new repositories.", - "default": false, - "type": "boolean", - "example": true - }, - "topics": { + "assignees": { "type": "array", "items": { - "type": "string" - } - }, - "has_issues": { - "description": "Whether issues are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_projects": { - "description": "Whether projects are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_wiki": { - "description": "Whether the wiki is enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "has_pages": { - "type": "boolean" - }, - "has_downloads": { - "description": "Whether downloads are enabled.", - "default": true, - "type": "boolean", - "example": true, - "deprecated": true - }, - "has_discussions": { - "description": "Whether discussions are enabled.", - "default": false, - "type": "boolean", - "example": true - }, - "has_pull_requests": { - "description": "Whether pull requests are enabled.", - "default": true, - "type": "boolean", - "example": true - }, - "pull_request_creation_policy": { - "description": "The policy controlling who can create pull requests: all or collaborators_only.", - "type": "string", - "enum": [ - "all", - "collaborators_only" - ], - "example": "all" - }, - "archived": { - "description": "Whether the repository is archived.", - "default": false, - "type": "boolean" - }, - "disabled": { - "type": "boolean", - "description": "Returns whether or not this repository disabled." - }, - "visibility": { - "description": "The repository visibility: public, private, or internal.", - "default": "public", - "type": "string" - }, - "pushed_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:06:43Z", - "nullable": true - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:01:12Z", - "nullable": true - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-01-26T19:14:43Z", - "nullable": true - }, - "allow_rebase_merge": { - "description": "Whether to allow rebase merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "temp_clone_token": { - "type": "string" - }, - "allow_squash_merge": { - "description": "Whether to allow squash merges for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_auto_merge": { - "description": "Whether to allow Auto-merge to be used on pull requests.", - "default": false, - "type": "boolean", - "example": false - }, - "delete_branch_on_merge": { - "description": "Whether to delete head branches when pull requests are merged", - "default": false, - "type": "boolean", - "example": false - }, - "allow_update_branch": { - "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", - "default": false, - "type": "boolean", - "example": false - }, - "use_squash_pr_title_as_default": { - "type": "boolean", - "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", - "default": false, - "deprecated": true - }, - "squash_merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "COMMIT_OR_PR_TITLE" - ], - "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." - }, - "squash_merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "COMMIT_MESSAGES", - "BLANK" - ], - "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." - }, - "merge_commit_title": { - "type": "string", - "enum": [ - "PR_TITLE", - "MERGE_MESSAGE" - ], - "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." - }, - "merge_commit_message": { - "type": "string", - "enum": [ - "PR_BODY", - "PR_TITLE", - "BLANK" - ], - "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." - }, - "allow_merge_commit": { - "description": "Whether to allow merge commits for pull requests.", - "default": true, - "type": "boolean", - "example": true - }, - "allow_forking": { - "description": "Whether to allow forking this repo", - "type": "boolean" - }, - "web_commit_signoff_required": { - "description": "Whether to require contributors to sign off on web-based commits", - "default": false, - "type": "boolean" - }, - "open_issues": { - "type": "integer" - }, - "watchers": { - "type": "integer" - }, - "master_branch": { - "type": "string" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:42Z\"" - }, - "anonymous_access_enabled": { - "type": "boolean", - "description": "Whether anonymous git access is enabled for this repository" - }, - "code_search_index_status": { - "type": "object", - "description": "The status of the code search index for this repository", - "properties": { - "lexical_search_ok": { - "type": "boolean" - }, - "lexical_commit_sha": { - "type": "string" - } - } - } - }, - "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", - "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", - "html_url", - "id", - "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_downloads", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" - ], - "x-github-breaking-changes": [ - { - "changeset": "remove_use_squash_pr_title_as_default", - "patch": { - "properties": { - "use_squash_pr_title_as_default": null - } - }, - "version": "2026-03-10" - }, - { - "changeset": "deprecate_beta_media_type", - "patch": { - "properties": { - "master_branch": null - } - }, - "version": "2026-03-10" - }, - { - "changeset": "remove_has_downloads", - "patch": { + "title": "Simple User", + "description": "A GitHub user.", + "type": "object", "properties": { - "has_downloads": null + "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" + } }, "required": [ - "archive_url", - "assignees_url", - "blobs_url", - "branches_url", - "collaborators_url", - "comments_url", - "commits_url", - "compare_url", - "contents_url", - "contributors_url", - "deployments_url", - "description", - "downloads_url", + "avatar_url", "events_url", - "fork", - "forks_url", - "full_name", - "git_commits_url", - "git_refs_url", - "git_tags_url", - "hooks_url", + "followers_url", + "following_url", + "gists_url", + "gravatar_id", "html_url", "id", "node_id", - "issue_comment_url", - "issue_events_url", - "issues_url", - "keys_url", - "labels_url", - "languages_url", - "merges_url", - "milestones_url", - "name", - "notifications_url", - "owner", - "private", - "pulls_url", - "releases_url", - "stargazers_url", - "statuses_url", - "subscribers_url", - "subscription_url", - "tags_url", - "teams_url", - "trees_url", - "url", - "clone_url", - "default_branch", - "forks", - "forks_count", - "git_url", - "has_issues", - "has_projects", - "has_wiki", - "has_pages", - "homepage", - "language", - "archived", - "disabled", - "mirror_url", - "open_issues", - "open_issues_count", - "license", - "pushed_at", - "size", - "ssh_url", - "stargazers_count", - "svn_url", - "watchers", - "watchers_count", - "created_at", - "updated_at" + "login", + "organizations_url", + "received_events_url", + "repos_url", + "site_admin", + "starred_url", + "subscriptions_url", + "type", + "url" ] - }, - "version": "2026-03-10" - } - ] - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", - "type": "object", - "nullable": true, - "properties": { - "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" + } }, - "owner": { - "oneOf": [ - { + "milestone": { + "title": "Milestone", + "description": "A collection of related issues and pull requests.", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World/milestones/v1.0" + }, + "labels_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels" + }, + "id": { + "type": "integer", + "example": 1002604 + }, + "node_id": { + "type": "string", + "example": "MDk6TWlsZXN0b25lMTAwMjYwNA==" + }, + "number": { + "description": "The number of the milestone.", + "type": "integer", + "example": 42 + }, + "state": { + "description": "The state of the milestone.", + "example": "open", + "type": "string", + "enum": [ + "open", + "closed" + ], + "default": "open" + }, + "title": { + "description": "The title of the milestone.", + "example": "v1.0", + "type": "string" + }, + "description": { + "type": "string", + "example": "Tracking milestone for version 1.0", + "nullable": true + }, + "creator": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -484156,294 +483077,123 @@ "subscriptions_url", "type", "url" - ] + ], + "nullable": true }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] + "open_issues": { + "type": "integer", + "example": 4 + }, + "closed_issues": { + "type": "integer", + "example": 8 + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-10T20:09:31Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2014-03-03T18:58:10Z" + }, + "closed_at": { + "type": "string", + "format": "date-time", + "example": "2013-02-12T13:22:01Z", + "nullable": true + }, + "due_on": { + "type": "string", + "format": "date-time", + "example": "2012-10-09T23:39:01Z", + "nullable": true } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", + }, + "required": [ + "closed_issues", + "creator", + "description", + "due_on", + "closed_at", + "id", + "node_id", + "labels_url", + "html_url", + "number", + "open_issues", + "state", + "title", + "url", + "created_at", + "updated_at" + ], "nullable": true }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" + "locked": { + "type": "boolean" }, - "created_at": { + "active_lock_reason": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "nullable": true }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "comments": { + "type": "integer" }, - "permissions": { - "description": "The set of permissions for the GitHub app", + "pull_request": { "type": "object", "properties": { - "issues": { - "type": "string" + "merged_at": { + "type": "string", + "format": "date-time", + "nullable": true }, - "checks": { - "type": "string" + "diff_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "metadata": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "contents": { - "type": "string" + "patch_url": { + "type": "string", + "format": "uri", + "nullable": true }, - "deployments": { - "type": "string" + "url": { + "type": "string", + "format": "uri", + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" - ], - "type": "array", - "items": { - "type": "string" - } + "required": [ + "diff_url", + "html_url", + "patch_url", + "url" + ] }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" - ] - }, - "reactions": { - "title": "Reaction Rollup", - "type": "object", - "properties": { - "url": { + "closed_at": { "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { - "type": "integer" - }, - "hooray": { - "type": "integer" - }, - "eyes": { - "type": "integer" - }, - "rocket": { - "type": "integer" - } - }, - "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" - ] - }, - "sub_issues_summary": { - "title": "Sub-issues Summary", - "type": "object", - "properties": { - "total": { - "type": "integer" - }, - "completed": { - "type": "integer" - }, - "percent_completed": { - "type": "integer" - } - }, - "required": [ - "total", - "completed", - "percent_completed" - ] - }, - "parent_issue_url": { - "description": "URL to get the parent issue of this issue, if it is a sub-issue", - "type": "string", - "format": "uri", - "nullable": true - }, - "pinned_comment": { - "title": "Issue Comment", - "description": "Comments provide a way for people to collaborate on an issue.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the issue comment", - "example": 42, - "type": "integer", - "format": "int64" - }, - "node_id": { - "type": "string" + "format": "date-time", + "nullable": true }, - "url": { - "description": "URL for the issue comment", - "example": "https://api.github.com/repositories/42/issues/comments/1", + "created_at": { "type": "string", - "format": "uri" - }, - "body": { - "description": "Contents of the issue comment", - "example": "What version of Safari were you using when you observed this bug?", - "type": "string" - }, - "body_text": { - "type": "string" - }, - "body_html": { - "type": "string" + "format": "date-time" }, - "html_url": { + "updated_at": { "type": "string", - "format": "uri" + "format": "date-time" }, - "user": { + "draft": { + "type": "boolean" + }, + "closed_by": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -484568,34 +483318,921 @@ ], "nullable": true }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_html": { + "type": "string" }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" + "body_text": { + "type": "string" }, - "issue_url": { + "timeline_url": { "type": "string", "format": "uri" }, - "author_association": { - "title": "author_association", - "type": "string", - "example": "OWNER", - "description": "How the author is associated with the repository.", - "enum": [ - "COLLABORATOR", - "CONTRIBUTOR", - "FIRST_TIMER", - "FIRST_TIME_CONTRIBUTOR", - "MANNEQUIN", - "MEMBER", - "NONE", - "OWNER" + "type": { + "title": "Issue Type", + "description": "The type assigned to the issue. This is only present for issues in repositories where issue types are supported.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": "string", + "description": "The description of the issue type.", + "nullable": true + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "repository": { + "title": "Repository", + "description": "A repository on GitHub.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the repository", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the repository.", + "type": "string", + "example": "Team Environment" + }, + "full_name": { + "type": "string", + "example": "octocat/Hello-World" + }, + "license": { + "title": "License Simple", + "description": "License Simple", + "type": "object", + "properties": { + "key": { + "type": "string", + "example": "mit" + }, + "name": { + "type": "string", + "example": "MIT License" + }, + "url": { + "type": "string", + "nullable": true, + "format": "uri", + "example": "https://api.github.com/licenses/mit" + }, + "spdx_id": { + "type": "string", + "nullable": true, + "example": "MIT" + }, + "node_id": { + "type": "string", + "example": "MDc6TGljZW5zZW1pdA==" + }, + "html_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "key", + "name", + "url", + "spdx_id", + "node_id" + ], + "nullable": true + }, + "forks": { + "type": "integer" + }, + "permissions": { + "type": "object", + "properties": { + "admin": { + "type": "boolean" + }, + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + } + }, + "required": [ + "admin", + "pull", + "push" + ] + }, + "owner": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "private": { + "description": "Whether the repository is private or public.", + "default": false, + "type": "boolean" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/octocat/Hello-World" + }, + "description": { + "type": "string", + "example": "This your first repo!", + "nullable": true + }, + "fork": { + "type": "boolean" + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/repos/octocat/Hello-World" + }, + "archive_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}" + }, + "assignees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}" + }, + "blobs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}" + }, + "branches_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}" + }, + "collaborators_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}" + }, + "comments_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}" + }, + "commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}" + }, + "compare_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}" + }, + "contents_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}" + }, + "contributors_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/contributors" + }, + "deployments_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/deployments" + }, + "downloads_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/downloads" + }, + "events_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/events" + }, + "forks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/forks" + }, + "git_commits_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}" + }, + "git_refs_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}" + }, + "git_tags_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}" + }, + "git_url": { + "type": "string", + "example": "git:github.com/octocat/Hello-World.git" + }, + "issue_comment_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}" + }, + "issue_events_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}" + }, + "issues_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}" + }, + "keys_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}" + }, + "labels_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}" + }, + "languages_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/languages" + }, + "merges_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/merges" + }, + "milestones_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}" + }, + "notifications_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}" + }, + "pulls_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}" + }, + "releases_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}" + }, + "ssh_url": { + "type": "string", + "example": "git@github.com:octocat/Hello-World.git" + }, + "stargazers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/stargazers" + }, + "statuses_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}" + }, + "subscribers_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscribers" + }, + "subscription_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/subscription" + }, + "tags_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/tags" + }, + "teams_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/teams" + }, + "trees_url": { + "type": "string", + "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}" + }, + "clone_url": { + "type": "string", + "example": "https://github.com/octocat/Hello-World.git" + }, + "mirror_url": { + "type": "string", + "format": "uri", + "example": "git:git.example.com/octocat/Hello-World", + "nullable": true + }, + "hooks_url": { + "type": "string", + "format": "uri", + "example": "http://api.github.com/repos/octocat/Hello-World/hooks" + }, + "svn_url": { + "type": "string", + "format": "uri", + "example": "https://svn.github.com/octocat/Hello-World" + }, + "homepage": { + "type": "string", + "format": "uri", + "example": "https://github.com", + "nullable": true + }, + "language": { + "type": "string", + "nullable": true + }, + "forks_count": { + "type": "integer", + "example": 9 + }, + "stargazers_count": { + "type": "integer", + "example": 80 + }, + "watchers_count": { + "type": "integer", + "example": 80 + }, + "size": { + "description": "The size of the repository, in kilobytes. Size is calculated hourly. When a repository is initially created, the size is 0.", + "type": "integer", + "example": 108 + }, + "default_branch": { + "description": "The default branch of the repository.", + "type": "string", + "example": "master" + }, + "open_issues_count": { + "type": "integer", + "example": 0 + }, + "is_template": { + "description": "Whether this repository acts as a template that can be used to generate new repositories.", + "default": false, + "type": "boolean", + "example": true + }, + "topics": { + "type": "array", + "items": { + "type": "string" + } + }, + "has_issues": { + "description": "Whether issues are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_projects": { + "description": "Whether projects are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_wiki": { + "description": "Whether the wiki is enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "has_pages": { + "type": "boolean" + }, + "has_downloads": { + "description": "Whether downloads are enabled.", + "default": true, + "type": "boolean", + "example": true, + "deprecated": true + }, + "has_discussions": { + "description": "Whether discussions are enabled.", + "default": false, + "type": "boolean", + "example": true + }, + "has_pull_requests": { + "description": "Whether pull requests are enabled.", + "default": true, + "type": "boolean", + "example": true + }, + "pull_request_creation_policy": { + "description": "The policy controlling who can create pull requests: all or collaborators_only.", + "type": "string", + "enum": [ + "all", + "collaborators_only" + ], + "example": "all" + }, + "archived": { + "description": "Whether the repository is archived.", + "default": false, + "type": "boolean" + }, + "disabled": { + "type": "boolean", + "description": "Returns whether or not this repository disabled." + }, + "visibility": { + "description": "The repository visibility: public, private, or internal.", + "default": "public", + "type": "string" + }, + "pushed_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:06:43Z", + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:01:12Z", + "nullable": true + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-01-26T19:14:43Z", + "nullable": true + }, + "allow_rebase_merge": { + "description": "Whether to allow rebase merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "temp_clone_token": { + "type": "string" + }, + "allow_squash_merge": { + "description": "Whether to allow squash merges for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_auto_merge": { + "description": "Whether to allow Auto-merge to be used on pull requests.", + "default": false, + "type": "boolean", + "example": false + }, + "delete_branch_on_merge": { + "description": "Whether to delete head branches when pull requests are merged", + "default": false, + "type": "boolean", + "example": false + }, + "allow_update_branch": { + "description": "Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging.", + "default": false, + "type": "boolean", + "example": false + }, + "use_squash_pr_title_as_default": { + "type": "boolean", + "description": "Whether a squash merge commit can use the pull request title as default. **This property is closing down. Please use `squash_merge_commit_title` instead.", + "default": false, + "deprecated": true + }, + "squash_merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "COMMIT_OR_PR_TITLE" + ], + "description": "The default value for a squash merge commit title:\n\n- `PR_TITLE` - default to the pull request's title.\n- `COMMIT_OR_PR_TITLE` - default to the commit's title (if only one commit) or the pull request's title (when more than one commit)." + }, + "squash_merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "COMMIT_MESSAGES", + "BLANK" + ], + "description": "The default value for a squash merge commit message:\n\n- `PR_BODY` - default to the pull request's body.\n- `COMMIT_MESSAGES` - default to the branch's commit messages.\n- `BLANK` - default to a blank commit message." + }, + "merge_commit_title": { + "type": "string", + "enum": [ + "PR_TITLE", + "MERGE_MESSAGE" + ], + "description": "The default value for a merge commit title.\n\n- `PR_TITLE` - default to the pull request's title.\n- `MERGE_MESSAGE` - default to the classic title for a merge message (e.g., Merge pull request #123 from branch-name)." + }, + "merge_commit_message": { + "type": "string", + "enum": [ + "PR_BODY", + "PR_TITLE", + "BLANK" + ], + "description": "The default value for a merge commit message.\n\n- `PR_TITLE` - default to the pull request's title.\n- `PR_BODY` - default to the pull request's body.\n- `BLANK` - default to a blank commit message." + }, + "allow_merge_commit": { + "description": "Whether to allow merge commits for pull requests.", + "default": true, + "type": "boolean", + "example": true + }, + "allow_forking": { + "description": "Whether to allow forking this repo", + "type": "boolean" + }, + "web_commit_signoff_required": { + "description": "Whether to require contributors to sign off on web-based commits", + "default": false, + "type": "boolean" + }, + "open_issues": { + "type": "integer" + }, + "watchers": { + "type": "integer" + }, + "master_branch": { + "type": "string" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:42Z\"" + }, + "anonymous_access_enabled": { + "type": "boolean", + "description": "Whether anonymous git access is enabled for this repository" + }, + "code_search_index_status": { + "type": "object", + "description": "The status of the code search index for this repository", + "properties": { + "lexical_search_ok": { + "type": "boolean" + }, + "lexical_commit_sha": { + "type": "string" + } + } + } + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_downloads", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" + ], + "x-github-breaking-changes": [ + { + "changeset": "remove_use_squash_pr_title_as_default", + "patch": { + "properties": { + "use_squash_pr_title_as_default": null + } + }, + "version": "2026-03-10" + }, + { + "changeset": "deprecate_beta_media_type", + "patch": { + "properties": { + "master_branch": null + } + }, + "version": "2026-03-10" + }, + { + "changeset": "remove_has_downloads", + "patch": { + "properties": { + "has_downloads": null + }, + "required": [ + "archive_url", + "assignees_url", + "blobs_url", + "branches_url", + "collaborators_url", + "comments_url", + "commits_url", + "compare_url", + "contents_url", + "contributors_url", + "deployments_url", + "description", + "downloads_url", + "events_url", + "fork", + "forks_url", + "full_name", + "git_commits_url", + "git_refs_url", + "git_tags_url", + "hooks_url", + "html_url", + "id", + "node_id", + "issue_comment_url", + "issue_events_url", + "issues_url", + "keys_url", + "labels_url", + "languages_url", + "merges_url", + "milestones_url", + "name", + "notifications_url", + "owner", + "private", + "pulls_url", + "releases_url", + "stargazers_url", + "statuses_url", + "subscribers_url", + "subscription_url", + "tags_url", + "teams_url", + "trees_url", + "url", + "clone_url", + "default_branch", + "forks", + "forks_count", + "git_url", + "has_issues", + "has_projects", + "has_wiki", + "has_pages", + "homepage", + "language", + "archived", + "disabled", + "mirror_url", + "open_issues", + "open_issues_count", + "license", + "pushed_at", + "size", + "ssh_url", + "stargazers_count", + "svn_url", + "watchers", + "watchers_count", + "created_at", + "updated_at" + ] + }, + "version": "2026-03-10" + } ] }, "performed_via_github_app": { @@ -484746,591 +484383,1192 @@ "subscriptions_url", "type", "url" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] - }, - "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "sub_issues_summary": { + "title": "Sub-issues Summary", + "type": "object", + "properties": { + "total": { + "type": "integer" + }, + "completed": { + "type": "integer" + }, + "percent_completed": { + "type": "integer" + } + }, + "required": [ + "total", + "completed", + "percent_completed" + ] + }, + "parent_issue_url": { + "description": "URL to get the parent issue of this issue, if it is a sub-issue", + "type": "string", + "format": "uri", + "nullable": true + }, + "pinned_comment": { + "title": "Issue Comment", + "description": "Comments provide a way for people to collaborate on an issue.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the issue comment", + "example": 42, + "type": "integer", + "format": "int64" + }, + "node_id": { + "type": "string" + }, + "url": { + "description": "URL for the issue comment", + "example": "https://api.github.com/repositories/42/issues/comments/1", + "type": "string", + "format": "uri" + }, + "body": { + "description": "Contents of the issue comment", + "example": "What version of Safari were you using when you observed this bug?", + "type": "string" + }, + "body_text": { + "type": "string" + }, + "body_html": { + "type": "string" + }, + "html_url": { + "type": "string", + "format": "uri" + }, + "user": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "issue_url": { + "type": "string", + "format": "uri" + }, + "author_association": { + "title": "author_association", + "type": "string", + "example": "OWNER", + "description": "How the author is associated with the repository.", + "enum": [ + "COLLABORATOR", + "CONTRIBUTOR", + "FIRST_TIMER", + "FIRST_TIME_CONTRIBUTOR", + "MANNEQUIN", + "MEMBER", + "NONE", + "OWNER" + ] + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "reactions": { + "title": "Reaction Rollup", + "type": "object", + "properties": { + "url": { + "type": "string", + "format": "uri" + }, + "total_count": { + "type": "integer" + }, + "+1": { + "type": "integer" + }, + "-1": { + "type": "integer" + }, + "laugh": { + "type": "integer" + }, + "confused": { + "type": "integer" + }, + "heart": { + "type": "integer" + }, + "hooray": { + "type": "integer" + }, + "eyes": { + "type": "integer" + }, + "rocket": { + "type": "integer" + } + }, + "required": [ + "url", + "total_count", + "+1", + "-1", + "laugh", + "confused", + "heart", + "hooray", + "eyes", + "rocket" + ] + }, + "pin": { + "title": "Pinned Issue Comment", + "description": "Context around who pinned an issue comment and when it was pinned.", + "type": "object", + "properties": { + "pinned_at": { + "type": "string", + "format": "date-time", + "example": "2011-04-14T16:00:49Z" + }, + "pinned_by": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ], + "nullable": true } }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "required": [ + "pinned_at", + "pinned_by" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" + "nullable": true } }, "required": [ "id", "node_id", - "owner", - "name", - "description", - "external_url", "html_url", + "issue_url", + "user", + "url", "created_at", - "updated_at", - "permissions", - "events" - ] + "updated_at" + ], + "nullable": true }, - "reactions": { - "title": "Reaction Rollup", + "issue_dependencies_summary": { + "title": "Issue Dependencies Summary", "type": "object", "properties": { - "url": { - "type": "string", - "format": "uri" - }, - "total_count": { - "type": "integer" - }, - "+1": { - "type": "integer" - }, - "-1": { - "type": "integer" - }, - "laugh": { - "type": "integer" - }, - "confused": { - "type": "integer" - }, - "heart": { + "blocked_by": { "type": "integer" }, - "hooray": { + "blocking": { "type": "integer" }, - "eyes": { + "total_blocked_by": { "type": "integer" }, - "rocket": { + "total_blocking": { "type": "integer" } }, "required": [ - "url", - "total_count", - "+1", - "-1", - "laugh", - "confused", - "heart", - "hooray", - "eyes", - "rocket" + "blocked_by", + "blocking", + "total_blocked_by", + "total_blocking" ] }, - "pin": { - "title": "Pinned Issue Comment", - "description": "Context around who pinned an issue comment and when it was pinned.", - "type": "object", - "properties": { - "pinned_at": { - "type": "string", - "format": "date-time", - "example": "2011-04-14T16:00:49Z" - }, - "pinned_by": { - "title": "Simple User", - "description": "A GitHub user.", - "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\"" + "issue_field_values": { + "type": "array", + "items": { + "title": "Issue Field Value", + "description": "A value assigned to an issue field", + "type": "object", + "properties": { + "issue_field_id": { + "description": "Unique identifier for the issue field.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, + "node_id": { + "type": "string", + "example": "IFT_GDKND" + }, + "data_type": { + "description": "The data type of the issue field", + "type": "string", + "enum": [ + "text", + "single_select", + "multi_select", + "number", + "date" + ], + "example": "text" + }, + "value": { + "description": "The value of the issue field", + "anyOf": [ + { + "type": "string", + "example": "Sample text" + }, + { + "type": "number", + "example": 42.5 + }, + { + "type": "integer", + "example": 1 + } + ], + "nullable": true + }, + "single_select_option": { + "description": "Details about the selected option (only present for single_select fields)", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } }, - "user_view_type": { - "type": "string", - "example": "public" - } + "required": [ + "id", + "name", + "color" + ], + "nullable": true }, - "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" - ], - "nullable": true - } - }, - "required": [ - "pinned_at", - "pinned_by" - ], - "nullable": true + "multi_select_options": { + "description": "Details about the selected options", + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "description": "Unique identifier for the option.", + "type": "integer", + "format": "int64", + "example": 1 + }, + "name": { + "description": "The name of the option", + "type": "string", + "example": "High" + }, + "color": { + "description": "The color of the option", + "type": "string", + "example": "red" + } + }, + "required": [ + "id", + "name", + "color" + ] + }, + "nullable": true + } + }, + "required": [ + "issue_field_id", + "node_id", + "data_type", + "value" + ] + } } }, "required": [ + "assignee", + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", "id", "node_id", - "html_url", - "issue_url", - "user", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", "url", + "user", "created_at", "updated_at" ], - "nullable": true - }, - "issue_dependencies_summary": { - "title": "Issue Dependencies Summary", - "type": "object", - "properties": { - "blocked_by": { - "type": "integer" - }, - "blocking": { - "type": "integer" - }, - "total_blocked_by": { - "type": "integer" - }, - "total_blocking": { - "type": "integer" - } - }, - "required": [ - "blocked_by", - "blocking", - "total_blocked_by", - "total_blocking" - ] - }, - "issue_field_values": { - "type": "array", - "items": { - "title": "Issue Field Value", - "description": "A value assigned to an issue field", - "type": "object", - "properties": { - "issue_field_id": { - "description": "Unique identifier for the issue field.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "IFT_GDKND" - }, - "data_type": { - "description": "The data type of the issue field", - "type": "string", - "enum": [ - "text", - "single_select", - "multi_select", - "number", - "date" - ], - "example": "text" - }, - "value": { - "description": "The value of the issue field", - "anyOf": [ - { - "type": "string", - "example": "Sample text" - }, - { - "type": "number", - "example": 42.5 - }, - { - "type": "integer", - "example": 1 + "x-github-breaking-changes": [ + { + "changeset": "deprecate_beta_media_type", + "patch": { + "properties": { + "pull_request": { + "type": "object", + "properties": { + "merged_at": { + "nullable": false + }, + "diff_url": { + "nullable": false + }, + "html_url": { + "nullable": false + }, + "patch_url": { + "nullable": false + }, + "url": { + "nullable": false + } + } } - ], - "nullable": true + } }, - "single_select_option": { - "description": "Details about the selected option (only present for single_select fields)", - "type": "object", + "version": "2026-03-10" + }, + { + "changeset": "remove_singular_assignee_from_issues_and_pull_requests", + "patch": { "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" - }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } + "assignee": null }, "required": [ + "closed_at", + "comments", + "comments_url", + "events_url", + "html_url", "id", - "name", - "color" - ], - "nullable": true + "node_id", + "labels", + "labels_url", + "milestone", + "number", + "repository_url", + "state", + "locked", + "title", + "url", + "user", + "created_at", + "updated_at" + ] }, - "multi_select_options": { - "description": "Details about the selected options", - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "description": "Unique identifier for the option.", - "type": "integer", - "format": "int64", - "example": 1 - }, - "name": { - "description": "The name of the option", - "type": "string", - "example": "High" - }, - "color": { - "description": "The color of the option", - "type": "string", - "example": "red" - } - }, - "required": [ - "id", - "name", - "color" - ] - }, - "nullable": true - } - }, - "required": [ - "issue_field_id", - "node_id", - "data_type", - "value" - ] - } - } - }, - "required": [ - "assignee", - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" - ], - "x-github-breaking-changes": [ - { - "changeset": "deprecate_beta_media_type", - "patch": { - "properties": { - "pull_request": { - "type": "object", - "properties": { - "merged_at": { - "nullable": false - }, - "diff_url": { - "nullable": false - }, - "html_url": { - "nullable": false - }, - "patch_url": { - "nullable": false - }, - "url": { - "nullable": false - } - } - } + "version": "2026-03-10" } - }, - "version": "2026-03-10" + ] }, { - "changeset": "remove_singular_assignee_from_issues_and_pull_requests", - "patch": { - "properties": { - "assignee": null - }, - "required": [ - "closed_at", - "comments", - "comments_url", - "events_url", - "html_url", - "id", - "node_id", - "labels", - "labels_url", - "milestone", - "number", - "repository_url", - "state", - "locked", - "title", - "url", - "user", - "created_at", - "updated_at" - ] - }, - "version": "2026-03-10" + "type": "object", + "properties": {} } ] }, @@ -488774,6 +489012,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -492184,6 +492427,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -497540,6 +497788,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -501025,6 +501278,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -504600,6 +504858,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -508195,6 +508458,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -511630,8 +511898,494 @@ ] }, { - "title": "Demilestoned Issue Event", - "description": "Demilestoned Issue Event", + "title": "Demilestoned Issue Event", + "description": "Demilestoned Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "milestone": { + "type": "object", + "properties": { + "title": { + "type": "string" + } + }, + "required": [ + "title" + ] + } + }, + "required": [ + "milestone", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Renamed Issue Event", + "description": "Renamed Issue Event", "type": "object", "properties": { "id": { @@ -512090,20 +512844,24 @@ "events" ] }, - "milestone": { + "rename": { "type": "object", "properties": { - "title": { + "from": { + "type": "string" + }, + "to": { "type": "string" } }, "required": [ - "title" + "from", + "to" ] } }, "required": [ - "milestone", + "rename", "id", "node_id", "url", @@ -512116,8 +512874,8 @@ ] }, { - "title": "Renamed Issue Event", - "description": "Renamed Issue Event", + "title": "Review Requested Issue Event", + "description": "Review Requested Issue Event", "type": "object", "properties": { "id": { @@ -512576,24 +513334,467 @@ "events" ] }, - "rename": { + "review_requester": { + "title": "Simple User", + "description": "A GitHub user.", "type": "object", "properties": { - "from": { + "name": { + "nullable": true, "type": "string" }, - "to": { + "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" } }, "required": [ - "from", - "to" + "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" + ] + }, + "requested_team": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": "string", + "nullable": true + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + }, + "parent": { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "example": 1 + }, + "node_id": { + "type": "string", + "example": "MDQ6VGVhbTE=" + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1" + }, + "members_url": { + "type": "string", + "example": "https://api.github.com/organizations/1/team/1/members{/member}" + }, + "name": { + "description": "Name of the team", + "type": "string", + "example": "Justice League" + }, + "description": { + "description": "Description of the team", + "type": "string", + "nullable": true, + "example": "A great team." + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "example": "admin" + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "example": "closed" + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "example": "notifications_enabled" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/orgs/rails/teams/core" + }, + "repositories_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/organizations/1/team/1/repos" + }, + "slug": { + "type": "string", + "example": "justice-league" + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "example": "uid=example,ou=users,dc=github,dc=com", + "type": "string" + }, + "type": { + "description": "The ownership type of the team", + "type": "string", + "enum": [ + "enterprise", + "organization" + ] + }, + "organization_id": { + "type": "integer", + "description": "Unique identifier of the organization to which this team belongs", + "example": 37 + }, + "enterprise_id": { + "type": "integer", + "description": "Unique identifier of the enterprise to which this team belongs", + "example": 42 + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "type" + ], + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent", + "type" + ] + }, + "requested_reviewer": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" ] } }, "required": [ - "rename", + "review_requester", "id", "node_id", "url", @@ -512606,8 +513807,8 @@ ] }, { - "title": "Review Requested Issue Event", - "description": "Review Requested Issue Event", + "title": "Review Request Removed Issue Event", + "description": "Review Request Removed Issue Event", "type": "object", "properties": { "id": { @@ -513539,8 +514740,8 @@ ] }, { - "title": "Review Request Removed Issue Event", - "description": "Review Request Removed Issue Event", + "title": "Review Dismissed Issue Event", + "description": "Review Dismissed Issue Event", "type": "object", "properties": { "id": { @@ -513999,7 +515200,58 @@ "events" ] }, - "review_requester": { + "dismissed_review": { + "type": "object", + "properties": { + "state": { + "type": "string" + }, + "review_id": { + "type": "integer" + }, + "dismissal_message": { + "nullable": true, + "type": "string" + }, + "dismissal_commit_id": { + "type": "string" + } + }, + "required": [ + "state", + "review_id", + "dismissal_message" + ] + } + }, + "required": [ + "dismissed_review", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Locked Issue Event", + "description": "Locked Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -514123,217 +515375,869 @@ "url" ] }, - "requested_team": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", "type": "object", + "nullable": true, "properties": { "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, "type": "integer" }, - "node_id": { + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", "type": "string" }, - "name": { - "type": "string" + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" }, - "slug": { + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", "type": "string" }, "description": { "type": "string", + "example": "The description of the app.", "nullable": true }, - "privacy": { - "type": "string" + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" }, - "notification_setting": { - "type": "string" + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" }, - "permission": { - "type": "string" + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" }, "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "pull": { - "type": "boolean" + "issues": { + "type": "string" }, - "triage": { - "type": "boolean" + "checks": { + "type": "string" }, - "push": { - "type": "boolean" + "metadata": { + "type": "string" }, - "maintain": { - "type": "boolean" + "contents": { + "type": "string" }, - "admin": { - "type": "boolean" + "deployments": { + "type": "string" } }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "lock_reason": { + "type": "string", + "example": "\"off-topic\"", + "nullable": true + } + }, + "required": [ + "lock_reason", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Added to Project Issue Event", + "description": "Added to Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + "format": "uri", + "example": "https://api.github.com/users/octocat" }, "html_url": { "type": "string", "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" + "example": "https://github.com/octocat" }, - "members_url": { - "type": "string" + "followers_url": { + "type": "string", + "format": "uri", + "example": "https://api.github.com/users/octocat/followers" }, - "repositories_url": { + "following_url": { "type": "string", - "format": "uri" + "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": { - "description": "The ownership type of the team", "type": "string", - "enum": [ - "enterprise", - "organization" + "example": "User" + }, + "site_admin": { + "type": "boolean" + }, + "starred_at": { + "type": "string", + "example": "\"2020-07-09T00:17:55Z\"" + }, + "user_view_type": { + "type": "string", + "example": "public" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } ] }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true }, - "parent": { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", "type": "object", "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VGVhbTE=" - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1" - }, - "members_url": { - "type": "string", - "example": "https://api.github.com/organizations/1/team/1/members{/member}" - }, - "name": { - "description": "Name of the team", - "type": "string", - "example": "Justice League" - }, - "description": { - "description": "Description of the team", - "type": "string", - "nullable": true, - "example": "A great team." - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "example": "admin" - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "example": "closed" - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "example": "notifications_enabled" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/orgs/rails/teams/core" - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/organizations/1/team/1/repos" - }, - "slug": { - "type": "string", - "example": "justice-league" + "issues": { + "type": "string" }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "example": "uid=example,ou=users,dc=github,dc=com", + "checks": { "type": "string" }, - "type": { - "description": "The ownership type of the team", - "type": "string", - "enum": [ - "enterprise", - "organization" - ] + "metadata": { + "type": "string" }, - "organization_id": { - "type": "integer", - "description": "Unique identifier of the organization to which this team belongs", - "example": 37 + "contents": { + "type": "string" }, - "enterprise_id": { - "type": "integer", - "description": "Unique identifier of the enterprise to which this team belongs", - "example": 42 + "deployments": { + "type": "string" } }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "type" + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" ], - "nullable": true + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" } }, "required": [ "id", "node_id", - "url", - "members_url", + "owner", "name", "description", - "permission", + "external_url", "html_url", - "repositories_url", - "slug", - "parent", - "type" + "created_at", + "updated_at", + "permissions", + "events" ] }, - "requested_reviewer": { + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Moved Column in Project Issue Event", + "description": "Moved Column in Project Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { "title": "Simple User", "description": "A GitHub user.", "type": "object", @@ -514456,10 +516360,364 @@ "type", "url" ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "review_requester", "id", "node_id", "url", @@ -514472,8 +516730,8 @@ ] }, { - "title": "Review Dismissed Issue Event", - "description": "Review Dismissed Issue Event", + "title": "Removed from Project Issue Event", + "description": "Removed from Project Issue Event", "type": "object", "properties": { "id": { @@ -514932,32 +517190,40 @@ "events" ] }, - "dismissed_review": { + "project_card": { "type": "object", "properties": { - "state": { - "type": "string" + "id": { + "type": "integer" }, - "review_id": { + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { "type": "integer" }, - "dismissal_message": { - "nullable": true, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { "type": "string" }, - "dismissal_commit_id": { + "previous_column_name": { "type": "string" } }, "required": [ - "state", - "review_id", - "dismissal_message" + "id", + "url", + "project_id", + "project_url", + "column_name" ] } }, "required": [ - "dismissed_review", "id", "node_id", "url", @@ -514970,8 +517236,8 @@ ] }, { - "title": "Locked Issue Event", - "description": "Locked Issue Event", + "title": "Converted Note to Issue Issue Event", + "description": "Converted Note to Issue Issue Event", "type": "object", "properties": { "id": { @@ -515430,14 +517696,40 @@ "events" ] }, - "lock_reason": { - "type": "string", - "example": "\"off-topic\"", - "nullable": true + "project_card": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "url": { + "type": "string", + "format": "uri" + }, + "project_id": { + "type": "integer" + }, + "project_url": { + "type": "string", + "format": "uri" + }, + "column_name": { + "type": "string" + }, + "previous_column_name": { + "type": "string" + } + }, + "required": [ + "id", + "url", + "project_id", + "project_url", + "column_name" + ] } }, "required": [ - "lock_reason", "id", "node_id", "url", @@ -515450,8 +517742,8 @@ ] }, { - "title": "Added to Project Issue Event", - "description": "Added to Project Issue Event", + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", "type": "object", "properties": { "id": { @@ -515910,40 +518202,44 @@ "events" ] }, - "project_card": { + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", "id", "node_id", "url", @@ -515956,8 +518252,8 @@ ] }, { - "title": "Moved Column in Project Issue Event", - "description": "Moved Column in Project Issue Event", + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", "type": "object", "properties": { "id": { @@ -516416,40 +518712,44 @@ "events" ] }, - "project_card": { + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "properties": { "id": { - "type": "integer" + "type": "integer", + "description": "The unique identifier of the issue type." }, - "url": { + "name": { "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" + "description": "The name of the issue type." }, - "project_url": { + "color": { "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -516462,8 +518762,8 @@ ] }, { - "title": "Removed from Project Issue Event", - "description": "Removed from Project Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -516922,546 +519222,80 @@ "events" ] }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" - } - }, - "required": [ - "id", - "url", - "project_id", - "project_url", - "column_name" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "actor", - "event", - "commit_id", - "commit_url", - "created_at", - "performed_via_github_app" - ] - }, - { - "title": "Converted Note to Issue Issue Event", - "description": "Converted Note to Issue Issue Event", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "url": { - "type": "string" - }, - "actor": { - "title": "Simple User", - "description": "A GitHub user.", + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] }, - "event": { - "type": "string" - }, - "commit_id": { - "type": "string", - "nullable": true - }, - "commit_url": { - "type": "string", - "nullable": true - }, - "created_at": { - "type": "string" - }, - "performed_via_github_app": { - "title": "GitHub app", - "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", "nullable": true, "properties": { "id": { - "description": "Unique identifier of the GitHub app", - "example": 37, - "type": "integer" - }, - "slug": { - "description": "The slug name of the GitHub app", - "example": "probot-owners", - "type": "string" - }, - "node_id": { - "type": "string", - "example": "MDExOkludGVncmF0aW9uMQ==" - }, - "client_id": { - "type": "string", - "example": "\"Iv1.25b5d1e65ffc4022\"" - }, - "owner": { - "oneOf": [ - { - "title": "Simple User", - "description": "A GitHub user.", - "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" - } - }, - "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" - ] - }, - { - "title": "Enterprise", - "description": "An enterprise on GitHub.", - "type": "object", - "properties": { - "description": { - "description": "A short description of the enterprise.", - "type": "string", - "nullable": true - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/enterprises/octo-business" - }, - "website_url": { - "description": "The enterprise's website URL.", - "type": "string", - "nullable": true, - "format": "uri" - }, - "id": { - "description": "Unique identifier of the enterprise", - "example": 42, - "type": "integer" - }, - "node_id": { - "type": "string", - "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" - }, - "name": { - "description": "The name of the enterprise.", - "type": "string", - "example": "Octo Business" - }, - "slug": { - "description": "The slug url identifier for the enterprise.", - "type": "string", - "example": "octo-business" - }, - "created_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "nullable": true, - "format": "date-time", - "example": "2019-01-26T19:14:43Z" - }, - "avatar_url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "id", - "node_id", - "name", - "slug", - "html_url", - "created_at", - "updated_at", - "avatar_url" - ] - } - ] + "type": "integer", + "description": "The unique identifier of the issue type." }, "name": { - "description": "The name of the GitHub app", - "example": "Probot Owners", - "type": "string" - }, - "description": { - "type": "string", - "example": "The description of the app.", - "nullable": true - }, - "external_url": { - "type": "string", - "format": "uri", - "example": "https://example.com" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/apps/super-ci" - }, - "created_at": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" + "description": "The name of the issue type." }, - "updated_at": { + "color": { "type": "string", - "format": "date-time", - "example": "2017-07-08T16:18:44-04:00" - }, - "permissions": { - "description": "The set of permissions for the GitHub app", - "type": "object", - "properties": { - "issues": { - "type": "string" - }, - "checks": { - "type": "string" - }, - "metadata": { - "type": "string" - }, - "contents": { - "type": "string" - }, - "deployments": { - "type": "string" - } - }, - "additionalProperties": { - "type": "string" - }, - "example": { - "issues": "read", - "deployments": "write" - } - }, - "events": { - "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", - "example": [ - "label", - "deployment" + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" ], - "type": "array", - "items": { - "type": "string" - } - }, - "installations_count": { - "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", - "example": 5, - "type": "integer" - } - }, - "required": [ - "id", - "node_id", - "owner", - "name", - "description", - "external_url", - "html_url", - "created_at", - "updated_at", - "permissions", - "events" - ] - }, - "project_card": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "project_id": { - "type": "integer" - }, - "project_url": { - "type": "string", - "format": "uri" - }, - "column_name": { - "type": "string" - }, - "previous_column_name": { - "type": "string" + "nullable": true } }, "required": [ "id", - "url", - "project_id", - "project_url", - "column_name" + "name" ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -517639,6 +519473,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -517746,12 +519585,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -517763,18 +519604,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -518035,6 +519879,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -518142,12 +519991,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -518159,18 +520010,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -518541,6 +520395,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -518648,12 +520507,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -518665,18 +520526,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", @@ -523750,6 +525614,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -528220,6 +530089,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -531719,6 +533593,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -535182,6 +537061,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -538756,6 +540640,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -550555,6 +552444,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -552918,132 +554812,1631 @@ "events" ] }, - "assignee": { - "title": "Simple User", - "description": "A GitHub user.", + "assignee": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app", + "assignee" + ] + }, + { + "title": "State Change Issue Event", + "description": "State Change Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "state_reason": { + "type": "string", + "nullable": true + } + }, + "required": [ + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "title": "GitHub app", + "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "description": "Unique identifier of the GitHub app", + "example": 37, + "type": "integer" + }, + "slug": { + "description": "The slug name of the GitHub app", + "example": "probot-owners", + "type": "string" + }, + "node_id": { + "type": "string", + "example": "MDExOkludGVncmF0aW9uMQ==" + }, + "client_id": { + "type": "string", + "example": "\"Iv1.25b5d1e65ffc4022\"" + }, + "owner": { + "oneOf": [ + { + "title": "Simple User", + "description": "A GitHub user.", + "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" + } + }, + "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" + ] + }, + { + "title": "Enterprise", + "description": "An enterprise on GitHub.", + "type": "object", + "properties": { + "description": { + "description": "A short description of the enterprise.", + "type": "string", + "nullable": true + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/enterprises/octo-business" + }, + "website_url": { + "description": "The enterprise's website URL.", + "type": "string", + "nullable": true, + "format": "uri" + }, + "id": { + "description": "Unique identifier of the enterprise", + "example": 42, + "type": "integer" + }, + "node_id": { + "type": "string", + "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5" + }, + "name": { + "description": "The name of the enterprise.", + "type": "string", + "example": "Octo Business" + }, + "slug": { + "description": "The slug url identifier for the enterprise.", + "type": "string", + "example": "octo-business" + }, + "created_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:01:12Z" + }, + "updated_at": { + "type": "string", + "nullable": true, + "format": "date-time", + "example": "2019-01-26T19:14:43Z" + }, + "avatar_url": { + "type": "string", + "format": "uri" + } + }, + "required": [ + "id", + "node_id", + "name", + "slug", + "html_url", + "created_at", + "updated_at", + "avatar_url" + ] + } + ] + }, + "name": { + "description": "The name of the GitHub app", + "example": "Probot Owners", + "type": "string" + }, + "description": { + "type": "string", + "example": "The description of the app.", + "nullable": true + }, + "external_url": { + "type": "string", + "format": "uri", + "example": "https://example.com" + }, + "html_url": { + "type": "string", + "format": "uri", + "example": "https://github.com/apps/super-ci" + }, + "created_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "updated_at": { + "type": "string", + "format": "date-time", + "example": "2017-07-08T16:18:44-04:00" + }, + "permissions": { + "description": "The set of permissions for the GitHub app", + "type": "object", + "properties": { + "issues": { + "type": "string" + }, + "checks": { + "type": "string" + }, + "metadata": { + "type": "string" + }, + "contents": { + "type": "string" + }, + "deployments": { + "type": "string" + } + }, + "additionalProperties": { + "type": "string" + }, + "example": { + "issues": "read", + "deployments": "write" + } + }, + "events": { + "description": "The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.", + "example": [ + "label", + "deployment" + ], + "type": "array", + "items": { + "type": "string" + } + }, + "installations_count": { + "description": "The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.", + "example": 5, + "type": "integer" + } + }, + "required": [ + "id", + "node_id", + "owner", + "name", + "description", + "external_url", + "html_url", + "created_at", + "updated_at", + "permissions", + "events" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", "type": "object", + "nullable": true, "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=" + "description": "The unique identifier of the issue type." }, - "avatar_url": { + "name": { "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" + "description": "The name of the issue type." }, - "gravatar_id": { + "color": { "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], "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" } }, "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" + "name" ] } }, "required": [ + "prev_issue_type", "id", "node_id", "url", @@ -553052,13 +556445,12 @@ "commit_id", "commit_url", "created_at", - "performed_via_github_app", - "assignee" + "performed_via_github_app" ] }, { - "title": "State Change Issue Event", - "description": "State Change Issue Event", + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", "type": "object", "properties": { "id": { @@ -553517,12 +556909,80 @@ "events" ] }, - "state_reason": { - "type": "string", - "nullable": true + "issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, + "prev_issue_type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] } }, "required": [ + "issue_type", + "prev_issue_type", "id", "node_id", "url", @@ -664436,6 +667896,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -707399,6 +710864,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -738485,6 +741955,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -755868,6 +759343,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -759392,6 +762872,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -766594,6 +770079,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -770118,6 +773608,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -777330,6 +780825,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -780854,6 +784354,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -798231,6 +801736,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -812862,6 +816372,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -816386,6 +819901,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -823584,6 +827104,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -827108,6 +830633,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1066347,6 +1069877,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1069502,6 +1073037,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1075086,6 +1078626,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1078241,6 +1081786,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1083825,6 +1087375,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1087827,6 +1091382,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1092564,6 +1096124,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1096566,6 +1100131,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1100316,6 +1103886,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1104080,6 +1107655,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1108036,6 +1111616,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1111810,6 +1115395,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1115757,6 +1119347,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1119558,6 +1123153,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1123523,6 +1127123,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1127390,6 +1130995,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1131214,6 +1134824,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1134964,6 +1138579,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1138089,6 +1141709,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1140890,6 +1144515,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1145345,6 +1148975,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1149122,6 +1152757,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1152766,6 +1156406,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1155583,6 +1159228,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1159342,6 +1162992,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1163259,6 +1166914,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1167018,6 +1170678,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1170840,6 +1174505,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1174569,6 +1178239,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1178327,6 +1182002,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1547545,6 +1551225,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1551547,6 +1555232,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1556285,6 +1559975,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1560287,6 +1563982,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1565025,6 +1568725,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1569027,6 +1572732,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1573765,6 +1577475,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -1577767,6 +1581482,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 1e03228c52..e7ed91167a 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -1089,7 +1089,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &794 + - &798 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4318,7 +4318,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &803 + schema: &807 title: Scim Error description: Scim Error type: object @@ -11799,7 +11799,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &804 + '401': &808 description: Authorization failure '404': *6 x-github: @@ -24815,7 +24815,7 @@ paths: - *169 rules: type: array - items: &759 + items: &763 title: Repository Rule type: object description: A repository rule. @@ -24824,7 +24824,7 @@ paths: - *175 - *176 - *177 - - &757 + - &761 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25431,14 +25431,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &772 + state: &776 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &773 + resolution: &777 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -25555,8 +25555,8 @@ paths: pull request. ' - oneOf: &774 - - &776 + oneOf: &778 + - &780 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -25614,7 +25614,7 @@ paths: - blob_url - commit_sha - commit_url - - &777 + - &781 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -25669,7 +25669,7 @@ paths: - page_url - commit_sha - commit_url - - &778 + - &782 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -25689,7 +25689,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &779 + - &783 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -25709,7 +25709,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &780 + - &784 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -25729,7 +25729,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &781 + - &785 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -25743,7 +25743,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &782 + - &786 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -25757,7 +25757,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &783 + - &787 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -25771,7 +25771,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &784 + - &788 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -25791,7 +25791,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &785 + - &789 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -25811,7 +25811,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &786 + - &790 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -25831,7 +25831,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &787 + - &791 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -25851,7 +25851,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &788 + - &792 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -29729,7 +29729,7 @@ paths: properties: action: type: string - discussion: &912 + discussion: &916 title: Discussion description: A Discussion in a repository. type: object @@ -30474,7 +30474,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &831 + sub_issues_summary: &835 title: Sub-issues Summary type: object properties: @@ -30561,7 +30561,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &714 + properties: &715 pinned_at: type: string format: date-time @@ -30573,7 +30573,7 @@ paths: properties: *20 required: *21 nullable: true - required: &715 + required: &716 - pinned_at - pinned_by nullable: true @@ -30587,7 +30587,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &832 + issue_dependencies_summary: &836 title: Issue Dependencies Summary type: object properties: @@ -30606,7 +30606,7 @@ paths: - total_blocking issue_field_values: type: array - items: &698 + items: &699 title: Issue Field Value description: A value assigned to an issue field type: object @@ -30617,6 +30617,11 @@ paths: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the + issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -31438,7 +31443,7 @@ paths: type: string release: allOf: - - &750 + - &754 title: Release description: A release. type: object @@ -31509,7 +31514,7 @@ paths: author: *4 assets: type: array - items: &751 + items: &755 title: Release Asset description: Data related to a release. type: object @@ -32117,7 +32122,7 @@ paths: url: type: string format: uri - user: &838 + user: &842 title: Public User description: Public User type: object @@ -35535,7 +35540,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &724 + - &728 name: all description: If `true`, show notifications marked as read. in: query @@ -35543,7 +35548,7 @@ paths: schema: type: boolean default: false - - &725 + - &729 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -35553,7 +35558,7 @@ paths: type: boolean default: false - *235 - - &726 + - &730 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -36097,7 +36102,7 @@ paths: - url - subscription_url examples: - default: &727 + default: &731 value: - id: '1' repository: @@ -36962,7 +36967,7 @@ paths: type: array items: *160 examples: - default: &733 + default: &737 value: - property_name: environment value: production @@ -37012,7 +37017,7 @@ paths: required: - properties examples: - default: &734 + default: &738 value: properties: - property_name: environment @@ -43676,12 +43681,12 @@ paths: required: - subject_digests examples: - default: &870 + default: &874 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &871 + withPredicateType: &875 value: subject_digests: - sha256:abc123 @@ -43739,7 +43744,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &872 + default: &876 value: attestations_subject_digests: - sha256:abc: @@ -56614,7 +56619,7 @@ paths: parameters: - *89 - *412 - - &853 + - &857 name: repo_name description: repo_name parameter in: path @@ -57960,7 +57965,7 @@ paths: - nuget - container - *89 - - &854 + - &858 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -58001,7 +58006,7 @@ paths: default: *418 '403': *29 '401': *25 - '400': &856 + '400': &860 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60098,7 +60103,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &949 + properties: &953 id: type: number description: The unique identifier of the status update. @@ -60146,7 +60151,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &950 + required: &954 - id - node_id - created_at @@ -60586,7 +60591,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: &736 + auto_merge: &740 title: Auto merge description: The status of auto merging a pull request. type: object @@ -61036,7 +61041,7 @@ paths: - updated_at - project_url examples: - default: &876 + default: &880 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61213,7 +61218,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &877 + items: &881 type: object properties: name: @@ -61250,7 +61255,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &878 + iteration_configuration: &882 type: object description: The configuration for iteration fields. properties: @@ -61300,7 +61305,7 @@ paths: value: name: Due date data_type: date - single_select_field: &879 + single_select_field: &883 summary: Create a single select field value: name: Priority @@ -61327,7 +61332,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &880 + iteration_field: &884 summary: Create an iteration field value: name: Sprint @@ -61353,7 +61358,7 @@ paths: application/json: schema: *439 examples: - text_field: &881 + text_field: &885 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -61362,7 +61367,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: &882 + number_field: &886 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -61371,7 +61376,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: &883 + date_field: &887 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -61380,7 +61385,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: &884 + single_select_field: &888 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61414,7 +61419,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &885 + iteration_field: &889 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -61460,7 +61465,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *435 - - &886 + - &890 name: field_id description: The unique identifier of the field. in: path @@ -61475,7 +61480,7 @@ paths: application/json: schema: *439 examples: - default: &887 + default: &891 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62672,7 +62677,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &867 + schema: &871 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62849,7 +62854,7 @@ paths: parameters: - *435 - *89 - - &888 + - &892 name: view_number description: The number that identifies the project view. in: path @@ -64701,7 +64706,7 @@ paths: - *89 - *17 - *19 - - &758 + - &762 name: targets description: | A comma-separated list of rule targets to filter by. @@ -64917,7 +64922,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &760 + - &764 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -64929,14 +64934,14 @@ paths: x-multi-segment: true - *322 - *107 - - &761 + - &765 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &762 + - &766 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -64949,7 +64954,7 @@ paths: - bypass - all default: all - - &763 + - &767 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -64972,7 +64977,7 @@ paths: description: Response content: application/json: - schema: &764 + schema: &768 title: Rule Suites description: Response type: array @@ -65027,7 +65032,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &765 + default: &769 value: - id: 21 actor_id: 12 @@ -65071,7 +65076,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &766 + - &770 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -65087,7 +65092,7 @@ paths: description: Response content: application/json: - schema: &767 + schema: &771 title: Rule Suite description: Response type: object @@ -65186,7 +65191,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &768 + default: &772 value: id: 21 actor_id: 12 @@ -65522,7 +65527,7 @@ paths: - *112 - *19 - *17 - - &770 + - &774 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -65532,7 +65537,7 @@ paths: required: false schema: type: string - - &771 + - &775 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -65746,7 +65751,7 @@ paths: application/json: schema: type: array - items: &792 + items: &796 description: A repository security advisory. type: object properties: @@ -66069,7 +66074,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &793 + default: &797 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -68106,7 +68111,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &834 + response-if-user-is-a-team-maintainer: &838 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -68171,7 +68176,7 @@ paths: application/json: schema: *492 examples: - response-if-users-membership-with-team-is-now-pending: &835 + response-if-users-membership-with-team-is-now-pending: &839 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -68285,7 +68290,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &836 + schema: &840 title: Team Repository description: A team's access to a repository. type: object @@ -69138,7 +69143,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: &837 + response-if-child-teams-exist: &841 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -74834,7 +74839,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &906 + properties: &910 url: type: string format: uri @@ -74919,7 +74924,7 @@ paths: nullable: true properties: *223 required: *224 - required: &907 + required: &911 - id - node_id - sha @@ -81368,7 +81373,7 @@ paths: check. type: array items: *233 - deployment: &899 + deployment: &903 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -82280,7 +82285,7 @@ paths: type: string format: date-time nullable: true - head_commit: &932 + head_commit: &936 title: Simple Commit description: A commit. type: object @@ -83820,7 +83825,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -86568,14 +86573,14 @@ paths: type: integer machines: type: array - items: &843 + items: &847 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *597 required: *598 examples: - default: &844 + default: &848 value: total_count: 2 machines: @@ -88213,7 +88218,7 @@ paths: type: array items: *609 examples: - default: &743 + default: &747 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88504,7 +88509,7 @@ paths: type: array items: *613 examples: - default: &735 + default: &739 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89062,7 +89067,7 @@ paths: application/json: schema: *609 examples: - default: &720 + default: &724 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -89721,7 +89726,7 @@ paths: application/json: schema: type: array - items: &797 + items: &801 title: Status description: The status of a commit. type: object @@ -90690,7 +90695,7 @@ paths: - size - type - url - - &748 + - &752 title: Content File description: Content File type: object @@ -91334,7 +91339,7 @@ paths: items: type: object properties: - placeholder_id: &789 + placeholder_id: &793 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -98034,7 +98039,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &941 + last_response: &945 title: Hook Response type: object properties: @@ -99086,7 +99091,7 @@ paths: parameters: - *493 - *494 - - &865 + - &869 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -99671,7 +99676,7 @@ paths: type: array items: *683 examples: - default: &858 + default: &862 value: - id: 1 repository: @@ -100117,7 +100122,7 @@ paths: type: array items: *228 examples: - default: &697 + default: &698 value: - id: 1 node_id: MDU6SXNzdWUx @@ -100405,7 +100410,7 @@ paths: application/json: schema: *228 examples: - default: &694 + default: &695 value: id: 1 node_id: MDU6SXNzdWUx @@ -100630,7 +100635,7 @@ paths: type: array items: *686 examples: - default: &696 + default: &697 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -101085,7 +101090,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Issue Event description: Issue Event type: object @@ -101239,6 +101244,35 @@ paths: required: - from - to + issue_type: &693 + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name + prev_issue_type: *693 author_association: *225 lock_reason: type: string @@ -101450,7 +101484,7 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: default: value: @@ -101679,7 +101713,7 @@ paths: parameters: - *493 - *494 - - &695 + - &696 name: issue_number description: The number that identifies the issue. in: path @@ -101695,7 +101729,7 @@ paths: examples: default: summary: Issue - value: *694 + value: *695 pinned_comment: summary: Issue with pinned comment value: @@ -101929,7 +101963,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: false content: @@ -102057,9 +102091,13 @@ paths: description: Response content: application/json: - schema: *228 + schema: + allOf: + - *228 + - type: object + properties: {} examples: - default: *694 + default: *695 '422': *15 '503': *200 '403': *29 @@ -102095,7 +102133,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: false content: @@ -102123,7 +102161,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102141,7 +102179,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: content: application/json: @@ -102168,7 +102206,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102192,7 +102230,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - name: assignee in: path required: true @@ -102234,7 +102272,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *235 - *17 - *19 @@ -102247,7 +102285,7 @@ paths: type: array items: *686 examples: - default: *696 + default: *697 headers: Link: *47 '404': *6 @@ -102282,7 +102320,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -102343,7 +102381,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -102355,7 +102393,7 @@ paths: type: array items: *228 examples: - default: *697 + default: *698 headers: Link: *47 '301': *499 @@ -102390,7 +102428,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -102414,7 +102452,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -102455,7 +102493,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -102469,7 +102507,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 '301': *499 '400': *14 '401': *25 @@ -102503,7 +102541,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -102515,7 +102553,7 @@ paths: type: array items: *228 examples: - default: *697 + default: *698 headers: Link: *47 '301': *499 @@ -102539,7 +102577,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -102553,7 +102591,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &701 + - &702 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -102607,7 +102645,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &702 + - &703 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -102743,7 +102781,7 @@ paths: - performed_via_github_app - assignee - assigner - - &703 + - &704 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -102794,7 +102832,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &705 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -102845,7 +102883,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &705 + - &706 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -102899,7 +102937,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &707 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -102946,7 +102984,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -102993,7 +103031,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &709 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -103053,7 +103091,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Locked Issue Event description: Locked Issue Event type: object @@ -103101,7 +103139,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -103167,7 +103205,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &711 + - &712 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -103233,7 +103271,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &712 + - &713 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -103299,7 +103337,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &713 + - &714 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -103355,6 +103393,143 @@ paths: - commit_url - created_at - performed_via_github_app + - &717 + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *693 + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &718 + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + prev_issue_type: *693 + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + - &719 + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: *4 + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + title: GitHub app + description: GitHub apps are a new way to extend GitHub. They + can be installed directly on organizations and user accounts + and granted access to specific repositories. They come with + granular permissions and built-in webhooks. GitHub apps + are first class actors within GitHub. + type: object + nullable: true + properties: *223 + required: *224 + issue_type: *693 + prev_issue_type: *693 + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app examples: default: value: @@ -103409,7 +103584,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -103419,15 +103594,17 @@ paths: application/json: schema: type: array - items: *698 + items: *699 examples: - default: &699 + default: &700 value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -103436,14 +103613,17 @@ paths: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS data_type: number value: 42 - issue_field_id: 4 + issue_field_name: Due Date node_id: IFD_DUEDATE data_type: date value: '2025-12-25' - issue_field_id: 5 + issue_field_name: Labels node_id: IFMS_LABELS data_type: multi_select value: Frontend,Backend @@ -103489,7 +103669,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -103559,9 +103739,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *698 + items: *699 examples: - default: *699 + default: *700 '400': *14 '403': *29 '404': *6 @@ -103599,7 +103779,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -103664,9 +103844,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *698 + items: *699 examples: - default: *699 + default: *700 '400': *14 '403': *29 '404': *6 @@ -103699,7 +103879,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *400 responses: '204': @@ -103727,7 +103907,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -103739,7 +103919,7 @@ paths: type: array items: *227 examples: - default: &700 + default: &701 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -103777,7 +103957,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: false content: @@ -103822,7 +104002,7 @@ paths: type: array items: *227 examples: - default: *700 + default: *701 '301': *499 '404': *6 '410': *685 @@ -103844,7 +104024,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: false content: @@ -103906,7 +104086,7 @@ paths: type: array items: *227 examples: - default: *700 + default: *701 '301': *499 '404': *6 '410': *685 @@ -103928,7 +104108,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 responses: '204': description: Response @@ -103955,7 +104135,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - name: name in: path required: true @@ -104003,7 +104183,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: false content: @@ -104051,7 +104231,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 responses: '204': description: Response @@ -104083,7 +104263,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 responses: '200': description: Response @@ -104091,7 +104271,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 '301': *499 '404': *6 '410': *685 @@ -104113,7 +104293,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -104165,7 +104345,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -104230,7 +104410,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *689 responses: '204': @@ -104262,7 +104442,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -104286,7 +104466,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -104321,7 +104501,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -104333,7 +104513,7 @@ paths: type: array items: *228 examples: - default: *697 + default: *698 headers: Link: *47 '404': *6 @@ -104367,7 +104547,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -104396,7 +104576,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -104425,7 +104605,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 requestBody: required: true content: @@ -104458,7 +104638,7 @@ paths: application/json: schema: *228 examples: - default: *694 + default: *695 '403': *29 '404': *6 '422': *7 @@ -104482,7 +104662,7 @@ paths: parameters: - *493 - *494 - - *695 + - *696 - *17 - *19 responses: @@ -104497,7 +104677,6 @@ paths: description: Timeline Event type: object anyOf: - - *701 - *702 - *703 - *704 @@ -104510,6 +104689,7 @@ paths: - *711 - *712 - *713 + - *714 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -104570,8 +104750,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *714 - required: *715 + properties: *715 + required: *716 nullable: true required: - event @@ -104826,7 +105006,7 @@ paths: type: string comments: type: array - items: &737 + items: &741 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -105175,6 +105355,9 @@ paths: - commit_url - created_at - performed_via_github_app + - *717 + - *718 + - *719 examples: default: value: @@ -105358,7 +105541,7 @@ paths: application/json: schema: type: array - items: &716 + items: &720 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -105461,9 +105644,9 @@ paths: description: Response content: application/json: - schema: *716 + schema: *720 examples: - default: &717 + default: &721 value: id: 1 key: ssh-rsa AAA... @@ -105499,7 +105682,7 @@ paths: parameters: - *493 - *494 - - &718 + - &722 name: key_id description: The unique identifier of the key. in: path @@ -105511,9 +105694,9 @@ paths: description: Response content: application/json: - schema: *716 + schema: *720 examples: - default: *717 + default: *721 '404': *6 x-github: githubCloudOnly: false @@ -105533,7 +105716,7 @@ paths: parameters: - *493 - *494 - - *718 + - *722 responses: '204': description: Response @@ -105566,7 +105749,7 @@ paths: type: array items: *227 examples: - default: *700 + default: *701 headers: Link: *47 '404': *6 @@ -105626,7 +105809,7 @@ paths: application/json: schema: *227 examples: - default: &719 + default: &723 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -105672,7 +105855,7 @@ paths: application/json: schema: *227 examples: - default: *719 + default: *723 '404': *6 x-github: githubCloudOnly: false @@ -106125,7 +106308,7 @@ paths: application/json: schema: *609 examples: - default: *720 + default: *724 '204': description: Response when already merged '404': @@ -106192,7 +106375,7 @@ paths: application/json: schema: type: array - items: &721 + items: &725 title: Milestone description: A collection of related issues and pull requests. type: object @@ -106294,9 +106477,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *725 examples: - default: &722 + default: &726 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -106357,7 +106540,7 @@ paths: parameters: - *493 - *494 - - &723 + - &727 name: milestone_number description: The number that identifies the milestone. in: path @@ -106369,9 +106552,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *725 examples: - default: *722 + default: *726 '404': *6 x-github: githubCloudOnly: false @@ -106390,7 +106573,7 @@ paths: parameters: - *493 - *494 - - *723 + - *727 requestBody: required: false content: @@ -106428,9 +106611,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *725 examples: - default: *722 + default: *726 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106448,7 +106631,7 @@ paths: parameters: - *493 - *494 - - *723 + - *727 responses: '204': description: Response @@ -106471,7 +106654,7 @@ paths: parameters: - *493 - *494 - - *723 + - *727 - *17 - *19 responses: @@ -106483,7 +106666,7 @@ paths: type: array items: *227 examples: - default: *700 + default: *701 headers: Link: *47 x-github: @@ -106504,10 +106687,10 @@ paths: parameters: - *493 - *494 - - *724 - - *725 + - *728 + - *729 - *235 - - *726 + - *730 - *17 - *19 responses: @@ -106519,7 +106702,7 @@ paths: type: array items: *255 examples: - default: *727 + default: *731 headers: Link: *47 x-github: @@ -106609,7 +106792,7 @@ paths: description: Response content: application/json: - schema: &728 + schema: &732 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -106734,7 +106917,7 @@ paths: - custom_404 - public examples: - default: &729 + default: &733 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -106830,9 +107013,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *732 examples: - default: *729 + default: *733 '422': *15 '409': *121 x-github: @@ -107001,7 +107184,7 @@ paths: application/json: schema: type: array - items: &730 + items: &734 title: Page Build description: Page Build type: object @@ -107148,9 +107331,9 @@ paths: description: Response content: application/json: - schema: *730 + schema: *734 examples: - default: &731 + default: &735 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -107210,9 +107393,9 @@ paths: description: Response content: application/json: - schema: *730 + schema: *734 examples: - default: *731 + default: *735 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107340,7 +107523,7 @@ paths: parameters: - *493 - *494 - - &732 + - &736 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -107400,7 +107583,7 @@ paths: parameters: - *493 - *494 - - *732 + - *736 responses: '204': *130 '404': *6 @@ -107780,7 +107963,7 @@ paths: type: array items: *160 examples: - default: *733 + default: *737 '403': *29 '404': *6 x-github: @@ -107819,7 +108002,7 @@ paths: required: - properties examples: - default: *734 + default: *738 responses: '204': description: No Content when custom property values are successfully created @@ -107920,7 +108103,7 @@ paths: type: array items: *613 examples: - default: *735 + default: *739 headers: Link: *47 '304': *37 @@ -108018,7 +108201,7 @@ paths: description: Response content: application/json: - schema: &739 + schema: &743 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -108229,7 +108412,7 @@ paths: - review_comment - self author_association: *225 - auto_merge: *736 + auto_merge: *740 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -108415,7 +108598,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &740 + default: &744 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -108983,9 +109166,9 @@ paths: application/json: schema: type: array - items: *737 + items: *741 examples: - default: &742 + default: &746 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -109070,9 +109253,9 @@ paths: description: Response content: application/json: - schema: *737 + schema: *741 examples: - default: &738 + default: &742 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -109171,9 +109354,9 @@ paths: description: Response content: application/json: - schema: *737 + schema: *741 examples: - default: *738 + default: *742 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109376,7 +109559,7 @@ paths: parameters: - *493 - *494 - - &741 + - &745 name: pull_number description: The number that identifies the pull request. in: path @@ -109389,9 +109572,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *739 + schema: *743 examples: - default: *740 + default: *744 '304': *37 '404': *6 '406': @@ -109428,7 +109611,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: false content: @@ -109470,9 +109653,9 @@ paths: description: Response content: application/json: - schema: *739 + schema: *743 examples: - default: *740 + default: *744 '422': *15 '403': *29 x-github: @@ -109496,7 +109679,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: true content: @@ -109598,7 +109781,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 - *252 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -109619,9 +109802,9 @@ paths: application/json: schema: type: array - items: *737 + items: *741 examples: - default: *742 + default: *746 headers: Link: *47 x-github: @@ -109656,7 +109839,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: true content: @@ -109761,7 +109944,7 @@ paths: description: Response content: application/json: - schema: *737 + schema: *741 examples: example-for-a-multi-line-comment: value: @@ -109851,7 +110034,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 - *244 requestBody: required: true @@ -109874,7 +110057,7 @@ paths: description: Response content: application/json: - schema: *737 + schema: *741 examples: default: value: @@ -109962,7 +110145,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 - *17 - *19 responses: @@ -109974,7 +110157,7 @@ paths: type: array items: *609 examples: - default: *743 + default: *747 headers: Link: *47 x-github: @@ -110006,7 +110189,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 - *17 - *19 responses: @@ -110056,7 +110239,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 responses: '204': description: Response if pull request has been merged @@ -110081,7 +110264,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: false content: @@ -110194,7 +110377,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 responses: '200': description: Response @@ -110271,7 +110454,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: false content: @@ -110846,7 +111029,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: true content: @@ -111398,7 +111581,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 - *17 - *19 responses: @@ -111408,7 +111591,7 @@ paths: application/json: schema: type: array - items: &744 + items: &748 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -111561,7 +111744,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: false content: @@ -111647,9 +111830,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *748 examples: - default: &746 + default: &750 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -111714,8 +111897,8 @@ paths: parameters: - *493 - *494 - - *741 - - &745 + - *745 + - &749 name: review_id description: The unique identifier of the review. in: path @@ -111727,9 +111910,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *748 examples: - default: &747 + default: &751 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -111790,8 +111973,8 @@ paths: parameters: - *493 - *494 - - *741 - *745 + - *749 requestBody: required: true content: @@ -111814,7 +111997,7 @@ paths: description: Response content: application/json: - schema: *744 + schema: *748 examples: default: value: @@ -111878,16 +112061,16 @@ paths: parameters: - *493 - *494 - - *741 - *745 + - *749 responses: '200': description: Response content: application/json: - schema: *744 + schema: *748 examples: - default: *746 + default: *750 '422': *7 '404': *6 x-github: @@ -111916,8 +112099,8 @@ paths: parameters: - *493 - *494 - - *741 - *745 + - *749 - *17 - *19 responses: @@ -112154,8 +112337,8 @@ paths: parameters: - *493 - *494 - - *741 - *745 + - *749 requestBody: required: true content: @@ -112183,7 +112366,7 @@ paths: description: Response content: application/json: - schema: *744 + schema: *748 examples: default: value: @@ -112248,8 +112431,8 @@ paths: parameters: - *493 - *494 - - *741 - *745 + - *749 requestBody: required: true content: @@ -112284,9 +112467,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *748 examples: - default: *747 + default: *751 '404': *6 '422': *7 '403': *29 @@ -112310,7 +112493,7 @@ paths: parameters: - *493 - *494 - - *741 + - *745 requestBody: required: false content: @@ -112387,9 +112570,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: &749 + default: &753 value: type: file encoding: base64 @@ -112452,9 +112635,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *752 examples: - default: *749 + default: *753 '404': *6 '422': *15 x-github: @@ -112487,7 +112670,7 @@ paths: application/json: schema: type: array - items: *750 + items: *754 examples: default: value: @@ -112658,9 +112841,9 @@ paths: description: Response content: application/json: - schema: *750 + schema: *754 examples: - default: &754 + default: &758 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -112767,7 +112950,7 @@ paths: parameters: - *493 - *494 - - &752 + - &756 name: asset_id description: The unique identifier of the asset. in: path @@ -112779,9 +112962,9 @@ paths: description: Response content: application/json: - schema: *751 + schema: *755 examples: - default: &753 + default: &757 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -112834,7 +113017,7 @@ paths: parameters: - *493 - *494 - - *752 + - *756 requestBody: required: false content: @@ -112862,9 +113045,9 @@ paths: description: Response content: application/json: - schema: *751 + schema: *755 examples: - default: *753 + default: *757 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112882,7 +113065,7 @@ paths: parameters: - *493 - *494 - - *752 + - *756 responses: '204': description: Response @@ -113000,9 +113183,9 @@ paths: description: Response content: application/json: - schema: *750 + schema: *754 examples: - default: *754 + default: *758 '404': *6 x-github: githubCloudOnly: false @@ -113034,9 +113217,9 @@ paths: description: Response content: application/json: - schema: *750 + schema: *754 examples: - default: *754 + default: *758 '404': *6 x-github: githubCloudOnly: false @@ -113060,7 +113243,7 @@ paths: parameters: - *493 - *494 - - &755 + - &759 name: release_id description: The unique identifier of the release. in: path @@ -113074,9 +113257,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *750 + schema: *754 examples: - default: *754 + default: *758 '401': description: Unauthorized x-github: @@ -113096,7 +113279,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 requestBody: required: false content: @@ -113160,9 +113343,9 @@ paths: description: Response content: application/json: - schema: *750 + schema: *754 examples: - default: *754 + default: *758 '404': description: Not Found if the discussion category name is invalid content: @@ -113185,7 +113368,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 responses: '204': description: Response @@ -113208,7 +113391,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 - *17 - *19 responses: @@ -113218,7 +113401,7 @@ paths: application/json: schema: type: array - items: *751 + items: *755 examples: default: value: @@ -113302,7 +113485,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 - name: name in: query required: true @@ -113328,7 +113511,7 @@ paths: description: Response for successful upload content: application/json: - schema: *751 + schema: *755 examples: response-for-successful-upload: value: @@ -113385,7 +113568,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -113434,7 +113617,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 requestBody: required: true content: @@ -113497,7 +113680,7 @@ paths: parameters: - *493 - *494 - - *755 + - *759 - *689 responses: '204': @@ -113541,7 +113724,7 @@ paths: oneOf: - allOf: - *174 - - &756 + - &760 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -113562,67 +113745,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *175 - - *756 + - *760 - allOf: - *176 - - *756 + - *760 - allOf: - *177 - - *756 + - *760 - allOf: - - *757 - - *756 + - *761 + - *760 - allOf: - *178 - - *756 + - *760 - allOf: - *179 - - *756 + - *760 - allOf: - *180 - - *756 + - *760 - allOf: - *181 - - *756 + - *760 - allOf: - *182 - - *756 + - *760 - allOf: - *183 - - *756 + - *760 - allOf: - *184 - - *756 + - *760 - allOf: - *185 - - *756 + - *760 - allOf: - *186 - - *756 + - *760 - allOf: - *187 - - *756 + - *760 - allOf: - *188 - - *756 + - *760 - allOf: - *189 - - *756 + - *760 - allOf: - *190 - - *756 + - *760 - allOf: - *191 - - *756 + - *760 - allOf: - *192 - - *756 + - *760 - allOf: - *193 - - *756 + - *760 - allOf: - *194 - - *756 + - *760 examples: default: value: @@ -113673,7 +113856,7 @@ paths: schema: type: boolean default: true - - *758 + - *762 responses: '200': description: Response @@ -113758,7 +113941,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *759 + items: *763 required: - name - enforcement @@ -113791,7 +113974,7 @@ paths: application/json: schema: *195 examples: - default: &769 + default: &773 value: id: 42 name: super cool ruleset @@ -113841,11 +114024,11 @@ paths: parameters: - *493 - *494 - - *760 + - *764 - *107 - - *761 - - *762 - - *763 + - *765 + - *766 + - *767 - *17 - *19 responses: @@ -113853,9 +114036,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *768 examples: - default: *765 + default: *769 '404': *6 '500': *40 x-github: @@ -113878,15 +114061,15 @@ paths: parameters: - *493 - *494 - - *766 + - *770 responses: '200': description: Response content: application/json: - schema: *767 + schema: *771 examples: - default: *768 + default: *772 '404': *6 '500': *40 x-github: @@ -113937,7 +114120,7 @@ paths: application/json: schema: *195 examples: - default: *769 + default: *773 '404': *6 '500': *40 put: @@ -113990,7 +114173,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *759 + items: *763 examples: default: value: @@ -114020,7 +114203,7 @@ paths: application/json: schema: *195 examples: - default: *769 + default: *773 '404': *6 '422': *15 '500': *40 @@ -114188,8 +114371,8 @@ paths: - *112 - *19 - *17 - - *770 - - *771 + - *774 + - *775 - *467 - *468 - *469 @@ -114202,7 +114385,7 @@ paths: application/json: schema: type: array - items: &775 + items: &779 type: object properties: number: *131 @@ -114221,8 +114404,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *772 - resolution: *773 + state: *776 + resolution: *777 resolved_at: type: string format: date-time @@ -114328,7 +114511,7 @@ paths: pull request. ' - oneOf: *774 + oneOf: *778 nullable: true has_more_locations: type: boolean @@ -114501,7 +114684,7 @@ paths: description: Response content: application/json: - schema: *775 + schema: *779 examples: default: value: @@ -114565,8 +114748,8 @@ paths: schema: type: object properties: - state: *772 - resolution: *773 + state: *776 + resolution: *777 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -114610,7 +114793,7 @@ paths: description: Response content: application/json: - schema: *775 + schema: *779 examples: default: value: @@ -114722,7 +114905,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &963 + items: &967 type: object properties: type: @@ -114748,10 +114931,6 @@ paths: example: commit details: oneOf: - - *776 - - *777 - - *778 - - *779 - *780 - *781 - *782 @@ -114761,6 +114940,10 @@ paths: - *786 - *787 - *788 + - *789 + - *790 + - *791 + - *792 examples: default: value: @@ -114855,14 +115038,14 @@ paths: schema: type: object properties: - reason: &790 + reason: &794 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *789 + placeholder_id: *793 required: - reason - placeholder_id @@ -114879,7 +115062,7 @@ paths: schema: type: object properties: - reason: *790 + reason: *794 expire_at: type: string format: date-time @@ -114941,7 +115124,7 @@ paths: properties: incremental_scans: type: array - items: &791 + items: &795 description: Information on a single scan performed by secret scanning on the repository type: object @@ -114972,15 +115155,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *791 + items: *795 backfill_scans: type: array - items: *791 + items: *795 custom_pattern_backfill_scans: type: array items: allOf: - - *791 + - *795 - type: object properties: pattern_name: @@ -114993,7 +115176,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *791 + items: *795 examples: default: value: @@ -115103,9 +115286,9 @@ paths: application/json: schema: type: array - items: *792 + items: *796 examples: - default: *793 + default: *797 '400': *14 '404': *6 x-github: @@ -115289,9 +115472,9 @@ paths: description: Response content: application/json: - schema: *792 + schema: *796 examples: - default: &795 + default: &799 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -115635,7 +115818,7 @@ paths: description: Response content: application/json: - schema: *792 + schema: *796 examples: default: value: @@ -115790,15 +115973,15 @@ paths: parameters: - *493 - *494 - - *794 + - *798 responses: '200': description: Response content: application/json: - schema: *792 + schema: *796 examples: - default: *795 + default: *799 '403': *29 '404': *6 x-github: @@ -115824,7 +116007,7 @@ paths: parameters: - *493 - *494 - - *794 + - *798 requestBody: required: true content: @@ -115983,10 +116166,10 @@ paths: description: Response content: application/json: - schema: *792 + schema: *796 examples: - default: *795 - add_credit: *795 + default: *799 + add_credit: *799 '403': *29 '404': *6 '422': @@ -116026,7 +116209,7 @@ paths: parameters: - *493 - *494 - - *794 + - *798 responses: '202': *39 '400': *14 @@ -116055,7 +116238,7 @@ paths: parameters: - *493 - *494 - - *794 + - *798 responses: '202': description: Response @@ -116199,7 +116382,7 @@ paths: application/json: schema: type: array - items: &796 + items: &800 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -116572,7 +116755,7 @@ paths: application/json: schema: type: array - items: *796 + items: *800 examples: default: value: @@ -116660,7 +116843,7 @@ paths: description: Response content: application/json: - schema: *797 + schema: *801 examples: default: value: @@ -116754,7 +116937,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &798 + schema: &802 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -116849,7 +117032,7 @@ paths: description: Response content: application/json: - schema: *798 + schema: *802 examples: default: value: @@ -117056,7 +117239,7 @@ paths: description: Response content: application/json: - schema: &799 + schema: &803 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -117068,7 +117251,7 @@ paths: required: - names examples: - default: &800 + default: &804 value: names: - octocat @@ -117123,9 +117306,9 @@ paths: description: Response content: application/json: - schema: *799 + schema: *803 examples: - default: *800 + default: *804 '404': *6 '422': *7 x-github: @@ -117148,7 +117331,7 @@ paths: parameters: - *493 - *494 - - &801 + - &805 name: per description: The time frame to display results for. in: query @@ -117177,7 +117360,7 @@ paths: example: 128 clones: type: array - items: &802 + items: &806 title: Traffic type: object properties: @@ -117418,7 +117601,7 @@ paths: parameters: - *493 - *494 - - *801 + - *805 responses: '200': description: Response @@ -117437,7 +117620,7 @@ paths: example: 3782 views: type: array - items: *802 + items: *806 required: - uniques - count @@ -118115,7 +118298,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &810 + - &814 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -118124,7 +118307,7 @@ paths: schema: type: string example: members - - &815 + - &819 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -118135,7 +118318,7 @@ paths: default: 1 format: int32 example: 1 - - &816 + - &820 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -118177,7 +118360,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &805 + items: &809 allOf: - type: object required: @@ -118252,7 +118435,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &817 + meta: &821 type: object description: The metadata associated with the creation/updates to the user. @@ -118312,30 +118495,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &806 + '400': &810 description: Bad request content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 - '401': *804 - '403': &807 + schema: *807 + '401': *808 + '403': &811 description: Permission denied - '429': &808 + '429': &812 description: Too many requests content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 - '500': &809 + schema: *807 + '500': &813 description: Internal server error content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 + schema: *807 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118359,7 +118542,7 @@ paths: required: true content: application/json: - schema: &813 + schema: &817 type: object required: - schemas @@ -118419,9 +118602,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *805 + schema: *809 examples: - group: &811 + group: &815 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -118440,13 +118623,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *806 - '401': *804 - '403': *807 - '409': &814 + '400': *810 + '401': *808 + '403': *811 + '409': &818 description: Duplicate record detected - '429': *808 - '500': *809 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118463,7 +118646,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &812 + - &816 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -118471,22 +118654,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *810 + - *814 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *805 + schema: *809 examples: - default: *811 - '400': *806 - '401': *804 - '403': *807 + default: *815 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '429': *808 - '500': *809 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118505,13 +118688,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *812 + - *816 - *41 requestBody: required: true content: application/json: - schema: *813 + schema: *817 examples: group: summary: Group @@ -118537,17 +118720,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *805 + schema: *809 examples: - group: *811 - groupWithMembers: *811 - '400': *806 - '401': *804 - '403': *807 + group: *815 + groupWithMembers: *815 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '409': *814 - '429': *808 - '500': *809 + '409': *818 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118571,13 +118754,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *812 + - *816 - *41 requestBody: required: true content: application/json: - schema: &824 + schema: &828 type: object required: - Operations @@ -118637,17 +118820,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *805 + schema: *809 examples: - updateGroup: *811 - addMembers: *811 - '400': *806 - '401': *804 - '403': *807 + updateGroup: *815 + addMembers: *815 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '409': *814 - '429': *808 - '500': *809 + '409': *818 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118663,17 +118846,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *812 + - *816 - *41 responses: '204': description: Group was deleted, no content - '400': *806 - '401': *804 - '403': *807 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '429': *808 - '500': *809 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118707,8 +118890,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *815 - - *816 + - *819 + - *820 - *41 responses: '200': @@ -118741,7 +118924,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &819 + items: &823 allOf: - type: object required: @@ -118820,7 +119003,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &818 + roles: &822 type: array description: The roles assigned to the user. items: @@ -118876,7 +119059,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *817 + meta: *821 startIndex: type: integer description: A starting index for the returned page @@ -118913,11 +119096,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *806 - '401': *804 - '403': *807 - '429': *808 - '500': *809 + '400': *810 + '401': *808 + '403': *811 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118941,7 +119124,7 @@ paths: required: true content: application/json: - schema: &822 + schema: &826 type: object required: - schemas @@ -119023,9 +119206,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *818 + roles: *822 examples: - user: &823 + user: &827 summary: User value: schemas: @@ -119072,9 +119255,9 @@ paths: description: User has been created content: application/scim+json: - schema: *819 + schema: *823 examples: - user: &820 + user: &824 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -119100,13 +119283,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *820 - '400': *806 - '401': *804 - '403': *807 - '409': *814 - '429': *808 - '500': *809 + enterpriseOwner: *824 + '400': *810 + '401': *808 + '403': *811 + '409': *818 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119123,7 +119306,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &821 + - &825 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -119136,15 +119319,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *819 + schema: *823 examples: - default: *820 - '400': *806 - '401': *804 - '403': *807 + default: *824 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '429': *808 - '500': *809 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119195,30 +119378,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *821 + - *825 - *41 requestBody: required: true content: application/json: - schema: *822 + schema: *826 examples: - user: *823 + user: *827 responses: '200': description: User was updated content: application/scim+json: - schema: *819 + schema: *823 examples: - user: *820 - '400': *806 - '401': *804 - '403': *807 + user: *824 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '409': *814 - '429': *808 - '500': *809 + '409': *818 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119259,13 +119442,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *821 + - *825 - *41 requestBody: required: true content: application/json: - schema: *824 + schema: *828 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -119305,18 +119488,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *819 + schema: *823 examples: - userMultiValuedProperties: *820 - userSingleValuedProperties: *820 - disableUser: *820 - '400': *806 - '401': *804 - '403': *807 + userMultiValuedProperties: *824 + userSingleValuedProperties: *824 + disableUser: *824 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '409': *814 - '429': *808 - '500': *809 + '409': *818 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119336,17 +119519,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *821 + - *825 - *41 responses: '204': description: User was deleted, no content - '400': *806 - '401': *804 - '403': *807 + '400': *810 + '401': *808 + '403': *811 '404': *6 - '429': *808 - '500': *809 + '429': *812 + '500': *813 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119433,7 +119616,7 @@ paths: example: 1 Resources: type: array - items: &825 + items: &829 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -119664,22 +119847,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &826 + '404': &830 description: Resource not found content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 - '403': &827 + schema: *807 + '403': &831 description: Forbidden content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 - '400': *806 - '429': *808 + schema: *807 + '400': *810 + '429': *812 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -119705,9 +119888,9 @@ paths: description: Response content: application/scim+json: - schema: *825 + schema: *829 examples: - default: &828 + default: &832 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -119730,17 +119913,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *826 - '403': *827 - '500': *809 + '404': *830 + '403': *831 + '500': *813 '409': description: Conflict content: application/json: - schema: *803 + schema: *807 application/scim+json: - schema: *803 - '400': *806 + schema: *807 + '400': *810 requestBody: required: true content: @@ -119838,17 +120021,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *821 + - *825 responses: '200': description: Response content: application/scim+json: - schema: *825 + schema: *829 examples: - default: *828 - '404': *826 - '403': *827 + default: *832 + '404': *830 + '403': *831 '304': *37 x-github: githubCloudOnly: true @@ -119872,18 +120055,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *821 + - *825 responses: '200': description: Response content: application/scim+json: - schema: *825 + schema: *829 examples: - default: *828 + default: *832 '304': *37 - '404': *826 - '403': *827 + '404': *830 + '403': *831 requestBody: required: true content: @@ -119996,19 +120179,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *821 + - *825 responses: '200': description: Response content: application/scim+json: - schema: *825 + schema: *829 examples: - default: *828 + default: *832 '304': *37 - '404': *826 - '403': *827 - '400': *806 + '404': *830 + '403': *831 + '400': *810 '429': description: Response content: @@ -120099,12 +120282,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *821 + - *825 responses: '204': description: Response - '404': *826 - '403': *827 + '404': *830 + '403': *831 '304': *37 x-github: githubCloudOnly: true @@ -120240,7 +120423,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &829 + text_matches: &833 title: Search Result Text Matches type: array items: @@ -120403,7 +120586,7 @@ paths: enum: - author-date - committer-date - - &830 + - &834 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -120531,7 +120714,7 @@ paths: type: number node_id: type: string - text_matches: *829 + text_matches: *833 required: - sha - node_id @@ -120724,7 +120907,7 @@ paths: - interactions - created - updated - - *830 + - *834 - *17 - *19 - name: advanced_search @@ -120838,11 +121021,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: type: string state_reason: @@ -120874,7 +121057,7 @@ paths: type: string format: date-time nullable: true - text_matches: *829 + text_matches: *833 pull_request: type: object properties: @@ -121190,7 +121373,7 @@ paths: enum: - created - updated - - *830 + - *834 - *17 - *19 responses: @@ -121234,7 +121417,7 @@ paths: nullable: true score: type: number - text_matches: *829 + text_matches: *833 required: - id - node_id @@ -121320,7 +121503,7 @@ paths: - forks - help-wanted-issues - updated - - *830 + - *834 - *17 - *19 responses: @@ -121568,7 +121751,7 @@ paths: - admin - pull - push - text_matches: *829 + text_matches: *833 temp_clone_token: type: string allow_merge_commit: @@ -121869,7 +122052,7 @@ paths: type: string format: uri nullable: true - text_matches: *829 + text_matches: *833 related: type: array nullable: true @@ -122062,7 +122245,7 @@ paths: - followers - repositories - joined - - *830 + - *834 - *17 - *19 responses: @@ -122166,7 +122349,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *829 + text_matches: *833 blog: type: string nullable: true @@ -122245,7 +122428,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &833 + - &837 name: team_id description: The unique identifier of the team. in: path @@ -122286,7 +122469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *833 + - *837 requestBody: required: true content: @@ -122386,7 +122569,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *833 + - *837 responses: '204': description: Response @@ -122415,7 +122598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *833 + - *837 - *17 - *19 responses: @@ -122453,7 +122636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *833 + - *837 - name: role description: Filters members returned by their role in the team. in: query @@ -122504,7 +122687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *833 + - *837 - *148 responses: '204': @@ -122541,7 +122724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *833 + - *837 - *148 responses: '204': @@ -122581,7 +122764,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *833 + - *837 - *148 responses: '204': @@ -122618,7 +122801,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *833 + - *837 - *148 responses: '200': @@ -122627,7 +122810,7 @@ paths: application/json: schema: *492 examples: - response-if-user-is-a-team-maintainer: *834 + response-if-user-is-a-team-maintainer: *838 '404': *6 x-github: githubCloudOnly: false @@ -122660,7 +122843,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *833 + - *837 - *148 requestBody: required: false @@ -122688,7 +122871,7 @@ paths: application/json: schema: *492 examples: - response-if-users-membership-with-team-is-now-pending: *835 + response-if-users-membership-with-team-is-now-pending: *839 '403': description: Forbidden if team synchronization is set up '422': @@ -122722,7 +122905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *833 + - *837 - *148 responses: '204': @@ -122750,7 +122933,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *833 + - *837 - *17 - *19 responses: @@ -122792,7 +122975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *833 + - *837 - *493 - *494 responses: @@ -122800,7 +122983,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *836 + schema: *840 examples: alternative-response-with-extra-repository-information: value: @@ -122957,7 +123140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *833 + - *837 - *493 - *494 requestBody: @@ -123009,7 +123192,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *833 + - *837 - *493 - *494 responses: @@ -123040,7 +123223,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *833 + - *837 responses: '200': description: Response @@ -123075,7 +123258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *833 + - *837 requestBody: required: true content: @@ -123163,7 +123346,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *833 + - *837 - *17 - *19 responses: @@ -123175,7 +123358,7 @@ paths: type: array items: *325 examples: - response-if-child-teams-exist: *837 + response-if-child-teams-exist: *841 headers: Link: *47 '404': *6 @@ -123208,7 +123391,7 @@ paths: application/json: schema: oneOf: - - &839 + - &843 title: Private User description: Private User type: object @@ -123411,7 +123594,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *838 + - *842 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -123564,7 +123747,7 @@ paths: description: Response content: application/json: - schema: *839 + schema: *843 examples: default: value: @@ -123962,7 +124145,7 @@ paths: type: integer secrets: type: array - items: &840 + items: &844 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -124078,7 +124261,7 @@ paths: description: Response content: application/json: - schema: *840 + schema: *844 examples: default: value: @@ -124491,7 +124674,7 @@ paths: description: Response content: application/json: - schema: &841 + schema: &845 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -124532,7 +124715,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &842 + default: &846 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -124577,9 +124760,9 @@ paths: description: Response content: application/json: - schema: *841 + schema: *845 examples: - default: *842 + default: *846 '404': *6 x-github: githubCloudOnly: false @@ -124616,9 +124799,9 @@ paths: type: integer machines: type: array - items: *843 + items: *847 examples: - default: *844 + default: *848 '304': *37 '500': *40 '401': *25 @@ -125557,7 +125740,7 @@ paths: type: array items: *417 examples: - default: &855 + default: &859 value: - id: 197 name: hello_docker @@ -125658,7 +125841,7 @@ paths: application/json: schema: type: array - items: &845 + items: &849 title: Email description: Email type: object @@ -125723,9 +125906,9 @@ paths: application/json: schema: type: array - items: *845 + items: *849 examples: - default: &857 + default: &861 value: - email: octocat@github.com verified: true @@ -125800,7 +125983,7 @@ paths: application/json: schema: type: array - items: *845 + items: *849 examples: default: value: @@ -126056,7 +126239,7 @@ paths: application/json: schema: type: array - items: &846 + items: &850 title: GPG Key description: A unique encryption key type: object @@ -126187,7 +126370,7 @@ paths: - subkeys - revoked examples: - default: &874 + default: &878 value: - id: 3 name: Octocat's GPG Key @@ -126272,9 +126455,9 @@ paths: description: Response content: application/json: - schema: *846 + schema: *850 examples: - default: &847 + default: &851 value: id: 3 name: Octocat's GPG Key @@ -126331,7 +126514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &848 + - &852 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -126343,9 +126526,9 @@ paths: description: Response content: application/json: - schema: *846 + schema: *850 examples: - default: *847 + default: *851 '404': *6 '304': *37 '403': *29 @@ -126368,7 +126551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *848 + - *852 responses: '204': description: Response @@ -126835,7 +127018,7 @@ paths: application/json: schema: type: array - items: &849 + items: &853 title: Key description: Key type: object @@ -126936,9 +127119,9 @@ paths: description: Response content: application/json: - schema: *849 + schema: *853 examples: - default: &850 + default: &854 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -126971,15 +127154,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *718 + - *722 responses: '200': description: Response content: application/json: - schema: *849 + schema: *853 examples: - default: *850 + default: *854 '404': *6 '304': *37 '403': *29 @@ -127002,7 +127185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *718 + - *722 responses: '204': description: Response @@ -127035,7 +127218,7 @@ paths: application/json: schema: type: array - items: &851 + items: &855 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -127103,7 +127286,7 @@ paths: - account - plan examples: - default: &852 + default: &856 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -127165,9 +127348,9 @@ paths: application/json: schema: type: array - items: *851 + items: *855 examples: - default: *852 + default: *856 headers: Link: *47 '304': *37 @@ -128176,7 +128359,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *412 - - *853 + - *857 responses: '204': description: Response @@ -128309,7 +128492,7 @@ paths: - docker - nuget - container - - *854 + - *858 - *19 - *17 responses: @@ -128321,8 +128504,8 @@ paths: type: array items: *417 examples: - default: *855 - '400': *856 + default: *859 + '400': *860 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -128351,7 +128534,7 @@ paths: application/json: schema: *417 examples: - default: &875 + default: &879 value: id: 40201 name: octo-name @@ -128713,9 +128896,9 @@ paths: application/json: schema: type: array - items: *845 + items: *849 examples: - default: *857 + default: *861 headers: Link: *47 '304': *37 @@ -128828,7 +129011,7 @@ paths: type: array items: *80 examples: - default: &864 + default: &868 summary: Default response value: - id: 1296269 @@ -129180,7 +129363,7 @@ paths: type: array items: *683 examples: - default: *858 + default: *862 headers: Link: *47 '304': *37 @@ -129265,7 +129448,7 @@ paths: application/json: schema: type: array - items: &859 + items: &863 title: Social account description: Social media account type: object @@ -129280,7 +129463,7 @@ paths: - provider - url examples: - default: &860 + default: &864 value: - provider: twitter url: https://twitter.com/github @@ -129342,9 +129525,9 @@ paths: application/json: schema: type: array - items: *859 + items: *863 examples: - default: *860 + default: *864 '422': *15 '304': *37 '404': *6 @@ -129431,7 +129614,7 @@ paths: application/json: schema: type: array - items: &861 + items: &865 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -129451,7 +129634,7 @@ paths: - title - created_at examples: - default: &889 + default: &893 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -129515,9 +129698,9 @@ paths: description: Response content: application/json: - schema: *861 + schema: *865 examples: - default: &862 + default: &866 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -129547,7 +129730,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &863 + - &867 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -129559,9 +129742,9 @@ paths: description: Response content: application/json: - schema: *861 + schema: *865 examples: - default: *862 + default: *866 '404': *6 '304': *37 '403': *29 @@ -129584,7 +129767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *863 + - *867 responses: '204': description: Response @@ -129613,7 +129796,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &890 + - &894 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 @@ -129638,11 +129821,11 @@ paths: type: array items: *80 examples: - default-response: *864 + default-response: *868 application/vnd.github.v3.star+json: schema: type: array - items: &891 + items: &895 title: Starred Repository description: Starred Repository type: object @@ -130011,10 +130194,10 @@ paths: application/json: schema: oneOf: - - *839 - - *838 + - *843 + - *842 examples: - default-response: &868 + default-response: &872 summary: Default response value: login: octocat @@ -130049,7 +130232,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &869 + response-with-git-hub-plan-information: &873 summary: Response with GitHub plan information value: login: octocat @@ -130106,7 +130289,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &866 + - &870 name: user_id description: The unique identifier of the user. in: path @@ -130172,7 +130355,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *865 + - *869 - *17 responses: '200': @@ -130207,7 +130390,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *866 + - *870 - *435 requestBody: required: true @@ -130279,7 +130462,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *867 + schema: *871 examples: table_view: summary: Response for creating a table view @@ -130331,11 +130514,11 @@ paths: application/json: schema: oneOf: - - *839 - - *838 + - *843 + - *842 examples: - default-response: *868 - response-with-git-hub-plan-information: *869 + default-response: *872 + response-with-git-hub-plan-information: *873 '404': *6 x-github: githubCloudOnly: false @@ -130385,8 +130568,8 @@ paths: required: - subject_digests examples: - default: *870 - withPredicateType: *871 + default: *874 + withPredicateType: *875 responses: '200': description: Response @@ -130439,7 +130622,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *872 + default: *876 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -130954,7 +131137,7 @@ paths: application/json: schema: *340 examples: - default: &873 + default: &877 summary: Example response for a user copilot space value: id: 42 @@ -131055,7 +131238,7 @@ paths: application/json: schema: *340 examples: - default: *873 + default: *877 '403': *29 '404': *6 x-github: @@ -131178,7 +131361,7 @@ paths: application/json: schema: *340 examples: - default: *873 + default: *877 '403': *29 '404': *6 '422': *15 @@ -131946,7 +132129,7 @@ paths: type: array items: *417 examples: - default: *855 + default: *859 '403': *29 '401': *25 x-github: @@ -132330,9 +132513,9 @@ paths: application/json: schema: type: array - items: *846 + items: *850 examples: - default: *874 + default: *878 headers: Link: *47 x-github: @@ -132560,7 +132743,7 @@ paths: - docker - nuget - container - - *854 + - *858 - *148 - *19 - *17 @@ -132573,10 +132756,10 @@ paths: type: array items: *417 examples: - default: *855 + default: *859 '403': *29 '401': *25 - '400': *856 + '400': *860 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -132606,7 +132789,7 @@ paths: application/json: schema: *417 examples: - default: *875 + default: *879 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -132955,7 +133138,7 @@ paths: type: array items: *439 examples: - default: *876 + default: *880 headers: Link: *47 '304': *37 @@ -133015,7 +133198,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *877 + items: *881 required: - name - data_type @@ -133031,7 +133214,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *878 + iteration_configuration: *882 required: - name - data_type @@ -133053,8 +133236,8 @@ paths: value: name: Due date data_type: date - single_select_field: *879 - iteration_field: *880 + single_select_field: *883 + iteration_field: *884 responses: '201': description: Response @@ -133062,11 +133245,11 @@ paths: application/json: schema: *439 examples: - text_field: *881 - number_field: *882 - date_field: *883 - single_select_field: *884 - iteration_field: *885 + text_field: *885 + number_field: *886 + date_field: *887 + single_select_field: *888 + iteration_field: *889 '304': *37 '403': *29 '401': *25 @@ -133088,7 +133271,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *435 - - *886 + - *890 - *148 responses: '200': @@ -133097,7 +133280,7 @@ paths: application/json: schema: *439 examples: - default: *887 + default: *891 headers: Link: *47 '304': *37 @@ -133451,7 +133634,7 @@ paths: parameters: - *435 - *148 - - *888 + - *892 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -133730,9 +133913,9 @@ paths: application/json: schema: type: array - items: *859 + items: *863 examples: - default: *860 + default: *864 headers: Link: *47 x-github: @@ -133762,9 +133945,9 @@ paths: application/json: schema: type: array - items: *861 + items: *865 examples: - default: *889 + default: *893 headers: Link: *47 x-github: @@ -133789,7 +133972,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *148 - - *890 + - *894 - *112 - *17 - *19 @@ -133801,11 +133984,11 @@ paths: schema: anyOf: - type: array - items: *891 + items: *895 - type: array items: *80 examples: - default-response: *864 + default-response: *868 headers: Link: *47 x-github: @@ -133964,7 +134147,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &892 + enterprise: &896 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -134022,7 +134205,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &893 + installation: &897 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -134041,7 +134224,7 @@ x-webhooks: required: - id - node_id - organization: &894 + organization: &898 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -134101,13 +134284,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &895 + repository: &899 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: &934 + properties: &938 id: description: Unique identifier of the repository example: 42 @@ -134802,7 +134985,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &935 + required: &939 - archive_url - assignees_url - blobs_url @@ -134876,7 +135059,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &936 + x-github-breaking-changes: &940 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -134967,10 +135150,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -135046,11 +135229,11 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - rule: &896 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + rule: &900 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -135273,11 +135456,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - rule: *896 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + rule: *900 sender: *4 required: - action @@ -135460,11 +135643,11 @@ x-webhooks: - everyone required: - from - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - rule: *896 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + rule: *900 sender: *4 required: - action @@ -135537,7 +135720,7 @@ x-webhooks: required: true content: application/json: - schema: &918 + schema: &922 title: Exemption request cancellation event type: object properties: @@ -135545,11 +135728,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - exemption_request: &897 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + exemption_request: &901 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -135853,7 +136036,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &898 + items: &902 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -135963,7 +136146,7 @@ x-webhooks: required: true content: application/json: - schema: &919 + schema: &923 title: Exemption request completed event type: object properties: @@ -135971,11 +136154,11 @@ x-webhooks: type: string enum: - completed - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - exemption_request: *897 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + exemption_request: *901 sender: *4 required: - action @@ -136047,7 +136230,7 @@ x-webhooks: required: true content: application/json: - schema: &916 + schema: &920 title: Exemption request created event type: object properties: @@ -136055,11 +136238,11 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - exemption_request: *897 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + exemption_request: *901 sender: *4 required: - action @@ -136131,7 +136314,7 @@ x-webhooks: required: true content: application/json: - schema: &920 + schema: &924 title: Exemption response dismissed event type: object properties: @@ -136139,12 +136322,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - exemption_request: *897 - exemption_response: *898 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + exemption_request: *901 + exemption_response: *902 sender: *4 required: - action @@ -136218,7 +136401,7 @@ x-webhooks: required: true content: application/json: - schema: &917 + schema: &921 title: Exemption response submitted event type: object properties: @@ -136226,12 +136409,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - exemption_request: *897 - exemption_response: *898 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + exemption_request: *901 + exemption_response: *902 sender: *4 required: - action @@ -136315,7 +136498,7 @@ x-webhooks: type: string enum: - completed - check_run: &900 + check_run: &904 title: CheckRun description: A check performed on the code of a given code change type: object @@ -136406,7 +136589,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *899 + deployment: *903 details_url: example: https://example.com type: string @@ -136491,10 +136674,10 @@ x-webhooks: - output - app - pull_requests - installation: *893 - enterprise: *892 - organization: *894 - repository: *895 + installation: *897 + enterprise: *896 + organization: *898 + repository: *899 sender: *4 required: - check_run @@ -136885,11 +137068,11 @@ x-webhooks: type: string enum: - created - check_run: *900 - installation: *893 - enterprise: *892 - organization: *894 - repository: *895 + check_run: *904 + installation: *897 + enterprise: *896 + organization: *898 + repository: *899 sender: *4 required: - check_run @@ -137283,11 +137466,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *900 - installation: *893 - enterprise: *892 - organization: *894 - repository: *895 + check_run: *904 + installation: *897 + enterprise: *896 + organization: *898 + repository: *899 requested_action: description: The action requested by the user. type: object @@ -137690,11 +137873,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *900 - installation: *893 - enterprise: *892 - organization: *894 - repository: *895 + check_run: *904 + installation: *897 + enterprise: *896 + organization: *898 + repository: *899 sender: *4 required: - check_run @@ -138664,10 +138847,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -139366,10 +139549,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -140062,10 +140245,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -140376,20 +140559,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &901 + commit_oid: &905 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: *892 - installation: *893 - organization: *894 - ref: &902 + enterprise: *896 + installation: *897 + organization: *898 + ref: &906 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: *895 + repository: *899 sender: *4 required: - action @@ -140784,12 +140967,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *901 - enterprise: *892 - installation: *893 - organization: *894 - ref: *902 - repository: *895 + commit_oid: *905 + enterprise: *896 + installation: *897 + organization: *898 + ref: *906 + repository: *899 sender: *4 required: - action @@ -141055,12 +141238,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *901 - enterprise: *892 - installation: *893 - organization: *894 - ref: *902 - repository: *895 + commit_oid: *905 + enterprise: *896 + installation: *897 + organization: *898 + ref: *906 + repository: *899 sender: *4 required: - action @@ -141392,12 +141575,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *901 - enterprise: *892 - installation: *893 - organization: *894 - ref: *902 - repository: *895 + commit_oid: *905 + enterprise: *896 + installation: *897 + organization: *898 + ref: *906 + repository: *899 sender: *4 required: - action @@ -141671,16 +141854,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 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: *895 + repository: *899 sender: *4 required: - action @@ -141917,12 +142100,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *901 - enterprise: *892 - installation: *893 - organization: *894 - ref: *902 - repository: *895 + commit_oid: *905 + enterprise: *896 + installation: *897 + organization: *898 + ref: *906 + repository: *899 sender: *4 required: - action @@ -142233,10 +142416,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -142491,10 +142674,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -142574,18 +142757,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *894 - pusher_type: &903 + organization: *898 + pusher_type: &907 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &904 + ref: &908 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -142595,7 +142778,7 @@ x-webhooks: enum: - tag - branch - repository: *895 + repository: *899 sender: *4 required: - ref @@ -142678,9 +142861,9 @@ x-webhooks: enum: - created definition: *161 - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 required: - action @@ -142765,9 +142948,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 required: - action @@ -142845,9 +143028,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *161 - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 required: - action @@ -142925,9 +143108,9 @@ x-webhooks: enum: - updated definition: *161 - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 required: - action @@ -143004,10 +143187,10 @@ x-webhooks: type: string enum: - updated - enterprise: *892 - installation: *893 - repository: *895 - organization: *894 + enterprise: *896 + installation: *897 + repository: *899 + organization: *898 sender: *4 new_property_values: type: array @@ -143092,18 +143275,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *892 - installation: *893 - organization: *894 - pusher_type: *903 - ref: *904 + enterprise: *896 + installation: *897 + organization: *898 + pusher_type: *907 + ref: *908 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *895 + repository: *899 sender: *4 required: - ref @@ -143184,10 +143367,10 @@ x-webhooks: enum: - assignees_changed alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143268,10 +143451,10 @@ x-webhooks: enum: - auto_dismissed alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143353,10 +143536,10 @@ x-webhooks: enum: - auto_reopened alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143438,10 +143621,10 @@ x-webhooks: enum: - created alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143521,10 +143704,10 @@ x-webhooks: enum: - dismissed alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143604,10 +143787,10 @@ x-webhooks: enum: - fixed alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143688,10 +143871,10 @@ x-webhooks: enum: - reintroduced alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143771,10 +143954,10 @@ x-webhooks: enum: - reopened alert: *632 - installation: *893 - organization: *894 - enterprise: *892 - repository: *895 + installation: *897 + organization: *898 + enterprise: *896 + repository: *899 sender: *4 required: - action @@ -143851,9 +144034,9 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - key: &905 + enterprise: *896 + installation: *897 + key: &909 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -143889,8 +144072,8 @@ x-webhooks: - verified - created_at - read_only - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -143967,11 +144150,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - key: *905 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + key: *909 + organization: *898 + repository: *899 sender: *4 required: - action @@ -144527,12 +144710,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - workflow: &911 + workflow: &915 title: Workflow type: object nullable: true @@ -145273,15 +145456,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *906 - required: *907 + properties: *910 + required: *911 nullable: true pull_requests: type: array - items: *739 - repository: *895 - organization: *894 - installation: *893 + items: *743 + repository: *899 + organization: *898 + installation: *897 sender: *4 responses: '200': @@ -145352,7 +145535,7 @@ x-webhooks: type: string enum: - approved - approver: &908 + approver: &912 type: object properties: avatar_url: @@ -145395,11 +145578,11 @@ x-webhooks: type: string comment: type: string - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - reviewers: &909 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + reviewers: &913 type: array items: type: object @@ -145478,7 +145661,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &910 + workflow_job_run: &914 type: object properties: conclusion: @@ -146209,18 +146392,18 @@ x-webhooks: type: string enum: - rejected - approver: *908 + approver: *912 comment: type: string - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - reviewers: *909 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + reviewers: *913 sender: *4 since: type: string - workflow_job_run: *910 + workflow_job_run: *914 workflow_job_runs: type: array items: @@ -146924,13 +147107,13 @@ x-webhooks: type: string enum: - requested - enterprise: *892 + enterprise: *896 environment: type: string - installation: *893 - organization: *894 - repository: *895 - requestor: &921 + installation: *897 + organization: *898 + repository: *899 + requestor: &925 title: User type: object nullable: true @@ -148819,12 +149002,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - workflow: *911 + workflow: *915 workflow_run: title: Deployment Workflow Run type: object @@ -149504,7 +149687,7 @@ x-webhooks: type: string enum: - answered - answer: &914 + answer: &918 type: object properties: author_association: @@ -149661,11 +149844,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -149792,11 +149975,11 @@ x-webhooks: - from required: - category - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -149879,11 +150062,11 @@ x-webhooks: type: string enum: - closed - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -149965,7 +150148,7 @@ x-webhooks: type: string enum: - created - comment: &913 + comment: &917 type: object properties: author_association: @@ -150122,11 +150305,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150209,12 +150392,12 @@ x-webhooks: type: string enum: - deleted - comment: *913 - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + comment: *917 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150309,12 +150492,12 @@ x-webhooks: - from required: - body - comment: *913 - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + comment: *917 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150398,11 +150581,11 @@ x-webhooks: type: string enum: - created - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150484,11 +150667,11 @@ x-webhooks: type: string enum: - deleted - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150588,11 +150771,11 @@ x-webhooks: type: string required: - from - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150674,10 +150857,10 @@ x-webhooks: type: string enum: - labeled - discussion: *912 - enterprise: *892 - installation: *893 - label: &915 + discussion: *916 + enterprise: *896 + installation: *897 + label: &919 title: Label type: object properties: @@ -150709,8 +150892,8 @@ x-webhooks: - color - default - description - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150793,11 +150976,11 @@ x-webhooks: type: string enum: - locked - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150879,11 +151062,11 @@ x-webhooks: type: string enum: - pinned - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -150965,11 +151148,11 @@ x-webhooks: type: string enum: - reopened - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151054,16 +151237,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *912 - new_repository: *895 + new_discussion: *916 + new_repository: *899 required: - new_discussion - new_repository - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151146,10 +151329,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *912 - old_answer: *914 - organization: *894 - repository: *895 + discussion: *916 + old_answer: *918 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151231,12 +151414,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *912 - enterprise: *892 - installation: *893 - label: *915 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151319,11 +151502,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151405,11 +151588,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *912 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + discussion: *916 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -151478,7 +151661,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151541,7 +151724,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151604,7 +151787,7 @@ x-webhooks: required: true content: application/json: - schema: *918 + schema: *922 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151667,7 +151850,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151730,7 +151913,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151796,7 +151979,7 @@ x-webhooks: required: true content: application/json: - schema: *918 + schema: *922 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151862,7 +152045,7 @@ x-webhooks: required: true content: application/json: - schema: *919 + schema: *923 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151928,7 +152111,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151994,7 +152177,7 @@ x-webhooks: required: true content: application/json: - schema: *920 + schema: *924 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152060,7 +152243,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152125,7 +152308,7 @@ x-webhooks: required: true content: application/json: - schema: *918 + schema: *922 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152190,7 +152373,7 @@ x-webhooks: required: true content: application/json: - schema: *919 + schema: *923 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152255,7 +152438,7 @@ x-webhooks: required: true content: application/json: - schema: *916 + schema: *920 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152320,7 +152503,7 @@ x-webhooks: required: true content: application/json: - schema: *920 + schema: *924 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152386,7 +152569,7 @@ x-webhooks: required: true content: application/json: - schema: *917 + schema: *921 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152453,7 +152636,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *892 + enterprise: *896 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -153113,9 +153296,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - forkee @@ -153261,9 +153444,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pages: description: The pages that were updated. type: array @@ -153300,7 +153483,7 @@ x-webhooks: - action - sha - html_url - repository: *895 + repository: *899 sender: *4 required: - pages @@ -153376,10 +153559,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories: &922 + organization: *898 + repositories: &926 description: An array of repository objects that the installation can access. type: array @@ -153405,8 +153588,8 @@ x-webhooks: - name - full_name - private - repository: *895 - requester: *921 + repository: *899 + requester: *925 sender: *4 required: - action @@ -153481,11 +153664,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories: *922 - repository: *895 + organization: *898 + repositories: *926 + repository: *899 requester: nullable: true sender: *4 @@ -153561,11 +153744,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories: *922 - repository: *895 + organization: *898 + repositories: *926 + repository: *899 requester: nullable: true sender: *4 @@ -153641,10 +153824,10 @@ x-webhooks: type: string enum: - added - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories_added: &923 + organization: *898 + repositories_added: &927 description: An array of repository objects, which were added to the installation. type: array @@ -153690,15 +153873,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *895 - repository_selection: &924 + repository: *899 + repository_selection: &928 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *921 + requester: *925 sender: *4 required: - action @@ -153777,10 +153960,10 @@ x-webhooks: type: string enum: - removed - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories_added: *923 + organization: *898 + repositories_added: *927 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -153807,9 +153990,9 @@ x-webhooks: - name - full_name - private - repository: *895 - repository_selection: *924 - requester: *921 + repository: *899 + repository_selection: *928 + requester: *925 sender: *4 required: - action @@ -153888,11 +154071,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories: *922 - repository: *895 + organization: *898 + repositories: *926 + repository: *899 requester: nullable: true sender: *4 @@ -154071,10 +154254,10 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 target_type: type: string @@ -154153,11 +154336,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *892 + enterprise: *896 installation: *22 - organization: *894 - repositories: *922 - repository: *895 + organization: *898 + repositories: *926 + repository: *899 requester: nullable: true sender: *4 @@ -154331,8 +154514,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *714 - required: *715 + properties: *715 + required: *716 nullable: true user: title: User @@ -154417,8 +154600,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -155207,8 +155390,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155557,8 +155740,8 @@ x-webhooks: - state - locked - assignee - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -155638,7 +155821,7 @@ x-webhooks: type: string enum: - deleted - comment: &925 + comment: &929 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -155795,8 +155978,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *714 - required: *715 + properties: *715 + required: *716 nullable: true required: - url @@ -155811,8 +155994,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156597,8 +156780,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156949,8 +157132,8 @@ x-webhooks: - state - locked - assignee - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -157030,7 +157213,7 @@ x-webhooks: type: string enum: - edited - changes: &955 + changes: &959 description: The changes to the comment. type: object properties: @@ -157042,9 +157225,9 @@ x-webhooks: type: string required: - from - comment: *925 - enterprise: *892 - installation: *893 + comment: *929 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157832,8 +158015,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158182,8 +158365,8 @@ x-webhooks: - state - locked - assignee - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -158264,9 +158447,9 @@ x-webhooks: type: string enum: - pinned - comment: *925 - enterprise: *892 - installation: *893 + comment: *929 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159056,8 +159239,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159408,8 +159591,8 @@ x-webhooks: - state - locked - assignee - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -159489,9 +159672,9 @@ x-webhooks: type: string enum: - unpinned - comment: *925 - enterprise: *892 - installation: *893 + comment: *929 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160281,8 +160464,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160633,8 +160816,8 @@ x-webhooks: - state - locked - assignee - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -160723,9 +160906,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -160814,9 +160997,9 @@ x-webhooks: type: number blocking_issue: *228 blocking_issue_repo: *80 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -160904,9 +161087,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -160995,9 +161178,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -161077,10 +161260,10 @@ x-webhooks: type: string enum: - assigned - assignee: *921 - enterprise: *892 - installation: *893 - issue: &926 + assignee: *925 + enterprise: *896 + installation: *897 + issue: &930 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -161872,11 +162055,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161993,8 +162176,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -162074,8 +162257,8 @@ x-webhooks: type: string enum: - closed - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -162872,11 +163055,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163128,8 +163311,8 @@ x-webhooks: required: - state - closed_at - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -163208,8 +163391,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -163997,11 +164180,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164117,8 +164300,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -164197,8 +164380,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165008,11 +165191,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165107,7 +165290,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &927 + milestone: &931 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165245,8 +165428,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -165345,8 +165528,8 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166138,11 +166321,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166259,9 +166442,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *915 - organization: *894 - repository: *895 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -166341,9 +166524,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *892 - installation: *893 - issue: *926 + enterprise: *896 + installation: *897 + issue: *930 issue_field: type: object description: The issue field whose value was set or updated on the @@ -166497,8 +166680,8 @@ x-webhooks: - id required: - from - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -166578,9 +166761,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *892 - installation: *893 - issue: *926 + enterprise: *896 + installation: *897 + issue: *930 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -166661,8 +166844,8 @@ x-webhooks: nullable: true required: - id - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -166742,8 +166925,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167534,11 +167717,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167655,9 +167838,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *915 - organization: *894 - repository: *895 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -167737,8 +167920,8 @@ x-webhooks: type: string enum: - locked - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168553,11 +168736,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168651,8 +168834,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -168731,8 +168914,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169541,11 +169724,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169639,9 +169822,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *927 - organization: *894 - repository: *895 + milestone: *931 + organization: *898 + repository: *899 sender: *4 required: - action @@ -170504,11 +170687,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171089,8 +171272,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171874,11 +172057,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172002,8 +172185,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -172083,9 +172266,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *892 - installation: *893 - issue: &928 + enterprise: *896 + installation: *897 + issue: &932 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -172871,11 +173054,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172991,8 +173174,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -173071,8 +173254,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173885,11 +174068,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173984,8 +174167,8 @@ x-webhooks: user_view_type: type: string type: *401 - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -174854,11 +175037,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175453,11 +175636,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *892 - installation: *893 - issue: *928 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + issue: *932 + organization: *898 + repository: *899 sender: *4 required: - action @@ -175537,12 +175720,12 @@ x-webhooks: type: string enum: - typed - enterprise: *892 - installation: *893 - issue: *926 + enterprise: *896 + installation: *897 + issue: *930 type: *401 - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -175623,7 +175806,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &958 + assignee: &962 title: User type: object nullable: true @@ -175693,11 +175876,11 @@ x-webhooks: required: - login - id - enterprise: *892 - installation: *893 - issue: *926 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + issue: *930 + organization: *898 + repository: *899 sender: *4 required: - action @@ -175776,12 +175959,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *892 - installation: *893 - issue: *926 - label: *915 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + issue: *930 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -175861,8 +176044,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176675,11 +176858,11 @@ x-webhooks: properties: *229 required: *230 nullable: true - sub_issues_summary: *831 - issue_dependencies_summary: *832 + sub_issues_summary: *835 + issue_dependencies_summary: *836 issue_field_values: type: array - items: *698 + items: *699 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176773,8 +176956,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -176854,11 +177037,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *892 - installation: *893 - issue: *928 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + issue: *932 + organization: *898 + repository: *899 sender: *4 required: - action @@ -176937,12 +177120,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *892 - installation: *893 - issue: *926 + enterprise: *896 + installation: *897 + issue: *930 type: *401 - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -177022,11 +177205,11 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - label: *915 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -177104,11 +177287,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - label: *915 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -177218,11 +177401,11 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - label: *915 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + label: *919 + organization: *898 + repository: *899 sender: *4 required: - action @@ -177304,9 +177487,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *892 - installation: *893 - marketplace_purchase: &929 + enterprise: *896 + installation: *897 + marketplace_purchase: &933 title: Marketplace Purchase type: object required: @@ -177389,8 +177572,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *894 - previous_marketplace_purchase: &930 + organization: *898 + previous_marketplace_purchase: &934 title: Marketplace Purchase type: object properties: @@ -177470,7 +177653,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *895 + repository: *899 sender: *4 required: - action @@ -177550,10 +177733,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *892 - installation: *893 - marketplace_purchase: *929 - organization: *894 + enterprise: *896 + installation: *897 + marketplace_purchase: *933 + organization: *898 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -177636,7 +177819,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *895 + repository: *899 sender: *4 required: - action @@ -177718,10 +177901,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *892 - installation: *893 - marketplace_purchase: *929 - organization: *894 + enterprise: *896 + installation: *897 + marketplace_purchase: *933 + organization: *898 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -177803,7 +177986,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *895 + repository: *899 sender: *4 required: - action @@ -177884,8 +178067,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 marketplace_purchase: title: Marketplace Purchase type: object @@ -177967,9 +178150,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *894 - previous_marketplace_purchase: *930 - repository: *895 + organization: *898 + previous_marketplace_purchase: *934 + repository: *899 sender: *4 required: - action @@ -178049,12 +178232,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *892 - installation: *893 - marketplace_purchase: *929 - organization: *894 - previous_marketplace_purchase: *930 - repository: *895 + enterprise: *896 + installation: *897 + marketplace_purchase: *933 + organization: *898 + previous_marketplace_purchase: *934 + repository: *899 sender: *4 required: - action @@ -178156,11 +178339,11 @@ x-webhooks: type: string required: - to - enterprise: *892 - installation: *893 - member: *921 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + member: *925 + organization: *898 + repository: *899 sender: *4 required: - action @@ -178260,11 +178443,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *892 - installation: *893 - member: *921 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + member: *925 + organization: *898 + repository: *899 sender: *4 required: - action @@ -178343,11 +178526,11 @@ x-webhooks: type: string enum: - removed - enterprise: *892 - installation: *893 - member: *921 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + member: *925 + organization: *898 + repository: *899 sender: *4 required: - action @@ -178425,11 +178608,11 @@ x-webhooks: type: string enum: - added - enterprise: *892 - installation: *893 - member: *921 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + member: *925 + organization: *898 + repository: *899 scope: description: The scope of the membership. Currently, can only be `team`. @@ -178505,7 +178688,7 @@ x-webhooks: required: - login - id - team: &931 + team: &935 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -178728,11 +178911,11 @@ x-webhooks: type: string enum: - removed - enterprise: *892 - installation: *893 - member: *921 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + member: *925 + organization: *898 + repository: *899 scope: description: The scope of the membership. Currently, can only be `team`. @@ -178809,7 +178992,7 @@ x-webhooks: required: - login - id - team: *931 + team: *935 required: - action - scope @@ -178891,8 +179074,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *893 - merge_group: &933 + installation: *897 + merge_group: &937 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -178911,15 +179094,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *932 + head_commit: *936 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179005,10 +179188,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *893 - merge_group: *933 - organization: *894 - repository: *895 + installation: *897 + merge_group: *937 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179081,7 +179264,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 + enterprise: *896 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -179190,17 +179373,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *893 - organization: *894 + installation: *897 + organization: *898 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: *934 - required: *935 - x-github-breaking-changes: *936 + properties: *938 + required: *939 + x-github-breaking-changes: *940 nullable: true sender: *4 required: @@ -179281,11 +179464,11 @@ x-webhooks: type: string enum: - closed - enterprise: *892 - installation: *893 - milestone: *927 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + milestone: *931 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179364,9 +179547,9 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - milestone: &937 + enterprise: *896 + installation: *897 + milestone: &941 title: Milestone description: A collection of related issues and pull requests. type: object @@ -179503,8 +179686,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179583,11 +179766,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - milestone: *927 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + milestone: *931 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179697,11 +179880,11 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - milestone: *927 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + milestone: *931 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179781,11 +179964,11 @@ x-webhooks: type: string enum: - opened - enterprise: *892 - installation: *893 - milestone: *937 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + milestone: *941 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179864,11 +180047,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *921 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + blocked_user: *925 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -179947,11 +180130,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *921 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + blocked_user: *925 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -180027,7 +180210,7 @@ x-webhooks: enum: - created definition: *156 - enterprise: *892 + enterprise: *896 sender: *4 required: - action @@ -180107,8 +180290,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 sender: *4 required: - action @@ -180181,8 +180364,8 @@ x-webhooks: enum: - updated definition: *156 - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 sender: *4 required: - action @@ -180254,9 +180437,9 @@ x-webhooks: type: string enum: - updated - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 new_property_values: type: array @@ -180344,9 +180527,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - membership: &938 + enterprise: *896 + installation: *897 + membership: &942 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -180453,8 +180636,8 @@ x-webhooks: - role - organization_url - user - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 required: - action @@ -180532,11 +180715,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *892 - installation: *893 - membership: *938 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + membership: *942 + organization: *898 + repository: *899 sender: *4 required: - action @@ -180615,8 +180798,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -180732,10 +180915,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 - user: *921 + user: *925 required: - action - invitation @@ -180813,11 +180996,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *892 - installation: *893 - membership: *938 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + membership: *942 + organization: *898 + repository: *899 sender: *4 required: - action @@ -180904,11 +181087,11 @@ x-webhooks: properties: from: type: string - enterprise: *892 - installation: *893 - membership: *938 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + membership: *942 + organization: *898 + repository: *899 sender: *4 required: - action @@ -180986,9 +181169,9 @@ x-webhooks: type: string enum: - published - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 package: description: Information about the package. type: object @@ -181487,7 +181670,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &939 + items: &943 title: Ruby Gems metadata type: object properties: @@ -181582,7 +181765,7 @@ x-webhooks: - owner - package_version - registry - repository: *895 + repository: *899 sender: *4 required: - action @@ -181659,9 +181842,9 @@ x-webhooks: type: string enum: - updated - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 package: description: Information about the package. type: object @@ -182014,7 +182197,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *939 + items: *943 source_url: type: string format: uri @@ -182084,7 +182267,7 @@ x-webhooks: - owner - package_version - registry - repository: *895 + repository: *899 sender: *4 required: - action @@ -182260,12 +182443,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *892 + enterprise: *896 id: type: integer - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - id @@ -182342,7 +182525,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &940 + personal_access_token_request: &944 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -182488,10 +182671,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *892 - organization: *894 + enterprise: *896 + organization: *898 sender: *4 - installation: *893 + installation: *897 required: - action - personal_access_token_request @@ -182568,11 +182751,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *940 - enterprise: *892 - organization: *894 + personal_access_token_request: *944 + enterprise: *896 + organization: *898 sender: *4 - installation: *893 + installation: *897 required: - action - personal_access_token_request @@ -182648,11 +182831,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *940 - enterprise: *892 - organization: *894 + personal_access_token_request: *944 + enterprise: *896 + organization: *898 sender: *4 - installation: *893 + installation: *897 required: - action - personal_access_token_request @@ -182727,11 +182910,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *940 - organization: *894 - enterprise: *892 + personal_access_token_request: *944 + organization: *898 + enterprise: *896 sender: *4 - installation: *893 + installation: *897 required: - action - personal_access_token_request @@ -182836,7 +183019,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *941 + last_response: *945 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -182868,8 +183051,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 zen: description: Random string of GitHub zen. @@ -183114,10 +183297,10 @@ x-webhooks: - from required: - note - enterprise: *892 - installation: *893 - organization: *894 - project_card: &942 + enterprise: *896 + installation: *897 + organization: *898 + project_card: &946 title: Project Card type: object properties: @@ -183236,7 +183419,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *895 + repository: *899 sender: *4 required: - action @@ -183317,11 +183500,11 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - project_card: *942 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project_card: *946 + repository: *899 sender: *4 required: - action @@ -183401,9 +183584,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 project_card: title: Project Card type: object @@ -183531,9 +183714,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *934 - required: *935 - x-github-breaking-changes: *936 + properties: *938 + required: *939 + x-github-breaking-changes: *940 nullable: true sender: *4 required: @@ -183627,11 +183810,11 @@ x-webhooks: - from required: - note - enterprise: *892 - installation: *893 - organization: *894 - project_card: *942 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project_card: *946 + repository: *899 sender: *4 required: - action @@ -183725,9 +183908,9 @@ x-webhooks: - from required: - column_id - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 project_card: allOf: - title: Project Card @@ -183917,7 +184100,7 @@ x-webhooks: type: string required: - after_id - repository: *895 + repository: *899 sender: *4 required: - action @@ -183997,10 +184180,10 @@ x-webhooks: type: string enum: - closed - enterprise: *892 - installation: *893 - organization: *894 - project: &944 + enterprise: *896 + installation: *897 + organization: *898 + project: &948 title: Project type: object properties: @@ -184124,7 +184307,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *895 + repository: *899 sender: *4 required: - action @@ -184204,10 +184387,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - project_column: &943 + enterprise: *896 + installation: *897 + organization: *898 + project_column: &947 title: Project Column type: object properties: @@ -184246,7 +184429,7 @@ x-webhooks: - name - created_at - updated_at - repository: *895 + repository: *899 sender: *4 required: - action @@ -184325,19 +184508,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - project_column: *943 + enterprise: *896 + installation: *897 + organization: *898 + project_column: *947 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: *934 - required: *935 - x-github-breaking-changes: *936 + properties: *938 + required: *939 + x-github-breaking-changes: *940 nullable: true sender: *4 required: @@ -184427,11 +184610,11 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - organization: *894 - project_column: *943 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project_column: *947 + repository: *899 sender: *4 required: - action @@ -184511,11 +184694,11 @@ x-webhooks: type: string enum: - moved - enterprise: *892 - installation: *893 - organization: *894 - project_column: *943 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project_column: *947 + repository: *899 sender: *4 required: - action @@ -184595,11 +184778,11 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - project: *944 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project: *948 + repository: *899 sender: *4 required: - action @@ -184679,19 +184862,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - project: *944 + enterprise: *896 + installation: *897 + organization: *898 + project: *948 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: *934 - required: *935 - x-github-breaking-changes: *936 + properties: *938 + required: *939 + x-github-breaking-changes: *940 nullable: true sender: *4 required: @@ -184793,11 +184976,11 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - organization: *894 - project: *944 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project: *948 + repository: *899 sender: *4 required: - action @@ -184876,11 +185059,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *892 - installation: *893 - organization: *894 - project: *944 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + project: *948 + repository: *899 sender: *4 required: - action @@ -184961,8 +185144,8 @@ x-webhooks: type: string enum: - closed - installation: *893 - organization: *894 + installation: *897 + organization: *898 projects_v2: *433 sender: *4 required: @@ -185044,8 +185227,8 @@ x-webhooks: type: string enum: - created - installation: *893 - organization: *894 + installation: *897 + organization: *898 projects_v2: *433 sender: *4 required: @@ -185127,8 +185310,8 @@ x-webhooks: type: string enum: - deleted - installation: *893 - organization: *894 + installation: *897 + organization: *898 projects_v2: *433 sender: *4 required: @@ -185246,8 +185429,8 @@ x-webhooks: type: string to: type: string - installation: *893 - organization: *894 + installation: *897 + organization: *898 projects_v2: *433 sender: *4 required: @@ -185331,7 +185514,7 @@ x-webhooks: type: string enum: - archived - changes: &948 + changes: &952 type: object properties: archived_at: @@ -185345,9 +185528,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *893 - organization: *894 - projects_v2_item: &945 + installation: *897 + organization: *898 + projects_v2_item: &949 title: Projects v2 Item description: An item belonging to a project type: object @@ -185482,9 +185665,9 @@ x-webhooks: nullable: true to: type: string - installation: *893 - organization: *894 - projects_v2_item: *945 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -185566,9 +185749,9 @@ x-webhooks: type: string enum: - created - installation: *893 - organization: *894 - projects_v2_item: *945 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -185649,9 +185832,9 @@ x-webhooks: type: string enum: - deleted - installation: *893 - organization: *894 - projects_v2_item: *945 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -185757,7 +185940,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &946 + - &950 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -185779,7 +185962,7 @@ x-webhooks: required: - id - name - - &947 + - &951 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -185813,8 +185996,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *946 - - *947 + - *950 + - *951 required: - field_value - type: object @@ -185830,9 +186013,9 @@ x-webhooks: nullable: true required: - body - installation: *893 - organization: *894 - projects_v2_item: *945 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -185927,9 +186110,9 @@ x-webhooks: to: type: string nullable: true - installation: *893 - organization: *894 - projects_v2_item: *945 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -186012,10 +186195,10 @@ x-webhooks: type: string enum: - restored - changes: *948 - installation: *893 - organization: *894 - projects_v2_item: *945 + changes: *952 + installation: *897 + organization: *898 + projects_v2_item: *949 sender: *4 required: - action @@ -186097,8 +186280,8 @@ x-webhooks: type: string enum: - reopened - installation: *893 - organization: *894 + installation: *897 + organization: *898 projects_v2: *433 sender: *4 required: @@ -186180,14 +186363,14 @@ x-webhooks: type: string enum: - created - installation: *893 - organization: *894 - projects_v2_status_update: &951 + installation: *897 + organization: *898 + projects_v2_status_update: &955 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *949 - required: *950 + properties: *953 + required: *954 sender: *4 required: - action @@ -186268,9 +186451,9 @@ x-webhooks: type: string enum: - deleted - installation: *893 - organization: *894 - projects_v2_status_update: *951 + installation: *897 + organization: *898 + projects_v2_status_update: *955 sender: *4 required: - action @@ -186406,9 +186589,9 @@ x-webhooks: type: string format: date nullable: true - installation: *893 - organization: *894 - projects_v2_status_update: *951 + installation: *897 + organization: *898 + projects_v2_status_update: *955 sender: *4 required: - action @@ -186479,10 +186662,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - repository @@ -186559,13 +186742,13 @@ x-webhooks: type: string enum: - assigned - assignee: *921 - enterprise: *892 - installation: *893 - number: &952 + assignee: *925 + enterprise: *896 + installation: *897 + number: &956 description: The pull request number. type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -188870,7 +189053,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -188967,11 +189150,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -191271,7 +191454,7 @@ x-webhooks: - draft reason: type: string - repository: *895 + repository: *899 sender: *4 required: - action @@ -191368,11 +191551,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -193672,7 +193855,7 @@ x-webhooks: - draft reason: type: string - repository: *895 + repository: *899 sender: *4 required: - action @@ -193769,13 +193952,13 @@ x-webhooks: type: string enum: - closed - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: &953 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: &957 allOf: - - *739 + - *743 - type: object properties: allow_auto_merge: @@ -193837,7 +194020,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *895 + repository: *899 sender: *4 required: - action @@ -193918,12 +194101,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: *953 - repository: *895 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: *957 + repository: *899 sender: *4 required: - action @@ -194003,11 +194186,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *892 - milestone: *721 - number: *952 - organization: *894 - pull_request: &954 + enterprise: *896 + milestone: *725 + number: *956 + organization: *898 + pull_request: &958 title: Pull Request type: object properties: @@ -196334,7 +196517,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *895 + repository: *899 sender: *4 required: - action @@ -196413,11 +196596,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -198721,7 +198904,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *895 + repository: *899 sender: *4 required: - action @@ -198853,12 +199036,12 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: *953 - repository: *895 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: *957 + repository: *899 sender: *4 required: - action @@ -198938,11 +199121,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -201231,7 +201414,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -201319,11 +201502,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *892 - installation: *893 - label: *915 - number: *952 - organization: *894 + enterprise: *896 + installation: *897 + label: *919 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -203627,7 +203810,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -203723,10 +203906,10 @@ x-webhooks: type: string enum: - locked - enterprise: *892 - installation: *893 - number: *952 - organization: *894 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -206028,7 +206211,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -206123,12 +206306,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *892 - milestone: *721 - number: *952 - organization: *894 - pull_request: *954 - repository: *895 + enterprise: *896 + milestone: *725 + number: *956 + organization: *898 + pull_request: *958 + repository: *899 sender: *4 required: - action @@ -206207,12 +206390,12 @@ x-webhooks: type: string enum: - opened - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: *953 - repository: *895 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: *957 + repository: *899 sender: *4 required: - action @@ -206293,12 +206476,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: *953 - repository: *895 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: *957 + repository: *899 sender: *4 required: - action @@ -206378,12 +206561,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *892 - installation: *893 - number: *952 - organization: *894 - pull_request: *953 - repository: *895 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 + pull_request: *957 + repository: *899 sender: *4 required: - action @@ -206749,9 +206932,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: type: object properties: @@ -208943,7 +209126,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *895 + repository: *899 sender: *4 required: - action @@ -209038,7 +209221,7 @@ x-webhooks: type: string enum: - deleted - comment: &956 + comment: &960 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -209323,9 +209506,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: type: object properties: @@ -211505,7 +211688,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *895 + repository: *899 sender: *4 required: - action @@ -211600,11 +211783,11 @@ x-webhooks: type: string enum: - edited - changes: *955 - comment: *956 - enterprise: *892 - installation: *893 - organization: *894 + changes: *959 + comment: *960 + enterprise: *896 + installation: *897 + organization: *898 pull_request: type: object properties: @@ -213787,7 +213970,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *895 + repository: *899 sender: *4 required: - action @@ -213883,9 +214066,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: title: Simple Pull Request type: object @@ -216080,7 +216263,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *895 + repository: *899 review: description: The review that was affected. type: object @@ -216342,9 +216525,9 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: title: Simple Pull Request type: object @@ -218398,8 +218581,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *895 - review: &957 + repository: *899 + review: &961 description: The review that was affected. type: object properties: @@ -218640,12 +218823,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: description: The pull request number. type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -220950,7 +221133,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 requested_reviewer: title: User type: object @@ -221034,12 +221217,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: description: The pull request number. type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -223351,7 +223534,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 requested_team: title: Team description: Groups of organization members that gives permissions @@ -223566,12 +223749,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: description: The pull request number. type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -225878,7 +226061,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 requested_reviewer: title: User type: object @@ -225963,12 +226146,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *892 - installation: *893 + enterprise: *896 + installation: *897 number: description: The pull request number. type: integer - organization: *894 + organization: *898 pull_request: title: Pull Request type: object @@ -228266,7 +228449,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 requested_team: title: Team description: Groups of organization members that gives permissions @@ -228470,9 +228653,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: title: Simple Pull Request type: object @@ -230669,8 +230852,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *895 - review: *957 + repository: *899 + review: *961 sender: *4 required: - action @@ -230765,9 +230948,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: title: Simple Pull Request type: object @@ -232859,7 +233042,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *895 + repository: *899 sender: *4 thread: type: object @@ -233254,9 +233437,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 pull_request: title: Simple Pull Request type: object @@ -235334,7 +235517,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *895 + repository: *899 sender: *4 thread: type: object @@ -235732,10 +235915,10 @@ x-webhooks: type: string before: type: string - enterprise: *892 - installation: *893 - number: *952 - organization: *894 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -238028,7 +238211,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -238125,11 +238308,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *958 - enterprise: *892 - installation: *893 - number: *952 - organization: *894 + assignee: *962 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -240434,7 +240617,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -240528,11 +240711,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *892 - installation: *893 - label: *915 - number: *952 - organization: *894 + enterprise: *896 + installation: *897 + label: *919 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -242827,7 +243010,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -242923,10 +243106,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *892 - installation: *893 - number: *952 - organization: *894 + enterprise: *896 + installation: *897 + number: *956 + organization: *898 pull_request: title: Pull Request type: object @@ -245213,7 +245396,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *895 + repository: *899 sender: *4 required: - action @@ -245428,7 +245611,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *892 + enterprise: *896 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -245520,8 +245703,8 @@ x-webhooks: - url - author - committer - installation: *893 - organization: *894 + installation: *897 + organization: *898 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -246107,9 +246290,9 @@ x-webhooks: type: string enum: - published - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 registry_package: type: object properties: @@ -246555,7 +246738,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *939 + items: *943 summary: type: string tag_name: @@ -246609,7 +246792,7 @@ x-webhooks: - owner - package_version - registry - repository: *895 + repository: *899 sender: *4 required: - action @@ -246687,9 +246870,9 @@ x-webhooks: type: string enum: - updated - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 registry_package: type: object properties: @@ -246997,7 +247180,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *939 + items: *943 summary: type: string tag_name: @@ -247046,7 +247229,7 @@ x-webhooks: - owner - package_version - registry - repository: *895 + repository: *899 sender: *4 required: - action @@ -247123,10 +247306,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - release: &959 + enterprise: *896 + installation: *897 + organization: *898 + release: &963 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -247444,7 +247627,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *895 + repository: *899 sender: *4 required: - action @@ -247521,11 +247704,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - release: *959 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + release: *963 + repository: *899 sender: *4 required: - action @@ -247642,11 +247825,11 @@ x-webhooks: type: boolean required: - to - enterprise: *892 - installation: *893 - organization: *894 - release: *959 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + release: *963 + repository: *899 sender: *4 required: - action @@ -247724,9 +247907,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -248048,7 +248231,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *895 + repository: *899 sender: *4 required: - action @@ -248124,10 +248307,10 @@ x-webhooks: type: string enum: - published - enterprise: *892 - installation: *893 - organization: *894 - release: &960 + enterprise: *896 + installation: *897 + organization: *898 + release: &964 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -248446,7 +248629,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *895 + repository: *899 sender: *4 required: - action @@ -248522,11 +248705,11 @@ x-webhooks: type: string enum: - released - enterprise: *892 - installation: *893 - organization: *894 - release: *959 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + release: *963 + repository: *899 sender: *4 required: - action @@ -248602,11 +248785,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *892 - installation: *893 - organization: *894 - release: *960 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + release: *964 + repository: *899 sender: *4 required: - action @@ -248682,11 +248865,11 @@ x-webhooks: type: string enum: - published - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - repository_advisory: *792 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + repository_advisory: *796 sender: *4 required: - action @@ -248762,11 +248945,11 @@ x-webhooks: type: string enum: - reported - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - repository_advisory: *792 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + repository_advisory: *796 sender: *4 required: - action @@ -248842,10 +249025,10 @@ x-webhooks: type: string enum: - archived - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -248922,10 +249105,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249003,10 +249186,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249090,10 +249273,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249205,10 +249388,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249280,10 +249463,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 status: type: string @@ -249364,10 +249547,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249444,10 +249627,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249541,10 +249724,10 @@ x-webhooks: - name required: - repository - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -249624,10 +249807,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 repository_ruleset: *195 sender: *4 required: @@ -249706,10 +249889,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 repository_ruleset: *195 sender: *4 required: @@ -249788,10 +249971,10 @@ x-webhooks: type: string enum: - edited - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 repository_ruleset: *195 changes: type: object @@ -249853,16 +250036,16 @@ x-webhooks: properties: added: type: array - items: *759 + items: *763 deleted: type: array - items: *759 + items: *763 updated: type: array items: type: object properties: - rule: *759 + rule: *763 changes: type: object properties: @@ -250096,10 +250279,10 @@ x-webhooks: - from required: - owner - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250177,10 +250360,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250258,7 +250441,7 @@ x-webhooks: type: string enum: - create - alert: &961 + alert: &965 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -250380,10 +250563,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250589,10 +250772,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250670,11 +250853,11 @@ x-webhooks: type: string enum: - reopen - alert: *961 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *965 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250873,10 +251056,10 @@ x-webhooks: enum: - fixed - open - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -250954,7 +251137,7 @@ x-webhooks: type: string enum: - assigned - alert: &962 + alert: &966 type: object properties: number: *131 @@ -251097,10 +251280,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251178,11 +251361,11 @@ x-webhooks: type: string enum: - created - alert: *962 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *966 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251263,11 +251446,11 @@ x-webhooks: type: string enum: - created - alert: *962 - installation: *893 - location: *963 - organization: *894 - repository: *895 + alert: *966 + installation: *897 + location: *967 + organization: *898 + repository: *899 sender: *4 required: - location @@ -251505,11 +251688,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *962 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *966 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251587,11 +251770,11 @@ x-webhooks: type: string enum: - reopened - alert: *962 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *966 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251669,11 +251852,11 @@ x-webhooks: type: string enum: - resolved - alert: *962 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *966 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251751,12 +251934,12 @@ x-webhooks: type: string enum: - unassigned - alert: *962 + alert: *966 assignee: *4 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251834,11 +252017,11 @@ x-webhooks: type: string enum: - validated - alert: *962 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + alert: *966 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -251964,10 +252147,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *895 - enterprise: *892 - installation: *893 - organization: *894 + repository: *899 + enterprise: *896 + installation: *897 + organization: *898 sender: *4 required: - action @@ -252045,11 +252228,11 @@ x-webhooks: type: string enum: - published - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - security_advisory: &964 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + security_advisory: &968 description: The details of the security advisory, including summary, description, and severity. type: object @@ -252250,11 +252433,11 @@ x-webhooks: type: string enum: - updated - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 - security_advisory: *964 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 + security_advisory: *968 sender: *4 required: - action @@ -252327,10 +252510,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -252523,9 +252706,9 @@ x-webhooks: type: object properties: security_and_analysis: *451 - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: *498 sender: *4 required: @@ -252604,12 +252787,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: &965 + sponsorship: &969 type: object properties: created_at: @@ -252910,12 +253093,12 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: *965 + sponsorship: *969 required: - action - sponsorship @@ -253003,12 +253186,12 @@ x-webhooks: type: string required: - from - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: *965 + sponsorship: *969 required: - action - changes @@ -253085,17 +253268,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &966 + effective_date: &970 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: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: *965 + sponsorship: *969 required: - action - sponsorship @@ -253169,7 +253352,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &967 + changes: &971 type: object properties: tier: @@ -253213,13 +253396,13 @@ x-webhooks: - from required: - tier - effective_date: *966 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + effective_date: *970 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: *965 + sponsorship: *969 required: - action - changes @@ -253296,13 +253479,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *967 - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + changes: *971 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - sponsorship: *965 + sponsorship: *969 required: - action - changes @@ -253376,10 +253559,10 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -253462,10 +253645,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -253885,15 +254068,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *892 + enterprise: *896 id: description: The unique identifier of the status. type: integer - installation: *893 + installation: *897 name: type: string - organization: *894 - repository: *895 + organization: *898 + repository: *899 sender: *4 sha: description: The Commit SHA. @@ -254008,9 +254191,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -254099,9 +254282,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -254190,9 +254373,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -254281,9 +254464,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *228 - installation: *893 - organization: *894 - repository: *895 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -254359,12 +254542,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - team: &968 + team: &972 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -254587,9 +254770,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: title: Repository description: A git repository @@ -255047,7 +255230,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *968 + team: *972 required: - action - team @@ -255123,9 +255306,9 @@ x-webhooks: type: string enum: - created - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: title: Repository description: A git repository @@ -255583,7 +255766,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *968 + team: *972 required: - action - team @@ -255660,9 +255843,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: title: Repository description: A git repository @@ -256120,7 +256303,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *968 + team: *972 required: - action - team @@ -256264,9 +256447,9 @@ x-webhooks: - from required: - permissions - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: title: Repository description: A git repository @@ -256724,7 +256907,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *968 + team: *972 required: - action - changes @@ -256802,9 +256985,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *892 - installation: *893 - organization: *894 + enterprise: *896 + installation: *897 + organization: *898 repository: title: Repository description: A git repository @@ -257262,7 +257445,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *968 + team: *972 required: - action - team @@ -257338,10 +257521,10 @@ x-webhooks: type: string enum: - started - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 required: - action @@ -257414,16 +257597,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *892 + enterprise: *896 inputs: type: object nullable: true additionalProperties: true - installation: *893 - organization: *894 + installation: *897 + organization: *898 ref: type: string - repository: *895 + repository: *899 sender: *4 workflow: type: string @@ -257505,10 +257688,10 @@ x-webhooks: type: string enum: - completed - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 workflow_job: allOf: @@ -257824,10 +258007,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 workflow_job: allOf: @@ -258166,10 +258349,10 @@ x-webhooks: type: string enum: - queued - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 workflow_job: type: object @@ -258383,10 +258566,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 workflow_job: type: object @@ -258602,12 +258785,12 @@ x-webhooks: type: string enum: - completed - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - workflow: *911 + workflow: *915 workflow_run: title: Workflow Run type: object @@ -259606,12 +259789,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - workflow: *911 + workflow: *915 workflow_run: title: Workflow Run type: object @@ -260595,12 +260778,12 @@ x-webhooks: type: string enum: - requested - enterprise: *892 - installation: *893 - organization: *894 - repository: *895 + enterprise: *896 + installation: *897 + organization: *898 + repository: *899 sender: *4 - workflow: *911 + workflow: *915 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index 4d0ed047f1..c7630fb96b 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -62511,7 +62511,7 @@ }, "post": { "summary": "Create an autofix for a code scanning alert", - "description": "Creates an autofix for a code scanning alert.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", + "description": "Creates an autofix for a code scanning alert from the repository's default branch.\n\nIf a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response.\n\nIf an autofix already exists for a given alert, then this endpoint will return a 200 OK response.\n\nOAuth app tokens and personal access tokens (classic) need the `security_events` scope to use this endpoint with private or public repositories, or the `public_repo` scope to use this endpoint with only public repositories.", "tags": [ "code-scanning" ], @@ -76013,7 +76013,15 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/issue" + "allOf": [ + { + "$ref": "#/components/schemas/issue" + }, + { + "type": "object", + "properties": {} + } + ] }, "examples": { "default": { @@ -144051,6 +144059,11 @@ "format": "int64", "example": 1 }, + "issue_field_name": { + "description": "The human-readable name of the issue field.", + "type": "string", + "example": "Priority" + }, "node_id": { "type": "string", "example": "IFT_GDKND" @@ -164979,6 +164992,41 @@ "to" ] }, + "issue-type-webhook": { + "title": "Issue Type", + "description": "The type of issue.", + "type": "object", + "nullable": true, + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "color": { + "type": "string", + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple" + ], + "nullable": true + } + }, + "required": [ + "id", + "name" + ] + }, "issue-event": { "title": "Issue Event", "description": "Issue Event", @@ -165053,6 +165101,12 @@ "rename": { "$ref": "#/components/schemas/issue-event-rename" }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, "author_association": { "$ref": "#/components/schemas/author-association" }, @@ -166046,6 +166100,163 @@ "performed_via_github_app" ] }, + "issue-type-added-issue-event": { + "title": "Issue Type Added Issue Event", + "description": "Issue Type Added Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-removed-issue-event": { + "title": "Issue Type Removed Issue Event", + "description": "Issue Type Removed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, + "issue-type-changed-issue-event": { + "title": "Issue Type Changed Issue Event", + "description": "Issue Type Changed Issue Event", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "url": { + "type": "string" + }, + "actor": { + "$ref": "#/components/schemas/simple-user" + }, + "event": { + "type": "string" + }, + "commit_id": { + "type": "string", + "nullable": true + }, + "commit_url": { + "type": "string", + "nullable": true + }, + "created_at": { + "type": "string" + }, + "performed_via_github_app": { + "$ref": "#/components/schemas/nullable-integration" + }, + "issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + }, + "prev_issue_type": { + "$ref": "#/components/schemas/issue-type-webhook" + } + }, + "required": [ + "issue_type", + "prev_issue_type", + "id", + "node_id", + "url", + "actor", + "event", + "commit_id", + "commit_url", + "created_at", + "performed_via_github_app" + ] + }, "issue-event-for-issue": { "title": "Issue Event for Issue", "description": "Issue Event for Issue", @@ -166094,6 +166305,15 @@ }, { "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -166988,6 +167208,15 @@ }, { "$ref": "#/components/schemas/state-change-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-added-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-removed-issue-event" + }, + { + "$ref": "#/components/schemas/issue-type-changed-issue-event" } ] }, @@ -343841,12 +344070,14 @@ "value": [ { "issue_field_id": 1, + "issue_field_name": "DRI", "node_id": "IFT_GDKND", "data_type": "text", "value": "DRI" }, { "issue_field_id": 2, + "issue_field_name": "Priority", "node_id": "IFSS_SADMS", "data_type": "single_select", "value": 1, @@ -343858,18 +344089,21 @@ }, { "issue_field_id": 3, + "issue_field_name": "Points", "node_id": "IFN_POINTS", "data_type": "number", "value": 42 }, { "issue_field_id": 4, + "issue_field_name": "Due Date", "node_id": "IFD_DUEDATE", "data_type": "date", "value": "2025-12-25" }, { "issue_field_id": 5, + "issue_field_name": "Labels", "node_id": "IFMS_LABELS", "data_type": "multi_select", "value": "Frontend,Backend", diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index a42ad91c7a..c8d5b87f82 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -45678,7 +45678,7 @@ paths: post: summary: Create an autofix for a code scanning alert description: |- - Creates an autofix for a code scanning alert. + Creates an autofix for a code scanning alert from the repository's default branch. If a new autofix is to be created as a result of this request or is currently being generated, then this endpoint will return a 202 Accepted response. @@ -55727,7 +55727,10 @@ paths: content: application/json: schema: - "$ref": "#/components/schemas/issue" + allOf: + - "$ref": "#/components/schemas/issue" + - type: object + properties: {} examples: default: "$ref": "#/components/examples/issue" @@ -105325,6 +105328,10 @@ components: type: integer format: int64 example: 1 + issue_field_name: + description: The human-readable name of the issue field. + type: string + example: Priority node_id: type: string example: IFT_GDKND @@ -121723,6 +121730,34 @@ components: required: - from - to + issue-type-webhook: + title: Issue Type + description: The type of issue. + type: object + nullable: true + properties: + id: + type: integer + description: The unique identifier of the issue type. + name: + type: string + description: The name of the issue type. + color: + type: string + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + nullable: true + required: + - id + - name issue-event: title: Issue Event description: Issue Event @@ -121778,6 +121813,10 @@ components: "$ref": "#/components/schemas/issue-event-project-card" rename: "$ref": "#/components/schemas/issue-event-rename" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" author_association: "$ref": "#/components/schemas/author-association" lock_reason: @@ -122508,6 +122547,123 @@ components: - commit_url - created_at - performed_via_github_app + issue-type-added-issue-event: + title: Issue Type Added Issue Event + description: Issue Type Added Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-removed-issue-event: + title: Issue Type Removed Issue Event + description: Issue Type Removed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app + issue-type-changed-issue-event: + title: Issue Type Changed Issue Event + description: Issue Type Changed Issue Event + type: object + properties: + id: + type: integer + node_id: + type: string + url: + type: string + actor: + "$ref": "#/components/schemas/simple-user" + event: + type: string + commit_id: + type: string + nullable: true + commit_url: + type: string + nullable: true + created_at: + type: string + performed_via_github_app: + "$ref": "#/components/schemas/nullable-integration" + issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + prev_issue_type: + "$ref": "#/components/schemas/issue-type-webhook" + required: + - issue_type + - prev_issue_type + - id + - node_id + - url + - actor + - event + - commit_id + - commit_url + - created_at + - performed_via_github_app issue-event-for-issue: title: Issue Event for Issue description: Issue Event for Issue @@ -122527,6 +122683,9 @@ components: - "$ref": "#/components/schemas/moved-column-in-project-issue-event" - "$ref": "#/components/schemas/removed-from-project-issue-event" - "$ref": "#/components/schemas/converted-note-to-issue-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" timeline-comment-event: title: Timeline Comment Event description: Timeline Comment Event @@ -123181,6 +123340,9 @@ components: - "$ref": "#/components/schemas/timeline-assigned-issue-event" - "$ref": "#/components/schemas/timeline-unassigned-issue-event" - "$ref": "#/components/schemas/state-change-issue-event" + - "$ref": "#/components/schemas/issue-type-added-issue-event" + - "$ref": "#/components/schemas/issue-type-removed-issue-event" + - "$ref": "#/components/schemas/issue-type-changed-issue-event" deploy-key: title: Deploy Key description: An SSH key granting access to a single repository. @@ -258950,10 +259112,12 @@ components: issue-field-value-items: value: - issue_field_id: 1 + issue_field_name: DRI node_id: IFT_GDKND data_type: text value: DRI - issue_field_id: 2 + issue_field_name: Priority node_id: IFSS_SADMS data_type: single_select value: 1 @@ -258962,14 +259126,17 @@ components: name: High color: red - issue_field_id: 3 + issue_field_name: Points node_id: IFN_POINTS{"code":"deadline_exceeded","msg":"operation timed out"}