diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 1d752c43e..613c98b6e 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -3212,12 +3212,6 @@ { "$ref": "#/components/parameters/pagination-after" }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" - }, { "$ref": "#/components/parameters/per-page" } @@ -7306,7 +7300,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -12816,6 +12810,77 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/pagination-before" + }, + { + "$ref": "#/components/parameters/pagination-after" + }, + { + "$ref": "#/components/parameters/org" + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/list-attestation-repositories" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -16474,12 +16539,6 @@ { "$ref": "#/components/parameters/pagination-after" }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" - }, { "$ref": "#/components/parameters/per-page" } @@ -23109,7 +23168,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -23117,10 +23176,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -44473,16 +44529,6 @@ { "$ref": "#/components/parameters/direction" }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -44498,12 +44544,6 @@ }, { "$ref": "#/components/parameters/pagination-after" - }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" } ], "responses": { @@ -75284,7 +75324,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -75292,10 +75332,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -76022,7 +76059,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -112449,6 +112486,15 @@ "closed" ] }, + "campaign-alert-type": { + "title": "Campaign alert type", + "description": "Indicates the alert type of a campaign", + "type": "string", + "enum": [ + "code_scanning", + "secret_scanning" + ] + }, "team-simple": { "title": "Team Simple", "description": "Groups of organization members that gives permissions on specified repositories.", @@ -291971,6 +292017,18 @@ ] } }, + "list-attestation-repositories": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + }, "list-attestations": { "value": { "attestations": [ @@ -318019,29 +318077,6 @@ "default": "created" } }, - "pagination-first": { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - "pagination-last": { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, "secret-scanning-alert-state": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 5a3328d6f..96ccc77c0 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -2302,8 +2302,6 @@ paths: - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" - "$ref": "#/components/parameters/per-page" responses: '200': @@ -5139,9 +5137,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -9221,6 +9220,53 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/orgs#list-attestation-repositories + parameters: + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/pagination-before" + - "$ref": "#/components/parameters/pagination-after" + - "$ref": "#/components/parameters/org" + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + "$ref": "#/components/examples/list-attestation-repositories" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -11974,8 +12020,6 @@ paths: - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" - "$ref": "#/components/parameters/per-page" responses: '200': @@ -16692,8 +16736,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -16701,8 +16747,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - "$ref": "#/components/parameters/per-page" @@ -32333,14 +32377,6 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -32351,8 +32387,6 @@ paths: default: 30 - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" responses: '200': description: Response @@ -54458,8 +54492,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -54467,8 +54503,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -54950,7 +54984,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -81357,6 +81394,13 @@ components: enum: - open - closed + campaign-alert-type: + title: Campaign alert type + description: Indicates the alert type of a campaign + type: string + enum: + - code_scanning + - secret_scanning team-simple: title: Team Simple description: Groups of organization members that gives permissions on specified @@ -215296,6 +215340,12 @@ components: signatures: - sig: MEQCIEGIGAm7gZVLLpsrPcjndEjiuctE2/c9+j9KGvazz3rlAiAd6O16T5hkzRM3IbRPzm+xT40mNQZxefd7laDP6x2XLQ== repository_id: 1 + list-attestation-repositories: + value: + - id: 123 + name: foo + - id: 456 + name: bar list-attestations: value: attestations: @@ -237798,31 +237848,6 @@ components: - updated - epss_percentage default: created - pagination-first: - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - pagination-last: - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 secret-scanning-alert-state: name: state in: query diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 1d752c43e..613c98b6e 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -3212,12 +3212,6 @@ { "$ref": "#/components/parameters/pagination-after" }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" - }, { "$ref": "#/components/parameters/per-page" } @@ -7306,7 +7300,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -12816,6 +12810,77 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/pagination-before" + }, + { + "$ref": "#/components/parameters/pagination-after" + }, + { + "$ref": "#/components/parameters/org" + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/list-attestation-repositories" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -16474,12 +16539,6 @@ { "$ref": "#/components/parameters/pagination-after" }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" - }, { "$ref": "#/components/parameters/per-page" } @@ -23109,7 +23168,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -23117,10 +23176,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -44473,16 +44529,6 @@ { "$ref": "#/components/parameters/direction" }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -44498,12 +44544,6 @@ }, { "$ref": "#/components/parameters/pagination-after" - }, - { - "$ref": "#/components/parameters/pagination-first" - }, - { - "$ref": "#/components/parameters/pagination-last" } ], "responses": { @@ -75284,7 +75324,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -75292,10 +75332,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -76022,7 +76059,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -112449,6 +112486,15 @@ "closed" ] }, + "campaign-alert-type": { + "title": "Campaign alert type", + "description": "Indicates the alert type of a campaign", + "type": "string", + "enum": [ + "code_scanning", + "secret_scanning" + ] + }, "team-simple": { "title": "Team Simple", "description": "Groups of organization members that gives permissions on specified repositories.", @@ -291971,6 +292017,18 @@ ] } }, + "list-attestation-repositories": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + }, "list-attestations": { "value": { "attestations": [ @@ -318019,29 +318077,6 @@ "default": "created" } }, - "pagination-first": { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - "pagination-last": { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, "secret-scanning-alert-state": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 5a3328d6f..96ccc77c0 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -2302,8 +2302,6 @@ paths: - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" - "$ref": "#/components/parameters/per-page" responses: '200': @@ -5139,9 +5137,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -9221,6 +9220,53 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/orgs#list-attestation-repositories + parameters: + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/pagination-before" + - "$ref": "#/components/parameters/pagination-after" + - "$ref": "#/components/parameters/org" + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + "$ref": "#/components/examples/list-attestation-repositories" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -11974,8 +12020,6 @@ paths: - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" - "$ref": "#/components/parameters/per-page" responses: '200': @@ -16692,8 +16736,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -16701,8 +16747,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - "$ref": "#/components/parameters/per-page" @@ -32333,14 +32377,6 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-scope" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -32351,8 +32387,6 @@ paths: default: 30 - "$ref": "#/components/parameters/pagination-before" - "$ref": "#/components/parameters/pagination-after" - - "$ref": "#/components/parameters/pagination-first" - - "$ref": "#/components/parameters/pagination-last" responses: '200': description: Response @@ -54458,8 +54492,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -54467,8 +54503,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -54950,7 +54984,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -81357,6 +81394,13 @@ components: enum: - open - closed + campaign-alert-type: + title: Campaign alert type + description: Indicates the alert type of a campaign + type: string + enum: + - code_scanning + - secret_scanning team-simple: title: Team Simple description: Groups of organization members that gives permissions on specified @@ -215296,6 +215340,12 @@ components: signatures: - sig: MEQCIEGIGAm7gZVLLpsrPcjndEjiuctE2/c9+j9KGvazz3rlAiAd6O16T5hkzRM3IbRPzm+xT40mNQZxefd7laDP6x2XLQ== repository_id: 1 + list-attestation-repositories: + value: + - id: 123 + name: foo + - id: 456 + name: bar list-attestations: value: attestations: @@ -237798,31 +237848,6 @@ components: - updated - epss_percentage default: created - pagination-first: - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - pagination-last: - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 secret-scanning-alert-state: name: state in: query diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 4fd58eb26..529b59fb2 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -22616,29 +22616,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -76364,7 +76341,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -97158,6 +97135,110 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "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 results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "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 results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -115170,29 +115251,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -171836,7 +171894,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -171844,10 +171902,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -353327,16 +353382,6 @@ "default": "desc" } }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -353364,29 +353409,6 @@ "schema": { "type": "string" } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { @@ -739040,7 +739062,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -739048,10 +739070,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -776666,7 +776685,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 0aad05175..a17d0e4af 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &292 + type: &290 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &605 + - &603 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1656,7 +1656,7 @@ paths: schema: type: integer default: 30 - - &177 + - &175 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1672,7 +1672,7 @@ paths: application/json: schema: type: array - items: &178 + items: &176 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1768,7 +1768,7 @@ paths: - installation_id - repository_id examples: - default: &179 + default: &177 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1903,7 +1903,7 @@ paths: description: Response content: application/json: - schema: &180 + schema: &178 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2038,7 +2038,7 @@ paths: - request - response examples: - default: &181 + default: &179 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8959,7 +8959,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &458 + - &456 name: has in: query description: |- @@ -9001,31 +9001,6 @@ paths: - *46 - *38 - *39 - - &169 - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - - &170 - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - *17 responses: '200': @@ -9034,7 +9009,7 @@ paths: application/json: schema: type: array - items: &171 + items: &169 type: object description: A Dependabot alert. properties: @@ -9104,7 +9079,7 @@ paths: - direct - transitive - - security_advisory: &459 + security_advisory: &457 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9372,7 +9347,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &460 + auto_dismissed_at: &458 type: - string - 'null' @@ -9399,7 +9374,7 @@ paths: - repository additionalProperties: false examples: - default: &172 + default: &170 value: - number: 2 state: dismissed @@ -9746,7 +9721,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *40 - - &280 + - &278 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9757,7 +9732,7 @@ paths: enum: - open - resolved - - &281 + - &279 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9767,7 +9742,7 @@ paths: required: false schema: type: string - - &282 + - &280 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9776,7 +9751,7 @@ paths: required: false schema: type: string - - &283 + - &281 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. @@ -9792,7 +9767,7 @@ paths: - *17 - *38 - *39 - - &284 + - &282 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9801,7 +9776,7 @@ paths: required: false schema: type: string - - &285 + - &283 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9810,7 +9785,7 @@ paths: schema: type: boolean default: false - - &286 + - &284 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9819,7 +9794,7 @@ paths: schema: type: boolean default: false - - &287 + - &285 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -9835,7 +9810,7 @@ paths: application/json: schema: type: array - items: &288 + items: &286 type: object properties: number: *52 @@ -9851,14 +9826,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &583 + state: &581 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: &584 + resolution: &582 type: - string - 'null' @@ -9965,14 +9940,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &585 + - &583 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &587 + - &585 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -10029,7 +10004,7 @@ paths: - blob_url - commit_sha - commit_url - - &588 + - &586 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. @@ -10090,7 +10065,7 @@ paths: - page_url - commit_sha - commit_url - - &589 + - &587 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -10105,7 +10080,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &590 + - &588 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -10120,7 +10095,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &591 + - &589 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -10135,7 +10110,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &592 + - &590 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -10150,7 +10125,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &593 + - &591 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -10165,7 +10140,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &594 + - &592 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -10180,7 +10155,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &595 + - &593 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. @@ -10195,7 +10170,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &596 + - &594 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. @@ -10210,7 +10185,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &597 + - &595 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. @@ -10225,7 +10200,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &598 + - &596 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. @@ -10240,7 +10215,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &599 + - &597 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 @@ -10265,7 +10240,7 @@ paths: - type: 'null' - *4 examples: - default: &289 + default: &287 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -11145,7 +11120,7 @@ paths: properties: action: type: string - discussion: &699 + discussion: &697 title: Discussion description: A Discussion in a repository. type: object @@ -11648,7 +11623,7 @@ paths: milestone: anyOf: - type: 'null' - - &238 + - &236 title: Milestone description: A collection of related issues and pull requests. @@ -11820,7 +11795,7 @@ paths: timeline_url: type: string format: uri - type: &199 + type: &197 title: Issue Type description: The type of issue. type: @@ -11931,7 +11906,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &617 + sub_issues_summary: &615 title: Sub-issues Summary type: object properties: @@ -11952,7 +11927,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &618 + issue_dependencies_summary: &616 title: Issue Dependencies Summary type: object properties: @@ -11971,7 +11946,7 @@ paths: - total_blocking issue_field_values: type: array - items: &619 + items: &617 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12084,7 +12059,7 @@ paths: action: type: string issue: *68 - comment: &506 + comment: &504 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12807,7 +12782,7 @@ paths: type: string release: allOf: - - &558 + - &556 title: Release description: A release. type: object @@ -12889,7 +12864,7 @@ paths: author: *4 assets: type: array - items: &559 + items: &557 title: Release Asset description: Data related to a release. type: object @@ -13480,7 +13455,7 @@ paths: url: type: string format: uri - user: &631 + user: &629 title: Public User description: Public User type: object @@ -15375,7 +15350,7 @@ paths: - closed - all default: open - - &202 + - &200 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15426,7 +15401,7 @@ paths: type: array items: *68 examples: - default: &203 + default: &201 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16838,14 +16813,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &314 + - &312 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &315 + - &313 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16907,7 +16882,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &323 + '301': &321 description: Moved permanently content: application/json: @@ -16929,7 +16904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &534 + - &532 name: all description: If `true`, show notifications marked as read. in: query @@ -16937,7 +16912,7 @@ paths: schema: type: boolean default: false - - &535 + - &533 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16947,7 +16922,7 @@ paths: type: boolean default: false - *75 - - &536 + - &534 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: @@ -17318,7 +17293,7 @@ paths: type: boolean examples: - false - security_and_analysis: &250 + security_and_analysis: &248 type: - object - 'null' @@ -17483,7 +17458,7 @@ paths: - url - subscription_url examples: - default: &537 + default: &535 value: - id: '1' repository: @@ -18104,7 +18079,7 @@ paths: - avatar_url - description examples: - default: &647 + default: &645 value: - login: github id: 1 @@ -18404,9 +18379,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -18424,7 +18400,7 @@ paths: required: false schema: type: integer - - &673 + - &671 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18448,14 +18424,14 @@ paths: required: false schema: type: string - - &674 + - &672 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &675 + - &673 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18594,7 +18570,7 @@ paths: parameters: - *99 - *101 - - &678 + - &676 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 @@ -18604,7 +18580,7 @@ paths: schema: type: integer - *102 - - &679 + - &677 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -19556,7 +19532,7 @@ paths: type: integer repository_cache_usages: type: array - items: &328 + items: &326 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20453,7 +20429,7 @@ paths: - all - local_only - selected - selected_actions_url: &334 + selected_actions_url: &332 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -20536,7 +20512,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &336 type: object properties: days: @@ -20578,7 +20554,7 @@ paths: required: true content: application/json: - schema: &339 + schema: &337 type: object properties: days: @@ -20635,7 +20611,7 @@ paths: required: - approval_policy examples: - default: &340 + default: &338 value: approval_policy: first_time_contributors '404': *6 @@ -20694,7 +20670,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &339 type: object required: - run_workflows_from_fork_pull_requests @@ -20748,7 +20724,7 @@ paths: required: true content: application/json: - schema: &342 + schema: &340 type: object required: - run_workflows_from_fork_pull_requests @@ -21383,7 +21359,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &341 type: object properties: default_workflow_permissions: &124 @@ -21434,7 +21410,7 @@ paths: required: false content: application/json: - schema: &344 + schema: &342 type: object properties: default_workflow_permissions: *124 @@ -21927,7 +21903,7 @@ paths: type: array items: *131 examples: - default: &634 + default: &632 value: total_count: 1 repositories: @@ -22574,7 +22550,7 @@ paths: application/json: schema: type: array - items: &345 + items: &343 title: Runner Application description: Runner Application type: object @@ -22599,7 +22575,7 @@ paths: - download_url - filename examples: - default: &346 + default: &344 value: - os: osx architecture: x64 @@ -22685,7 +22661,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &347 + '201': &345 description: Response content: application/json: @@ -22800,7 +22776,7 @@ paths: - token - expires_at examples: - default: &348 + default: &346 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22839,7 +22815,7 @@ paths: application/json: schema: *135 examples: - default: &349 + default: &347 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22873,7 +22849,7 @@ paths: application/json: schema: *133 examples: - default: &350 + default: &348 value: id: 23 name: MBP @@ -23099,7 +23075,7 @@ paths: - *99 - *132 responses: - '200': &351 + '200': &349 description: Response content: application/json: @@ -23156,7 +23132,7 @@ paths: parameters: - *99 - *132 - - &352 + - &350 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23288,7 +23264,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &362 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23323,7 +23299,7 @@ paths: - key_id - key examples: - default: &365 + default: &363 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23736,7 +23712,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *99 - - &333 + - &331 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -24471,12 +24447,12 @@ paths: required: - subject_digests examples: - default: &662 + default: &660 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &663 + withPredicateType: &661 value: subject_digests: - sha256:abc123 @@ -24535,7 +24511,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &664 + default: &662 value: attestations_subject_digests: - sha256:abc: @@ -24728,6 +24704,57 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/orgs#list-attestation-repositories + parameters: + - *17 + - *38 + - *39 + - *99 + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + value: + - id: 123 + name: foo + - id: 456 + name: bar + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -24831,7 +24858,7 @@ paths: initiator: type: string examples: - default: &378 + default: &376 value: attestations: - bundle: @@ -25184,7 +25211,7 @@ paths: parent: anyOf: - type: 'null' - - &214 + - &212 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -25781,7 +25808,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *99 - - &402 + - &400 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -25791,7 +25818,7 @@ paths: schema: &149 type: string description: The name of the tool used to generate the code scanning analysis. - - &403 + - &401 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -25815,7 +25842,7 @@ paths: be returned. in: query required: false - schema: &405 + schema: &403 type: string description: State of a code scanning alert. enum: @@ -25838,7 +25865,7 @@ paths: be returned. in: query required: false - schema: &406 + schema: &404 type: string description: Severity of a code scanning alert. enum: @@ -25864,7 +25891,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &407 + instances_url: &405 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -25886,7 +25913,7 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: &408 + dismissed_reason: &406 type: - string - 'null' @@ -25897,14 +25924,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &409 + dismissed_comment: &407 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &410 + rule: &408 type: object properties: id: @@ -25965,7 +25992,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &411 + tool: &409 type: object properties: name: *149 @@ -25976,15 +26003,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *150 - most_recent_instance: &412 + most_recent_instance: &410 type: object properties: - ref: &404 + ref: &402 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &422 + analysis_key: &420 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -25995,7 +26022,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &423 + category: &421 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -27288,7 +27315,7 @@ paths: type: integer codespaces: type: array - items: &204 + items: &202 type: object title: Codespace description: A codespace. @@ -27323,7 +27350,7 @@ paths: machine: anyOf: - type: 'null' - - &435 + - &433 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -27610,7 +27637,7 @@ paths: - pulls_url - recent_folders examples: - default: &205 + default: &203 value: total_count: 3 codespaces: @@ -28275,7 +28302,7 @@ paths: - updated_at - visibility examples: - default: &436 + default: &434 value: total_count: 2 secrets: @@ -28313,7 +28340,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &435 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -28348,7 +28375,7 @@ paths: - key_id - key examples: - default: &438 + default: &436 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28380,7 +28407,7 @@ paths: application/json: schema: *159 examples: - default: &440 + default: &438 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28847,7 +28874,7 @@ paths: currently being billed. seats: type: array - items: &207 + items: &205 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29378,7 +29405,7 @@ paths: application/json: schema: type: array - items: &296 + items: &294 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -29693,7 +29720,7 @@ paths: - date additionalProperties: true examples: - default: &297 + default: &295 value: - date: '2024-06-24' total_active_users: 24 @@ -29795,7 +29822,7 @@ paths: '500': *100 '403': *27 '404': *6 - '422': &298 + '422': &296 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -29870,8 +29897,6 @@ paths: - *46 - *38 - *39 - - *169 - - *170 - *17 responses: '200': @@ -29880,9 +29905,9 @@ paths: application/json: schema: type: array - items: *171 + items: *169 examples: - default: *172 + default: *170 '304': *35 '400': *14 '403': *27 @@ -29926,7 +29951,7 @@ paths: type: integer secrets: type: array - items: &173 + items: &171 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30005,7 +30030,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &461 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30024,7 +30049,7 @@ paths: - key_id - key examples: - default: &464 + default: &462 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30054,7 +30079,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *171 examples: default: value: @@ -30355,7 +30380,7 @@ paths: application/json: schema: type: array - items: &216 + items: &214 title: Package description: A software package type: object @@ -30426,7 +30451,7 @@ paths: - created_at - updated_at examples: - default: &217 + default: &215 value: - id: 197 name: hello_docker @@ -30596,7 +30621,7 @@ paths: application/json: schema: type: array - items: &196 + items: &194 title: Organization Invitation description: Organization Invitation type: object @@ -30650,7 +30675,7 @@ paths: - invitation_teams_url - node_id examples: - default: &197 + default: &195 value: - id: 1 login: monalisa @@ -30717,7 +30742,7 @@ paths: application/json: schema: type: array - items: &174 + items: &172 title: Org Hook description: Org Hook type: object @@ -30902,9 +30927,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: - default: &175 + default: &173 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -30952,7 +30977,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *99 - - &176 + - &174 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -30965,9 +30990,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: - default: *175 + default: *173 '404': *6 x-github: githubCloudOnly: false @@ -30995,7 +31020,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *99 - - *176 + - *174 requestBody: required: false content: @@ -31041,7 +31066,7 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: default: value: @@ -31083,7 +31108,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *99 - - *176 + - *174 responses: '204': description: Response @@ -31111,7 +31136,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *99 - - *176 + - *174 responses: '200': description: Response @@ -31142,7 +31167,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *99 - - *176 + - *174 requestBody: required: false content: @@ -31193,9 +31218,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *17 - - *177 + - *175 responses: '200': description: Response @@ -31203,9 +31228,9 @@ paths: application/json: schema: type: array - items: *178 + items: *176 examples: - default: *179 + default: *177 '400': *14 '422': *15 x-github: @@ -31231,16 +31256,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *16 responses: '200': description: Response content: application/json: - schema: *180 + schema: *178 examples: - default: *181 + default: *179 '400': *14 '422': *15 x-github: @@ -31266,7 +31291,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *16 responses: '202': *37 @@ -31296,7 +31321,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *99 - - *176 + - *174 responses: '204': description: Response @@ -31319,7 +31344,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *99 - - &186 + - &184 name: actor_type in: path description: The type of the actor @@ -31332,14 +31357,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &187 + - &185 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &182 + - &180 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -31347,7 +31372,7 @@ paths: required: true schema: type: string - - &183 + - &181 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -31442,12 +31467,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *99 - - *182 - - *183 + - *180 + - *181 - *19 - *17 - *46 - - &192 + - &190 name: sort description: The property to sort the results by. in: query @@ -31527,14 +31552,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *99 - - *182 - - *183 + - *180 + - *181 responses: '200': description: Response content: application/json: - schema: &184 + schema: &182 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -31550,7 +31575,7 @@ paths: type: integer format: int64 examples: - default: &185 + default: &183 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -31571,23 +31596,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *99 - - &188 + - &186 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *182 - - *183 + - *180 + - *181 responses: '200': description: Response content: application/json: - schema: *184 + schema: *182 examples: - default: *185 + default: *183 x-github: enabledForGitHubApps: true category: orgs @@ -31606,18 +31631,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *99 - - *182 - - *183 - - *186 - - *187 + - *180 + - *181 + - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *184 + schema: *182 examples: - default: *185 + default: *183 x-github: enabledForGitHubApps: true category: orgs @@ -31635,9 +31660,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *99 - - *182 - - *183 - - &189 + - *180 + - *181 + - &187 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -31650,7 +31675,7 @@ paths: description: Response content: application/json: - schema: &190 + schema: &188 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -31666,7 +31691,7 @@ paths: type: integer format: int64 examples: - default: &191 + default: &189 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -31703,18 +31728,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *99 - - *188 - - *182 - - *183 - - *189 + - *186 + - *180 + - *181 + - *187 responses: '200': description: Response content: application/json: - schema: *190 + schema: *188 examples: - default: *191 + default: *189 x-github: enabledForGitHubApps: true category: orgs @@ -31732,19 +31757,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *99 - - *186 + - *184 + - *185 + - *180 + - *181 - *187 - - *182 - - *183 - - *189 responses: '200': description: Response content: application/json: - schema: *190 + schema: *188 examples: - default: *191 + default: *189 x-github: enabledForGitHubApps: true category: orgs @@ -31762,13 +31787,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *99 - - *188 - - *182 - - *183 + - *186 + - *180 + - *181 - *19 - *17 - *46 - - *192 + - *190 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -31852,7 +31877,7 @@ paths: application/json: schema: *20 examples: - default: &502 + default: &500 value: id: 1 account: @@ -32018,12 +32043,12 @@ paths: application/json: schema: anyOf: - - &194 + - &192 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &193 + limit: &191 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32051,7 +32076,7 @@ paths: properties: {} additionalProperties: false examples: - default: &195 + default: &193 value: limit: collaborators_only origin: organization @@ -32080,13 +32105,13 @@ paths: required: true content: application/json: - schema: &503 + schema: &501 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *193 + limit: *191 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32111,9 +32136,9 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: - default: *195 + default: *193 '422': *15 x-github: githubCloudOnly: false @@ -32189,9 +32214,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 '404': *6 @@ -32268,7 +32293,7 @@ paths: description: Response content: application/json: - schema: *196 + schema: *194 examples: default: value: @@ -32323,7 +32348,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *99 - - &198 + - &196 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32354,7 +32379,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *99 - - *198 + - *196 - *17 - *19 responses: @@ -32366,7 +32391,7 @@ paths: type: array items: *161 examples: - default: &215 + default: &213 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32409,7 +32434,7 @@ paths: application/json: schema: type: array - items: *199 + items: *197 examples: default: value: @@ -32497,9 +32522,9 @@ paths: description: Response content: application/json: - schema: *199 + schema: *197 examples: - default: &200 + default: &198 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -32532,7 +32557,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *99 - - &201 + - &199 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -32588,9 +32613,9 @@ paths: description: Response content: application/json: - schema: *199 + schema: *197 examples: - default: *200 + default: *198 '404': *6 '422': *7 x-github: @@ -32615,7 +32640,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *99 - - *201 + - *199 responses: '204': description: Response @@ -32678,7 +32703,7 @@ paths: - closed - all default: open - - *202 + - *200 - name: type description: Can be the name of an issue type. in: query @@ -32709,7 +32734,7 @@ paths: type: array items: *68 examples: - default: *203 + default: *201 headers: Link: *57 '404': *6 @@ -32868,9 +32893,9 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: - default: *205 + default: *203 '304': *35 '500': *100 '401': *23 @@ -32897,7 +32922,7 @@ paths: parameters: - *99 - *62 - - &206 + - &204 name: codespace_name in: path required: true @@ -32932,15 +32957,15 @@ paths: parameters: - *99 - *62 - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: &434 + default: &432 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -33120,7 +33145,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *207 + schema: *205 examples: default: value: @@ -33196,7 +33221,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &206 title: Org Membership description: Org Membership type: object @@ -33265,7 +33290,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &209 + response-if-user-has-an-active-admin-membership-with-organization: &207 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -33362,9 +33387,9 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: - response-if-user-already-had-membership-with-organization: *209 + response-if-user-already-had-membership-with-organization: *207 '422': *15 '403': *27 x-github: @@ -33436,7 +33461,7 @@ paths: application/json: schema: type: array - items: &210 + items: &208 title: Migration description: A migration. type: object @@ -33774,7 +33799,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -33953,7 +33978,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *99 - - &211 + - &209 name: migration_id description: The unique identifier of the migration. in: path @@ -33981,7 +34006,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -34151,7 +34176,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *99 - - *211 + - *209 responses: '302': description: Response @@ -34173,7 +34198,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *99 - - *211 + - *209 responses: '204': description: Response @@ -34197,8 +34222,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *99 - - *211 - - &646 + - *209 + - &644 name: repo_name description: repo_name parameter in: path @@ -34226,7 +34251,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *99 - - *211 + - *209 - *17 - *19 responses: @@ -34238,7 +34263,7 @@ paths: type: array items: *131 examples: - default: &222 + default: &220 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34391,7 +34416,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &213 + items: &211 title: Organization Role description: Organization roles type: object @@ -34568,7 +34593,7 @@ paths: parameters: - *99 - *64 - - &212 + - &210 name: role_id description: The unique identifier of the role. in: path @@ -34605,7 +34630,7 @@ paths: parameters: - *99 - *64 - - *212 + - *210 responses: '204': description: Response @@ -34658,7 +34683,7 @@ paths: parameters: - *99 - *62 - - *212 + - *210 responses: '204': description: Response @@ -34690,7 +34715,7 @@ paths: parameters: - *99 - *62 - - *212 + - *210 responses: '204': description: Response @@ -34719,13 +34744,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *99 - - *212 + - *210 responses: '200': description: Response content: application/json: - schema: *213 + schema: *211 examples: default: value: @@ -34776,7 +34801,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *99 - - *212 + - *210 - *17 - *19 responses: @@ -34855,7 +34880,7 @@ paths: parent: anyOf: - type: 'null' - - *214 + - *212 type: description: The ownership type of the team type: string @@ -34888,7 +34913,7 @@ paths: - type - parent examples: - default: *215 + default: *213 headers: Link: *57 '404': @@ -34918,7 +34943,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *99 - - *212 + - *210 - *17 - *19 responses: @@ -34947,7 +34972,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *214 + items: *212 name: type: - string @@ -35257,7 +35282,7 @@ paths: - nuget - container - *99 - - &648 + - &646 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35293,12 +35318,12 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *217 + default: *215 '403': *27 '401': *23 - '400': &650 + '400': &648 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -35320,7 +35345,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &218 + - &216 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -35338,7 +35363,7 @@ paths: - docker - nuget - container - - &219 + - &217 name: package_name description: The name of the package. in: path @@ -35351,7 +35376,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *214 examples: default: value: @@ -35403,8 +35428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 responses: '204': @@ -35437,8 +35462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - name: token description: package token @@ -35471,8 +35496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - *19 - *17 @@ -35493,7 +35518,7 @@ paths: application/json: schema: type: array - items: &220 + items: &218 title: Package Version description: A version of a software package type: object @@ -35628,10 +35653,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - &221 + - &219 name: package_version_id description: Unique identifier of the package version. in: path @@ -35643,7 +35668,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -35679,10 +35704,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - *221 + - *219 responses: '204': description: Response @@ -35714,10 +35739,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - *221 + - *219 responses: '204': description: Response @@ -35747,7 +35772,7 @@ paths: - *99 - *17 - *19 - - &223 + - &221 name: sort description: The property by which to sort the results. in: query @@ -35758,7 +35783,7 @@ paths: - created_at default: created_at - *46 - - &224 + - &222 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -35770,7 +35795,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &225 + - &223 name: repository description: The name of the repository to use to filter the results. in: query @@ -35779,7 +35804,7 @@ paths: type: string examples: - Hello-World - - &226 + - &224 name: permission description: The permission to use to filter the results. in: query @@ -35788,7 +35813,7 @@ paths: type: string examples: - issues_read - - &227 + - &225 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35798,7 +35823,7 @@ paths: schema: type: string format: date-time - - &228 + - &226 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35808,7 +35833,7 @@ paths: schema: type: string format: date-time - - &229 + - &227 name: token_id description: The ID of the token in: query @@ -36127,7 +36152,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -36153,14 +36178,14 @@ paths: - *99 - *17 - *19 - - *223 + - *221 - *46 + - *222 + - *223 - *224 - *225 - *226 - *227 - - *228 - - *229 responses: '500': *100 '422': *15 @@ -36444,7 +36469,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -36486,7 +36511,7 @@ paths: type: integer configurations: type: array - items: &230 + items: &228 title: Organization private registry description: Private registry configuration for an organization type: object @@ -36745,7 +36770,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &231 + org-private-registry-with-selected-visibility: &229 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -36843,9 +36868,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *230 + schema: *228 examples: - default: *231 + default: *229 '404': *6 x-github: githubCloudOnly: false @@ -37010,7 +37035,7 @@ paths: application/json: schema: type: array - items: &232 + items: &230 title: Project description: Projects are a way to organize columns and cards of work. @@ -37192,7 +37217,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: default: value: @@ -37230,7 +37255,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &320 + '410': &318 description: Gone content: application/json: @@ -37273,7 +37298,7 @@ paths: application/json: schema: type: array - items: &233 + items: &231 title: Projects v2 Project description: A projects v2 project type: object @@ -37347,7 +37372,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &727 + - &725 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -37432,7 +37457,7 @@ paths: - deleted_at - deleted_by examples: - default: &234 + default: &232 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -37535,7 +37560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &235 + - &233 name: project_number description: The project's number. in: path @@ -37548,9 +37573,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -37572,7 +37597,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *235 + - *233 - *99 - *17 - *38 @@ -37584,7 +37609,7 @@ paths: application/json: schema: type: array - items: &236 + items: &234 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -37734,7 +37759,7 @@ paths: - updated_at - project_url examples: - default: &237 + default: &235 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37777,8 +37802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *235 - - &667 + - *233 + - &665 name: field_id description: The unique identifier of the field. in: path @@ -37791,9 +37816,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -37816,7 +37841,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *235 + - *233 - *99 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -37826,8 +37851,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -37835,8 +37862,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - *38 - *39 - *17 @@ -37847,7 +37872,7 @@ paths: application/json: schema: type: array - items: &242 + items: &240 title: Projects v2 Item description: An item belonging to a project type: object @@ -37864,7 +37889,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &240 + content_type: &238 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -37921,7 +37946,7 @@ paths: - updated_at - archived_at examples: - default: &243 + default: &241 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -38616,7 +38641,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *99 - - *235 + - *233 requestBody: required: true description: Details of the item to add to the project. @@ -38653,7 +38678,7 @@ paths: description: Response content: application/json: - schema: &668 + schema: &666 title: Projects v2 Item description: An item belonging to a project type: object @@ -38667,7 +38692,7 @@ paths: content: oneOf: - *68 - - &447 + - &445 title: Pull Request Simple description: Pull Request Simple type: object @@ -38787,7 +38812,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 active_lock_reason: type: - string @@ -38886,7 +38911,7 @@ paths: _links: type: object properties: - comments: &239 + comments: &237 title: Link description: Hypermedia Link type: object @@ -38895,13 +38920,13 @@ paths: type: string required: - href - commits: *239 - statuses: *239 - html: *239 - issue: *239 - review_comments: *239 - review_comment: *239 - self: *239 + commits: *237 + statuses: *237 + html: *237 + issue: *237 + review_comments: *237 + review_comment: *237 + self: *237 required: - comments - commits @@ -38912,7 +38937,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: &544 + auto_merge: &542 title: Auto merge description: The status of auto merging a pull request. type: @@ -39014,7 +39039,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *240 + content_type: *238 creator: *4 created_at: type: string @@ -39051,7 +39076,7 @@ paths: - updated_at - archived_at examples: - issue: &241 + issue: &239 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39106,7 +39131,7 @@ paths: archived_at: project_url: https://api.github.com/users/octocat/projectsV2/1 item_url: https://api.github.com/users/octocat/projectsV2/items/17 - pull_request: *241 + pull_request: *239 '304': *35 '403': *27 '401': *23 @@ -39126,9 +39151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *235 + - *233 - *99 - - &244 + - &242 name: item_id description: The unique identifier of the project item. in: path @@ -39152,9 +39177,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -39175,9 +39200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *235 + - *233 - *99 - - *244 + - *242 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -39250,13 +39275,13 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - text_field: *243 - number_field: *243 - date_field: *243 - single_select_field: *243 - iteration_field: *243 + text_field: *241 + number_field: *241 + date_field: *241 + single_select_field: *241 + iteration_field: *241 '401': *23 '403': *27 '404': *6 @@ -39276,9 +39301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *235 + - *233 - *99 - - *244 + - *242 responses: '204': description: Response @@ -39310,7 +39335,7 @@ paths: application/json: schema: type: array - items: &245 + items: &243 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -39386,7 +39411,7 @@ paths: - property_name - value_type examples: - default: &246 + default: &244 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -39445,7 +39470,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *245 + items: *243 minItems: 1 maxItems: 100 required: @@ -39475,9 +39500,9 @@ paths: application/json: schema: type: array - items: *245 + items: *243 examples: - default: *246 + default: *244 '403': *27 '404': *6 x-github: @@ -39499,7 +39524,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *99 - - &247 + - &245 name: custom_property_name description: The custom property name in: path @@ -39511,9 +39536,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *243 examples: - default: &248 + default: &246 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -39548,7 +39573,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *99 - - *247 + - *245 requestBody: required: true content: @@ -39626,9 +39651,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *243 examples: - default: *248 + default: *246 '403': *27 '404': *6 x-github: @@ -39652,7 +39677,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *99 - - *247 + - *245 responses: '204': *156 '403': *27 @@ -39716,7 +39741,7 @@ paths: - octocat/Hello-World properties: type: array - items: &249 + items: &247 title: Custom Property Value description: Custom property name and associated value type: object @@ -39806,7 +39831,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *249 + items: *247 required: - repository_names - properties @@ -39998,7 +40023,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -40201,7 +40226,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &320 title: Full Repository description: Full Repository type: object @@ -40666,7 +40691,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &452 + code_of_conduct: &450 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -40696,7 +40721,7 @@ paths: - key - name - html_url - security_and_analysis: *250 + security_and_analysis: *248 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -40780,7 +40805,7 @@ paths: - network_count - subscribers_count examples: - default: &324 + default: &322 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -41301,7 +41326,7 @@ paths: - *99 - *17 - *19 - - &567 + - &565 name: targets description: | A comma-separated list of rule targets to filter by. @@ -41320,7 +41345,7 @@ paths: application/json: schema: type: array - items: &276 + items: &274 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -41355,7 +41380,7 @@ paths: source: type: string description: The name of the source - enforcement: &253 + enforcement: &251 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -41368,7 +41393,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &254 + items: &252 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -41439,7 +41464,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &251 + - &249 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -41463,7 +41488,7 @@ paths: match. items: type: string - - &255 + - &253 title: Organization ruleset conditions type: object description: |- @@ -41477,7 +41502,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -41511,7 +41536,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -41533,7 +41558,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -41546,7 +41571,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &252 + items: &250 title: Repository ruleset property targeting definition type: object @@ -41579,7 +41604,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *252 + items: *250 required: - repository_property type: @@ -41587,12 +41612,12 @@ paths: - object rules: type: array - items: &568 + items: &566 title: Repository Rule type: object description: A repository rule. oneOf: - - &256 + - &254 title: creation description: Only allow users with bypass permission to create matching refs. @@ -41604,7 +41629,7 @@ paths: type: string enum: - creation - - &257 + - &255 title: update description: Only allow users with bypass permission to update matching refs. @@ -41625,7 +41650,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &258 + - &256 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -41637,7 +41662,7 @@ paths: type: string enum: - deletion - - &259 + - &257 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -41649,7 +41674,7 @@ paths: type: string enum: - required_linear_history - - &565 + - &563 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -41727,7 +41752,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &260 + - &258 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -41751,7 +41776,7 @@ paths: type: string required: - required_deployment_environments - - &261 + - &259 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -41763,7 +41788,7 @@ paths: type: string enum: - required_signatures - - &262 + - &260 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -41825,7 +41850,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &263 + - &261 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -41873,7 +41898,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &264 + - &262 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -41885,7 +41910,7 @@ paths: type: string enum: - non_fast_forward - - &265 + - &263 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -41921,7 +41946,7 @@ paths: required: - operator - pattern - - &266 + - &264 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -41957,7 +41982,7 @@ paths: required: - operator - pattern - - &267 + - &265 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -41993,7 +42018,7 @@ paths: required: - operator - pattern - - &268 + - &266 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -42029,7 +42054,7 @@ paths: required: - operator - pattern - - &269 + - &267 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -42065,7 +42090,7 @@ paths: required: - operator - pattern - - &270 + - &268 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -42090,7 +42115,7 @@ paths: type: string required: - restricted_file_paths - - &271 + - &269 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -42114,7 +42139,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &272 + - &270 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -42137,7 +42162,7 @@ paths: type: string required: - restricted_file_extensions - - &273 + - &271 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -42162,7 +42187,7 @@ paths: maximum: 100 required: - max_file_size - - &274 + - &272 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -42212,7 +42237,7 @@ paths: - repository_id required: - workflows - - &275 + - &273 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -42273,7 +42298,7 @@ paths: - tool required: - code_scanning_tools - - &566 + - &564 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -42371,20 +42396,22 @@ paths: - push - repository default: branch - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *255 + items: *252 + conditions: *253 rules: type: array description: An array of rules within the ruleset. - items: &278 + items: &276 title: Repository Rule type: object description: A repository rule. oneOf: + - *254 + - *255 - *256 - *257 - *258 @@ -42403,8 +42430,6 @@ paths: - *271 - *272 - *273 - - *274 - - *275 required: - name - enforcement @@ -42442,9 +42467,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: &277 + default: &275 value: id: 21 name: super cool ruleset @@ -42499,7 +42524,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *99 - - &569 + - &567 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 @@ -42514,7 +42539,7 @@ paths: in: query schema: type: string - - &570 + - &568 name: time_period description: |- The time period to filter by. @@ -42530,14 +42555,14 @@ paths: - week - month default: day - - &571 + - &569 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 - - &572 + - &570 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -42557,7 +42582,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &571 title: Rule Suites description: Response type: array @@ -42613,7 +42638,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &574 + default: &572 value: - id: 21 actor_id: 12 @@ -42657,7 +42682,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *99 - - &575 + - &573 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42673,7 +42698,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &574 title: Rule Suite description: Response type: object @@ -42780,7 +42805,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &577 + default: &575 value: id: 21 actor_id: 12 @@ -42853,9 +42878,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *277 + default: *275 '404': *6 '500': *100 put: @@ -42899,16 +42924,16 @@ paths: - tag - push - repository - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *255 + items: *252 + conditions: *253 rules: description: An array of rules within the ruleset. type: array - items: *278 + items: *276 examples: default: value: @@ -42943,9 +42968,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *277 + default: *275 '404': *6 '500': *100 delete: @@ -43002,7 +43027,7 @@ paths: application/json: schema: type: array - items: &279 + items: &277 title: Ruleset version type: object description: The historical version of a ruleset @@ -43026,7 +43051,7 @@ paths: type: string format: date-time examples: - default: &579 + default: &577 value: - version_id: 3 actor: @@ -43079,9 +43104,9 @@ paths: description: Response content: application/json: - schema: &580 + schema: &578 allOf: - - *279 + - *277 - type: object required: - state @@ -43151,14 +43176,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *99 + - *278 + - *279 - *280 - *281 - - *282 - - *283 - *46 - *19 - *17 - - &581 + - &579 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 @@ -43168,7 +43193,7 @@ paths: required: false schema: type: string - - &582 + - &580 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 @@ -43178,10 +43203,10 @@ paths: required: false schema: type: string + - *282 + - *283 - *284 - *285 - - *286 - - *287 responses: '200': description: Response @@ -43189,9 +43214,9 @@ paths: application/json: schema: type: array - items: *288 + items: *286 examples: - default: *289 + default: *287 headers: Link: *57 '404': *6 @@ -43232,7 +43257,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &291 + pattern_config_version: &289 type: - string - 'null' @@ -43242,7 +43267,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &290 + items: &288 type: object properties: token_type: @@ -43311,7 +43336,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *290 + items: *288 examples: default: value: @@ -43368,7 +43393,7 @@ paths: schema: type: object properties: - pattern_config_version: *291 + pattern_config_version: *289 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -43394,7 +43419,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *291 + custom_pattern_version: *289 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -43492,7 +43517,7 @@ paths: application/json: schema: type: array - items: &603 + items: &601 description: A repository security advisory. type: object properties: @@ -43736,7 +43761,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 credits_detailed: type: - array @@ -43747,7 +43772,7 @@ paths: type: object properties: user: *4 - type: *292 + type: *290 state: type: string description: The state of the user's acceptance of the @@ -43811,7 +43836,7 @@ paths: - private_fork additionalProperties: false examples: - default: &604 + default: &602 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -44198,9 +44223,9 @@ paths: application/json: schema: type: array - items: *214 + items: *212 examples: - default: *215 + default: *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44285,7 +44310,7 @@ paths: description: Response content: application/json: - schema: &669 + schema: &667 type: object properties: total_minutes_used: @@ -44355,7 +44380,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &670 + default: &668 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -44391,7 +44416,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &669 type: object properties: total_gigabytes_bandwidth_used: @@ -44409,7 +44434,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &672 + default: &670 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -44441,7 +44466,7 @@ paths: description: Response content: application/json: - schema: &676 + schema: &674 type: object properties: days_left_in_billing_cycle: @@ -44459,7 +44484,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &677 + default: &675 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -44744,7 +44769,7 @@ paths: type: integer network_configurations: type: array - items: &293 + items: &291 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -44869,9 +44894,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: &294 + default: &292 value: id: 123456789ABCDEF name: My network configuration @@ -44900,7 +44925,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *99 - - &295 + - &293 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -44912,9 +44937,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: *294 + default: *292 headers: Link: *57 x-github: @@ -44936,7 +44961,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *99 - - *295 + - *293 requestBody: required: true content: @@ -44975,9 +45000,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: *294 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44997,7 +45022,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *99 - - *295 + - *293 responses: '204': description: Response @@ -45142,13 +45167,13 @@ paths: application/json: schema: type: array - items: *296 + items: *294 examples: - default: *297 + default: *295 '500': *100 '403': *27 '404': *6 - '422': *298 + '422': *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45178,7 +45203,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 headers: Link: *57 '403': *27 @@ -45272,7 +45297,7 @@ paths: description: Response content: application/json: - schema: &299 + schema: &297 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45346,7 +45371,7 @@ paths: parent: anyOf: - type: 'null' - - *214 + - *212 members_count: type: integer examples: @@ -45671,7 +45696,7 @@ paths: - repos_count - organization examples: - default: &300 + default: &298 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45748,9 +45773,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 x-github: githubCloudOnly: false @@ -45835,16 +45860,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '201': description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 '422': *15 '403': *27 @@ -45914,7 +45939,7 @@ paths: application/json: schema: type: array - items: &301 + items: &299 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46025,7 +46050,7 @@ paths: - updated_at - url examples: - default: &621 + default: &619 value: - author: login: octocat @@ -46134,9 +46159,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: &302 + default: &300 value: author: login: octocat @@ -46210,7 +46235,7 @@ paths: parameters: - *99 - *64 - - &303 + - &301 name: discussion_number description: The number that identifies the discussion. in: path @@ -46222,9 +46247,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46248,7 +46273,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: false content: @@ -46271,9 +46296,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: &622 + default: &620 value: author: login: octocat @@ -46345,7 +46370,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 responses: '204': description: Response @@ -46373,7 +46398,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 - *46 - *17 - *19 @@ -46384,7 +46409,7 @@ paths: application/json: schema: type: array - items: &304 + items: &302 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46464,7 +46489,7 @@ paths: - updated_at - url examples: - default: &623 + default: &621 value: - author: login: octocat @@ -46534,7 +46559,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: true content: @@ -46556,9 +46581,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: &305 + default: &303 value: author: login: octocat @@ -46626,8 +46651,8 @@ paths: parameters: - *99 - *64 - - *303 - - &306 + - *301 + - &304 name: comment_number description: The number that identifies the comment. in: path @@ -46639,9 +46664,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46665,8 +46690,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 requestBody: required: true content: @@ -46688,9 +46713,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: &624 + default: &622 value: author: login: octocat @@ -46756,8 +46781,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 responses: '204': description: Response @@ -46785,8 +46810,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -46812,7 +46837,7 @@ paths: application/json: schema: type: array - items: &307 + items: &305 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46856,7 +46881,7 @@ paths: - content - created_at examples: - default: &309 + default: &307 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46908,8 +46933,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 requestBody: required: true content: @@ -46942,9 +46967,9 @@ paths: team discussion comment content: application/json: - schema: *307 + schema: *305 examples: - default: &308 + default: &306 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46973,9 +46998,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47000,9 +47025,9 @@ paths: parameters: - *99 - *64 - - *303 - - *306 - - &310 + - *301 + - *304 + - &308 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47036,7 +47061,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47062,9 +47087,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -47092,7 +47117,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: true content: @@ -47124,16 +47149,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47158,8 +47183,8 @@ paths: parameters: - *99 - *64 - - *303 - - *310 + - *301 + - *308 responses: '204': description: Response @@ -47194,9 +47219,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 x-github: @@ -47280,7 +47305,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &309 title: Team Membership description: Team Membership type: object @@ -47308,7 +47333,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &625 + response-if-user-is-a-team-maintainer: &623 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47371,9 +47396,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-users-membership-with-team-is-now-pending: &626 + response-if-users-membership-with-team-is-now-pending: &624 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47446,7 +47471,7 @@ paths: application/json: schema: type: array - items: &312 + items: &310 title: Team Project description: A team's access to a project. type: object @@ -47515,7 +47540,7 @@ paths: - updated_at - permissions examples: - default: &627 + default: &625 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47580,7 +47605,7 @@ paths: parameters: - *99 - *64 - - &313 + - &311 name: project_id description: The unique identifier of the project. in: path @@ -47592,9 +47617,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: &628 + default: &626 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47658,7 +47683,7 @@ paths: parameters: - *99 - *64 - - *313 + - *311 requestBody: required: false content: @@ -47727,7 +47752,7 @@ paths: parameters: - *99 - *64 - - *313 + - *311 responses: '204': description: Response @@ -47767,7 +47792,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -47798,14 +47823,14 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &629 + schema: &627 title: Team Repository description: A team's access to a repository. type: object @@ -48448,8 +48473,8 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -48496,8 +48521,8 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -48534,7 +48559,7 @@ paths: type: array items: *161 examples: - response-if-child-teams-exist: &630 + response-if-child-teams-exist: &628 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48661,7 +48686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &316 + - &314 name: column_id description: The unique identifier of the column. in: path @@ -48673,7 +48698,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &315 title: Project Column description: Project columns contain cards of work. type: object @@ -48727,7 +48752,7 @@ paths: - created_at - updated_at examples: - default: &318 + default: &316 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48762,7 +48787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *316 + - *314 requestBody: required: true content: @@ -48787,9 +48812,9 @@ paths: description: Response content: application/json: - schema: *317 + schema: *315 examples: - default: *318 + default: *316 '304': *35 '403': *27 '401': *23 @@ -48814,7 +48839,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *316 + - *314 responses: '204': description: Response @@ -48843,7 +48868,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *316 + - *314 requestBody: required: true content: @@ -48904,15 +48929,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#get-a-project parameters: - - *313 + - *311 responses: '200': description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: &319 + default: &317 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48969,7 +48994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#update-a-project parameters: - - *313 + - *311 requestBody: required: false content: @@ -49018,9 +49043,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: *319 + default: *317 '404': description: Not Found if the authenticated user does not have access to the project @@ -49041,7 +49066,7 @@ paths: items: type: string '401': *23 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -49064,7 +49089,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#delete-a-project parameters: - - *313 + - *311 responses: '204': description: Delete Success @@ -49085,7 +49110,7 @@ paths: items: type: string '401': *23 - '410': *320 + '410': *318 '404': *6 x-github: githubCloudOnly: false @@ -49109,7 +49134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *313 + - *311 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -49166,7 +49191,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *313 + - *311 - *62 requestBody: required: false @@ -49221,7 +49246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *313 + - *311 - *62 responses: '204': @@ -49253,7 +49278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *313 + - *311 - *62 responses: '200': @@ -49324,7 +49349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#list-project-columns parameters: - - *313 + - *311 - *17 - *19 responses: @@ -49334,7 +49359,7 @@ paths: application/json: schema: type: array - items: *317 + items: *315 examples: default: value: @@ -49372,7 +49397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#create-a-project-column parameters: - - *313 + - *311 requestBody: required: true content: @@ -49396,7 +49421,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *315 examples: default: value: @@ -49461,7 +49486,7 @@ paths: resources: type: object properties: - core: &321 + core: &319 title: Rate Limit type: object properties: @@ -49478,21 +49503,21 @@ paths: - remaining - reset - used - graphql: *321 - search: *321 - code_search: *321 - source_import: *321 - integration_manifest: *321 - code_scanning_upload: *321 - actions_runner_registration: *321 - scim: *321 - dependency_snapshots: *321 - dependency_sbom: *321 - code_scanning_autofix: *321 + graphql: *319 + search: *319 + code_search: *319 + source_import: *319 + integration_manifest: *319 + code_scanning_upload: *319 + actions_runner_registration: *319 + scim: *319 + dependency_snapshots: *319 + dependency_sbom: *319 + code_scanning_autofix: *319 required: - core - search - rate: *321 + rate: *319 required: - rate - resources @@ -49597,14 +49622,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: default-response: summary: Default response @@ -50105,7 +50130,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *323 + '301': *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50123,8 +50148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -50372,10 +50397,10 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 - '307': &325 + default: *322 + '307': &323 description: Temporary Redirect content: application/json: @@ -50404,8 +50429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -50427,7 +50452,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *325 + '307': *323 '404': *6 '409': *45 x-github: @@ -50451,11 +50476,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - - &356 + - &354 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50478,7 +50503,7 @@ paths: type: integer artifacts: type: array - items: &326 + items: &324 title: Artifact description: An artifact type: object @@ -50573,7 +50598,7 @@ paths: - expires_at - updated_at examples: - default: &357 + default: &355 value: total_count: 2 artifacts: @@ -50634,9 +50659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *314 - - *315 - - &327 + - *312 + - *313 + - &325 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50648,7 +50673,7 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: default: value: @@ -50686,9 +50711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *314 - - *315 - - *327 + - *312 + - *313 + - *325 responses: '204': description: Response @@ -50712,9 +50737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *314 - - *315 - - *327 + - *312 + - *313 + - *325 - name: archive_format in: path required: true @@ -50728,7 +50753,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50751,14 +50776,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *328 + schema: *326 examples: default: value: @@ -50784,11 +50809,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - - &329 + - &327 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50822,7 +50847,7 @@ paths: description: Response content: application/json: - schema: &330 + schema: &328 title: Repository actions caches description: Repository actions caches type: object @@ -50872,7 +50897,7 @@ paths: - total_count - actions_caches examples: - default: &331 + default: &329 value: total_count: 1 actions_caches: @@ -50904,23 +50929,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *314 - - *315 + - *312 + - *313 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *329 + - *327 responses: '200': description: Response content: application/json: - schema: *330 + schema: *328 examples: - default: *331 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50940,8 +50965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *314 - - *315 + - *312 + - *313 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50972,9 +50997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *314 - - *315 - - &332 + - *312 + - *313 + - &330 name: job_id description: The unique identifier of the job. in: path @@ -50986,7 +51011,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &358 title: Job description: Information of a job execution in a workflow run type: object @@ -51333,9 +51358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *314 - - *315 - - *332 + - *312 + - *313 + - *330 responses: '302': description: Response @@ -51363,9 +51388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *314 - - *315 - - *332 + - *312 + - *313 + - *330 requestBody: required: false content: @@ -51411,8 +51436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Status response @@ -51462,8 +51487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -51526,8 +51551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -51545,7 +51570,7 @@ paths: type: integer secrets: type: array - items: &362 + items: &360 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51566,7 +51591,7 @@ paths: - created_at - updated_at examples: - default: &363 + default: &361 value: total_count: 2 secrets: @@ -51599,9 +51624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *314 - - *315 - - *333 + - *312 + - *313 + - *331 - *19 responses: '200': @@ -51618,7 +51643,7 @@ paths: type: integer variables: type: array - items: &366 + items: &364 title: Actions Variable type: object properties: @@ -51652,7 +51677,7 @@ paths: - created_at - updated_at examples: - default: &367 + default: &365 value: total_count: 2 variables: @@ -51685,8 +51710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -51695,11 +51720,11 @@ paths: schema: type: object properties: - enabled: &335 + enabled: &333 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *116 - selected_actions_url: *334 + selected_actions_url: *332 sha_pinning_required: *117 required: - enabled @@ -51728,8 +51753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -51740,7 +51765,7 @@ paths: schema: type: object properties: - enabled: *335 + enabled: *333 allowed_actions: *116 sha_pinning_required: *117 required: @@ -51772,14 +51797,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &336 + schema: &334 type: object properties: access_level: @@ -51796,7 +51821,7 @@ paths: required: - access_level examples: - default: &337 + default: &335 value: access_level: organization x-github: @@ -51820,15 +51845,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *336 + schema: *334 examples: - default: *337 + default: *335 responses: '204': description: Response @@ -51852,14 +51877,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *338 + schema: *336 examples: default: value: @@ -51883,8 +51908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Empty response for successful settings update @@ -51894,7 +51919,7 @@ paths: required: true content: application/json: - schema: *339 + schema: *337 examples: default: summary: Set retention days @@ -51918,8 +51943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -51927,7 +51952,7 @@ paths: application/json: schema: *118 examples: - default: *340 + default: *338 '404': *6 x-github: enabledForGitHubApps: true @@ -51946,8 +51971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -51981,14 +52006,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *341 + schema: *339 examples: default: *119 '403': *27 @@ -52010,13 +52035,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *342 + schema: *340 examples: default: *119 responses: @@ -52042,8 +52067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -52070,8 +52095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -52103,14 +52128,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *343 + schema: *341 examples: default: *126 x-github: @@ -52133,8 +52158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Success response @@ -52145,7 +52170,7 @@ paths: required: true content: application/json: - schema: *344 + schema: *342 examples: default: *126 x-github: @@ -52174,8 +52199,8 @@ paths: in: query schema: type: string - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -52219,8 +52244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -52228,9 +52253,9 @@ paths: application/json: schema: type: array - items: *345 + items: *343 examples: - default: *346 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52252,8 +52277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -52296,7 +52321,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *347 + '201': *345 '404': *6 '422': *7 '409': *45 @@ -52327,8 +52352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -52336,7 +52361,7 @@ paths: application/json: schema: *135 examples: - default: *348 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52364,8 +52389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -52373,7 +52398,7 @@ paths: application/json: schema: *135 examples: - default: *349 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52395,8 +52420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '200': @@ -52405,7 +52430,7 @@ paths: application/json: schema: *133 examples: - default: *350 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52426,8 +52451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '204': @@ -52454,8 +52479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '200': *137 @@ -52480,8 +52505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 requestBody: required: true @@ -52530,8 +52555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 requestBody: required: true @@ -52581,11 +52606,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: - '200': *351 + '200': *349 '404': *6 x-github: githubCloudOnly: false @@ -52612,10 +52637,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 - - *352 + - *350 responses: '200': *137 '404': *6 @@ -52643,9 +52668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *314 - - *315 - - &370 + - *312 + - *313 + - &368 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52653,7 +52678,7 @@ paths: required: false schema: type: string - - &371 + - &369 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52661,7 +52686,7 @@ paths: required: false schema: type: string - - &372 + - &370 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52670,7 +52695,7 @@ paths: required: false schema: type: string - - &373 + - &371 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52697,7 +52722,7 @@ paths: - pending - *17 - *19 - - &374 + - &372 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52706,7 +52731,7 @@ paths: schema: type: string format: date-time - - &353 + - &351 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52715,13 +52740,13 @@ paths: schema: type: boolean default: false - - &375 + - &373 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &376 + - &374 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52744,7 +52769,7 @@ paths: type: integer workflow_runs: type: array - items: &354 + items: &352 title: Workflow Run description: An invocation of a workflow type: object @@ -52922,7 +52947,7 @@ paths: head_commit: anyOf: - type: 'null' - - &398 + - &396 title: Simple Commit description: A commit. type: object @@ -53037,7 +53062,7 @@ paths: - workflow_url - pull_requests examples: - default: &377 + default: &375 value: total_count: 1 workflow_runs: @@ -53273,24 +53298,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *314 - - *315 - - &355 + - *312 + - *313 + - &353 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *353 + - *351 responses: '200': description: Response content: application/json: - schema: *354 + schema: *352 examples: - default: &358 + default: &356 value: id: 30433642 name: Build @@ -53531,9 +53556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '204': description: Response @@ -53556,9 +53581,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -53686,9 +53711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '201': description: Response @@ -53721,12 +53746,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 - *17 - *19 - - *356 + - *354 responses: '200': description: Response @@ -53742,9 +53767,9 @@ paths: type: integer artifacts: type: array - items: *326 + items: *324 examples: - default: *357 + default: *355 headers: Link: *57 x-github: @@ -53768,25 +53793,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *314 - - *315 - - *355 - - &359 + - *312 + - *313 + - *353 + - &357 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *353 + - *351 responses: '200': description: Response content: application/json: - schema: *354 + schema: *352 examples: - default: *358 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53809,10 +53834,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *314 - - *315 - - *355 - - *359 + - *312 + - *313 + - *353 + - *357 - *17 - *19 responses: @@ -53830,9 +53855,9 @@ paths: type: integer jobs: type: array - items: *360 + items: *358 examples: - default: &361 + default: &359 value: total_count: 1 jobs: @@ -53945,10 +53970,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *314 - - *315 - - *355 - - *359 + - *312 + - *313 + - *353 + - *357 responses: '302': description: Response @@ -53976,9 +54001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '202': description: Response @@ -54011,9 +54036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: true content: @@ -54080,9 +54105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '202': description: Response @@ -54115,9 +54140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -54147,9 +54172,9 @@ paths: type: integer jobs: type: array - items: *360 + items: *358 examples: - default: *361 + default: *359 headers: Link: *57 x-github: @@ -54174,9 +54199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '302': description: Response @@ -54203,9 +54228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '204': description: Response @@ -54232,9 +54257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -54303,7 +54328,7 @@ paths: items: type: object properties: - type: &472 + type: &470 type: string description: The type of reviewer. enum: @@ -54389,9 +54414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: true content: @@ -54441,7 +54466,7 @@ paths: application/json: schema: type: array - items: &467 + items: &465 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54553,7 +54578,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &466 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54609,9 +54634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: false content: @@ -54656,9 +54681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: false content: @@ -54712,9 +54737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -54851,8 +54876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -54870,9 +54895,9 @@ paths: type: integer secrets: type: array - items: *362 + items: *360 examples: - default: *363 + default: *361 headers: Link: *57 x-github: @@ -54897,16 +54922,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *364 + schema: *362 examples: - default: *365 + default: *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54928,17 +54953,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: &485 + default: &483 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54964,8 +54989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -55023,8 +55048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -55050,9 +55075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *314 - - *315 - - *333 + - *312 + - *313 + - *331 - *19 responses: '200': @@ -55069,9 +55094,9 @@ paths: type: integer variables: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *57 x-github: @@ -55094,8 +55119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -55147,17 +55172,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: &486 + default: &484 value: name: USERNAME value: octocat @@ -55183,8 +55208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 requestBody: required: true @@ -55227,8 +55252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 responses: '204': @@ -55254,8 +55279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -55273,7 +55298,7 @@ paths: type: integer workflows: type: array - items: &368 + items: &366 title: Workflow description: A GitHub Actions workflow type: object @@ -55391,9 +55416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *314 - - *315 - - &369 + - *312 + - *313 + - &367 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55408,7 +55433,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: default: value: @@ -55441,9 +55466,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55468,9 +55493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55521,9 +55546,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55550,19 +55575,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *314 - - *315 + - *312 + - *313 + - *367 + - *368 - *369 - *370 - *371 - - *372 - - *373 - *17 - *19 + - *372 + - *351 + - *373 - *374 - - *353 - - *375 - - *376 responses: '200': description: Response @@ -55578,9 +55603,9 @@ paths: type: integer workflow_runs: type: array - items: *354 + items: *352 examples: - default: *377 + default: *375 headers: Link: *57 x-github: @@ -55612,9 +55637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '200': description: Response @@ -55675,8 +55700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *314 - - *315 + - *312 + - *313 - *46 - *17 - *38 @@ -55844,8 +55869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -55882,8 +55907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *314 - - *315 + - *312 + - *313 - name: assignee in: path required: true @@ -55919,8 +55944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -56032,8 +56057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *38 - *39 @@ -56089,7 +56114,7 @@ paths: initiator: type: string examples: - default: *378 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56109,8 +56134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -56118,7 +56143,7 @@ paths: application/json: schema: type: array - items: &379 + items: &377 title: Autolink reference description: An autolink reference. type: object @@ -56177,8 +56202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -56217,9 +56242,9 @@ paths: description: response content: application/json: - schema: *379 + schema: *377 examples: - default: &380 + default: &378 value: id: 1 key_prefix: TICKET- @@ -56250,9 +56275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *314 - - *315 - - &381 + - *312 + - *313 + - &379 name: autolink_id description: The unique identifier of the autolink. in: path @@ -56264,9 +56289,9 @@ paths: description: Response content: application/json: - schema: *379 + schema: *377 examples: - default: *380 + default: *378 '404': *6 x-github: githubCloudOnly: false @@ -56286,9 +56311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *314 - - *315 - - *381 + - *312 + - *313 + - *379 responses: '204': description: Response @@ -56312,8 +56337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response if Dependabot is enabled @@ -56363,8 +56388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -56385,8 +56410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -56406,8 +56431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *314 - - *315 + - *312 + - *313 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56445,7 +56470,7 @@ paths: - url protected: type: boolean - protection: &383 + protection: &381 title: Branch Protection description: Branch Protection type: object @@ -56488,7 +56513,7 @@ paths: required: - contexts - checks - enforce_admins: &386 + enforce_admins: &384 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56505,7 +56530,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &388 + required_pull_request_reviews: &386 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56589,7 +56614,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &385 + restrictions: &383 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56882,9 +56907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *314 - - *315 - - &384 + - *312 + - *313 + - &382 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56898,14 +56923,14 @@ paths: description: Response content: application/json: - schema: &394 + schema: &392 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &443 + commit: &441 title: Commit description: Commit type: object @@ -56944,7 +56969,7 @@ paths: author: anyOf: - type: 'null' - - &382 + - &380 title: Git User description: Metaproperties for Git author/committer information. @@ -56965,7 +56990,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 message: type: string examples: @@ -56989,7 +57014,7 @@ paths: required: - sha - url - verification: &492 + verification: &490 title: Verification type: object properties: @@ -57069,7 +57094,7 @@ paths: type: integer files: type: array - items: &454 + items: &452 title: Diff Entry description: Diff Entry type: object @@ -57165,7 +57190,7 @@ paths: - self protected: type: boolean - protection: *383 + protection: *381 protection_url: type: string format: uri @@ -57274,7 +57299,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *323 + '301': *321 '404': *6 x-github: githubCloudOnly: false @@ -57296,15 +57321,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *383 + schema: *381 examples: default: value: @@ -57498,9 +57523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -57760,7 +57785,7 @@ paths: url: type: string format: uri - required_status_checks: &391 + required_status_checks: &389 title: Status Check Policy description: Status Check Policy type: object @@ -57919,7 +57944,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *385 + restrictions: *383 required_conversation_resolution: type: object properties: @@ -58031,9 +58056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58058,17 +58083,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: &387 + default: &385 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -58090,17 +58115,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: *387 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58119,9 +58144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58146,17 +58171,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *388 + schema: *386 examples: - default: &389 + default: &387 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -58252,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58352,9 +58377,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *386 examples: - default: *389 + default: *387 '422': *15 x-github: githubCloudOnly: false @@ -58375,9 +58400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58404,17 +58429,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: &390 + default: &388 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58437,17 +58462,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: *390 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -58467,9 +58492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58494,17 +58519,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *391 + schema: *389 examples: - default: &392 + default: &390 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58530,9 +58555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58584,9 +58609,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *389 examples: - default: *392 + default: *390 '404': *6 '422': *15 x-github: @@ -58608,9 +58633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58634,9 +58659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -58670,9 +58695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58739,9 +58764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58805,9 +58830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: content: application/json: @@ -58873,15 +58898,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *385 + schema: *383 examples: default: value: @@ -58972,9 +58997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58997,9 +59022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59009,7 +59034,7 @@ paths: type: array items: *5 examples: - default: &393 + default: &391 value: - id: 1 slug: octoapp @@ -59066,9 +59091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59102,7 +59127,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59123,9 +59148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59159,7 +59184,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59180,9 +59205,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59216,7 +59241,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59238,9 +59263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59250,7 +59275,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '404': *6 x-github: githubCloudOnly: false @@ -59270,9 +59295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -59310,7 +59335,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59331,9 +59356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -59371,7 +59396,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59392,9 +59417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: content: application/json: @@ -59431,7 +59456,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59453,9 +59478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59489,9 +59514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59549,9 +59574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59609,9 +59634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59671,9 +59696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59695,7 +59720,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *392 examples: default: value: @@ -59811,8 +59836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -60091,7 +60116,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &393 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60227,7 +60252,7 @@ paths: check. type: array items: *72 - deployment: &688 + deployment: &686 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60514,9 +60539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *314 - - *315 - - &396 + - *312 + - *313 + - &394 name: check_run_id description: The unique identifier of the check run. in: path @@ -60528,9 +60553,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: &397 + default: &395 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60630,9 +60655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 requestBody: required: true content: @@ -60872,9 +60897,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: *397 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60894,9 +60919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 - *17 - *19 responses: @@ -61006,9 +61031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 responses: '201': description: Response @@ -61052,8 +61077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -61075,7 +61100,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &399 + schema: &397 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61173,7 +61198,7 @@ paths: - string - 'null' format: date-time - head_commit: *398 + head_commit: *396 latest_check_runs_count: type: integer check_runs_url: @@ -61201,7 +61226,7 @@ paths: - check_runs_url - pull_requests examples: - default: &400 + default: &398 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61492,9 +61517,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *399 + schema: *397 examples: - default: *400 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61513,8 +61538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -61823,9 +61848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *314 - - *315 - - &401 + - *312 + - *313 + - &399 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61837,9 +61862,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *397 examples: - default: *400 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61862,17 +61887,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *314 - - *315 - - *401 - - &449 + - *312 + - *313 + - *399 + - &447 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &450 + - &448 name: status description: Returns check runs with the specified `status`. in: query @@ -61911,9 +61936,9 @@ paths: type: integer check_runs: type: array - items: *395 + items: *393 examples: - default: &451 + default: &449 value: total_count: 1 check_runs: @@ -62015,9 +62040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *314 - - *315 - - *401 + - *312 + - *313 + - *399 responses: '201': description: Response @@ -62050,21 +62075,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *314 - - *315 - - *402 - - *403 + - *312 + - *313 + - *400 + - *401 - *19 - *17 - - &420 + - &418 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *404 - - &421 + schema: *402 + - &419 name: pr description: The number of the pull request for the results you want to list. in: query @@ -62089,13 +62114,13 @@ paths: be returned. in: query required: false - schema: *405 + schema: *403 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *406 + schema: *404 responses: '200': description: Response @@ -62111,7 +62136,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *407 + instances_url: *405 state: *151 fixed_at: *147 dismissed_by: @@ -62119,11 +62144,11 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: *408 - dismissed_comment: *409 - rule: *410 - tool: *411 - most_recent_instance: *412 + dismissed_reason: *406 + dismissed_comment: *407 + rule: *408 + tool: *409 + most_recent_instance: *410 dismissal_approved_by: anyOf: - type: 'null' @@ -62246,7 +62271,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &413 + '403': &411 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62273,9 +62298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *314 - - *315 - - &414 + - *312 + - *313 + - &412 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62289,7 +62314,7 @@ paths: description: Response content: application/json: - schema: &415 + schema: &413 type: object properties: number: *52 @@ -62297,7 +62322,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *407 + instances_url: *405 state: *151 fixed_at: *147 dismissed_by: @@ -62305,8 +62330,8 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: *408 - dismissed_comment: *409 + dismissed_reason: *406 + dismissed_comment: *407 rule: type: object properties: @@ -62368,8 +62393,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *411 - most_recent_instance: *412 + tool: *409 + most_recent_instance: *410 dismissal_approved_by: anyOf: - type: 'null' @@ -62465,7 +62490,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62485,9 +62510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: true content: @@ -62502,8 +62527,8 @@ paths: enum: - open - dismissed - dismissed_reason: *408 - dismissed_comment: *409 + dismissed_reason: *406 + dismissed_comment: *407 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62522,7 +62547,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *413 examples: default: value: @@ -62598,7 +62623,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &419 + '403': &417 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62625,15 +62650,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 responses: '200': description: Response content: application/json: - schema: &416 + schema: &414 type: object properties: status: @@ -62660,13 +62685,13 @@ paths: - description - started_at examples: - default: &417 + default: &415 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &418 + '400': &416 description: Bad Request content: application/json: @@ -62677,7 +62702,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62702,29 +62727,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 responses: '200': description: OK content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 '202': description: Accepted content: application/json: - schema: *416 + schema: *414 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *418 + '400': *416 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62756,9 +62781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: false content: @@ -62804,8 +62829,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *418 - '403': *419 + '400': *416 + '403': *417 '404': *6 '422': description: Unprocessable Entity @@ -62829,13 +62854,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 - *19 - *17 - - *420 - - *421 + - *418 + - *419 responses: '200': description: Response @@ -62843,7 +62868,7 @@ paths: application/json: schema: type: array - items: *412 + items: *410 examples: default: value: @@ -62882,7 +62907,7 @@ paths: end_column: 50 classifications: - source - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62916,25 +62941,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *314 - - *315 - - *402 - - *403 + - *312 + - *313 + - *400 + - *401 - *19 - *17 - - *421 + - *419 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *404 + schema: *402 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &424 + schema: &422 type: string description: An identifier for the upload. examples: @@ -62956,23 +62981,23 @@ paths: application/json: schema: type: array - items: &425 + items: &423 type: object properties: - ref: *404 - commit_sha: &433 + ref: *402 + commit_sha: &431 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *422 + analysis_key: *420 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *423 + category: *421 error: type: string examples: @@ -62997,8 +63022,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *424 - tool: *411 + sarif_id: *422 + tool: *409 deletable: type: boolean warning: @@ -63060,7 +63085,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63096,8 +63121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63110,7 +63135,7 @@ paths: description: Response content: application/json: - schema: *425 + schema: *423 examples: response: summary: application/json response @@ -63164,7 +63189,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *413 + '403': *411 '404': *6 '422': description: Response if analysis could not be processed @@ -63251,8 +63276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63308,7 +63333,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *419 + '403': *417 '404': *6 '503': *73 x-github: @@ -63330,8 +63355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -63339,7 +63364,7 @@ paths: application/json: schema: type: array - items: &426 + items: &424 title: CodeQL Database description: A CodeQL database. type: object @@ -63451,7 +63476,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63480,8 +63505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: language in: path description: The language of the CodeQL database. @@ -63493,7 +63518,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *424 examples: default: value: @@ -63525,9 +63550,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &456 + '302': &454 description: Found - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63549,8 +63574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *314 - - *315 + - *312 + - *313 - name: language in: path description: The language of the CodeQL database. @@ -63560,7 +63585,7 @@ paths: responses: '204': description: Response - '403': *419 + '403': *417 '404': *6 '503': *73 x-github: @@ -63588,8 +63613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -63598,7 +63623,7 @@ paths: type: object additionalProperties: false properties: - language: &427 + language: &425 type: string description: The language targeted by the CodeQL query enum: @@ -63677,7 +63702,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &431 + schema: &429 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63687,7 +63712,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *427 + query_language: *425 query_pack_url: type: string description: The download url for the query pack. @@ -63735,7 +63760,7 @@ paths: items: type: object properties: - repository: &428 + repository: &426 title: Repository Identifier description: Repository Identifier type: object @@ -63777,7 +63802,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &432 + analysis_status: &430 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63809,7 +63834,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &429 + access_mismatch_repos: &427 type: object properties: repository_count: @@ -63824,7 +63849,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *428 + items: *426 required: - repository_count - repositories @@ -63847,8 +63872,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *429 - over_limit_repos: *429 + no_codeql_db_repos: *427 + over_limit_repos: *427 required: - access_mismatch_repos - not_found_repos @@ -63864,7 +63889,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &430 + value: &428 summary: Default response value: id: 1 @@ -64016,10 +64041,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *430 + value: *428 repository_lists: summary: Response for a successful variant analysis submission - value: *430 + value: *428 '404': *6 '422': description: Unable to process variant analysis submission @@ -64047,8 +64072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *314 - - *315 + - *312 + - *313 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -64060,9 +64085,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *429 examples: - default: *430 + default: *428 '404': *6 '503': *73 x-github: @@ -64085,7 +64110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *314 + - *312 - name: repo in: path description: The name of the controller repository. @@ -64120,7 +64145,7 @@ paths: type: object properties: repository: *51 - analysis_status: *432 + analysis_status: *430 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64245,8 +64270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64339,7 +64364,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -64360,8 +64385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -64455,7 +64480,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *419 + '403': *417 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64526,8 +64551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -64535,7 +64560,7 @@ paths: schema: type: object properties: - commit_sha: *433 + commit_sha: *431 ref: type: string description: |- @@ -64595,7 +64620,7 @@ paths: schema: type: object properties: - id: *424 + id: *422 url: type: string description: The REST API URL for checking the status of the upload. @@ -64609,7 +64634,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *419 + '403': *417 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64632,8 +64657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *314 - - *315 + - *312 + - *313 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64681,7 +64706,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *413 + '403': *411 '404': description: Not Found if the sarif id does not match any upload '503': *73 @@ -64706,8 +64731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64788,8 +64813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64917,8 +64942,8 @@ paths: parameters: - *17 - *19 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64934,7 +64959,7 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: default: value: @@ -65232,8 +65257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -65297,17 +65322,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '400': *14 '401': *23 '403': *27 @@ -65336,8 +65361,8 @@ paths: parameters: - *17 - *19 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -65401,8 +65426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65439,9 +65464,9 @@ paths: type: integer machines: type: array - items: *435 + items: *433 examples: - default: &637 + default: &635 value: total_count: 2 machines: @@ -65481,8 +65506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65569,8 +65594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -65639,8 +65664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -65658,7 +65683,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &437 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65679,7 +65704,7 @@ paths: - created_at - updated_at examples: - default: *436 + default: *434 headers: Link: *57 x-github: @@ -65702,16 +65727,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *437 + schema: *435 examples: - default: *438 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65731,17 +65756,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *439 + schema: *437 examples: - default: *440 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65761,8 +65786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -65815,8 +65840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -65845,8 +65870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *314 - - *315 + - *312 + - *313 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65884,7 +65909,7 @@ paths: application/json: schema: type: array - items: &441 + items: &439 title: Collaborator description: Collaborator type: object @@ -66077,8 +66102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '204': @@ -66125,8 +66150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 requestBody: required: false @@ -66153,7 +66178,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &505 + schema: &503 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66381,8 +66406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '204': @@ -66414,8 +66439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '200': @@ -66436,7 +66461,7 @@ paths: user: anyOf: - type: 'null' - - *441 + - *439 required: - permission - role_name @@ -66490,8 +66515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -66501,7 +66526,7 @@ paths: application/json: schema: type: array - items: &442 + items: &440 title: Commit Comment description: Commit Comment type: object @@ -66559,7 +66584,7 @@ paths: - created_at - updated_at examples: - default: &445 + default: &443 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66618,17 +66643,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *442 + schema: *440 examples: - default: &446 + default: &444 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66685,8 +66710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -66709,7 +66734,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *440 examples: default: value: @@ -66760,8 +66785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -66783,8 +66808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -66811,9 +66836,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -66834,8 +66859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -66868,16 +66893,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -66899,10 +66924,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -66951,8 +66976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *314 - - *315 + - *312 + - *313 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -67008,9 +67033,9 @@ paths: application/json: schema: type: array - items: *443 + items: *441 examples: - default: &551 + default: &549 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67104,9 +67129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *314 - - *315 - - &444 + - *312 + - *313 + - &442 name: commit_sha description: The SHA of the commit. in: path @@ -67178,9 +67203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 - *17 - *19 responses: @@ -67190,9 +67215,9 @@ paths: application/json: schema: type: array - items: *442 + items: *440 examples: - default: *445 + default: *443 headers: Link: *57 x-github: @@ -67220,9 +67245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 requestBody: required: true content: @@ -67257,9 +67282,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *440 examples: - default: *446 + default: *444 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67287,9 +67312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 - *17 - *19 responses: @@ -67299,9 +67324,9 @@ paths: application/json: schema: type: array - items: *447 + items: *445 examples: - default: &543 + default: &541 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67838,11 +67863,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 - - &448 + - &446 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67857,9 +67882,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: &531 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67972,11 +67997,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *314 - - *315 + - *312 + - *313 + - *446 + - *447 - *448 - - *449 - - *450 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68010,9 +68035,9 @@ paths: type: integer check_runs: type: array - items: *395 + items: *393 examples: - default: *451 + default: *449 headers: Link: *57 x-github: @@ -68037,9 +68062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68047,7 +68072,7 @@ paths: schema: type: integer example: 1 - - *449 + - *447 - *17 - *19 responses: @@ -68065,7 +68090,7 @@ paths: type: integer check_suites: type: array - items: *399 + items: *397 examples: default: value: @@ -68265,9 +68290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - *17 - *19 responses: @@ -68469,9 +68494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - *17 - *19 responses: @@ -68481,7 +68506,7 @@ paths: application/json: schema: type: array - items: &608 + items: &606 title: Status description: The status of a commit. type: object @@ -68562,7 +68587,7 @@ paths: site_admin: false headers: Link: *57 - '301': *323 + '301': *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68590,8 +68615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -68624,11 +68649,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *452 + - *450 code_of_conduct_file: anyOf: - type: 'null' - - &453 + - &451 title: Community Health File type: object properties: @@ -68648,19 +68673,19 @@ paths: contributing: anyOf: - type: 'null' - - *453 + - *451 readme: anyOf: - type: 'null' - - *453 + - *451 issue_template: anyOf: - type: 'null' - - *453 + - *451 pull_request_template: anyOf: - type: 'null' - - *453 + - *451 required: - code_of_conduct - code_of_conduct_file @@ -68789,8 +68814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 - name: basehead @@ -68838,8 +68863,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *443 - merge_base_commit: *443 + base_commit: *441 + merge_base_commit: *441 status: type: string enum: @@ -68863,10 +68888,10 @@ paths: - 6 commits: type: array - items: *443 + items: *441 files: type: array - items: *454 + items: *452 required: - url - html_url @@ -69152,8 +69177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -69306,7 +69331,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &455 + response-if-content-is-a-file: &453 summary: Response if content is a file value: type: file @@ -69443,7 +69468,7 @@ paths: - size - type - url - - &556 + - &554 title: Content File description: Content File type: object @@ -69661,7 +69686,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *455 + response-if-content-is-a-file: *453 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69730,7 +69755,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *456 + '302': *454 '304': *35 x-github: githubCloudOnly: false @@ -69753,8 +69778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -69849,7 +69874,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &455 title: File Commit description: File Commit type: object @@ -70005,7 +70030,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *455 examples: example-for-creating-a-file: value: @@ -70059,7 +70084,7 @@ paths: schema: oneOf: - *3 - - &487 + - &485 description: Repository rule violation was detected type: object properties: @@ -70080,7 +70105,7 @@ paths: items: type: object properties: - placeholder_id: &600 + placeholder_id: &598 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70112,8 +70137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -70174,7 +70199,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *455 examples: default: value: @@ -70229,8 +70254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *314 - - *315 + - *312 + - *313 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70354,8 +70379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *162 - *163 - *164 @@ -70367,18 +70392,10 @@ paths: schema: type: string - *166 - - *458 + - *456 - *167 - *168 - *46 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -70389,8 +70406,6 @@ paths: default: 30 - *38 - *39 - - *169 - - *170 responses: '200': description: Response @@ -70398,7 +70413,7 @@ paths: application/json: schema: type: array - items: &461 + items: &459 type: object description: A Dependabot alert. properties: @@ -70448,7 +70463,7 @@ paths: - direct - transitive - - security_advisory: *459 + security_advisory: *457 security_vulnerability: *50 url: *55 html_url: *56 @@ -70479,7 +70494,7 @@ paths: dismissal. maxLength: 280 fixed_at: *147 - auto_dismissed_at: *460 + auto_dismissed_at: *458 required: - number - state @@ -70709,9 +70724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *314 - - *315 - - &462 + - *312 + - *313 + - &460 name: alert_number in: path description: |- @@ -70726,7 +70741,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *459 examples: default: value: @@ -70839,9 +70854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *314 - - *315 - - *462 + - *312 + - *313 + - *460 requestBody: required: true content: @@ -70886,7 +70901,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *459 examples: default: value: @@ -71015,8 +71030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -71034,7 +71049,7 @@ paths: type: integer secrets: type: array - items: &465 + items: &463 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71088,16 +71103,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *463 + schema: *461 examples: - default: *464 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71117,15 +71132,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *465 + schema: *463 examples: default: value: @@ -71151,8 +71166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -71205,8 +71220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -71229,8 +71244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *314 - - *315 + - *312 + - *313 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -71404,8 +71419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -71665,8 +71680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -71749,7 +71764,7 @@ paths: - version - url additionalProperties: false - metadata: &466 + metadata: &464 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71788,7 +71803,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *466 + metadata: *464 resolved: type: object description: A collection of resolved package dependencies. @@ -71802,7 +71817,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *466 + metadata: *464 relationship: type: string description: A notation of whether a dependency is requested @@ -71935,8 +71950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *314 - - *315 + - *312 + - *313 - name: sha description: The SHA recorded at creation time. in: query @@ -71977,9 +71992,9 @@ paths: application/json: schema: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *57 x-github: @@ -72045,8 +72060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -72128,7 +72143,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *465 examples: simple-example: summary: Simple example @@ -72201,9 +72216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *314 - - *315 - - &469 + - *312 + - *313 + - &467 name: deployment_id description: deployment_id parameter in: path @@ -72215,7 +72230,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *465 examples: default: value: @@ -72280,9 +72295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 responses: '204': description: Response @@ -72304,9 +72319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 - *17 - *19 responses: @@ -72316,7 +72331,7 @@ paths: application/json: schema: type: array - items: &470 + items: &468 title: Deployment Status description: The status of a deployment. type: object @@ -72480,9 +72495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 requestBody: required: true content: @@ -72557,9 +72572,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *468 examples: - default: &471 + default: &469 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72615,9 +72630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 - name: status_id in: path required: true @@ -72628,9 +72643,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *468 examples: - default: *471 + default: *469 '404': *6 x-github: githubCloudOnly: false @@ -72655,8 +72670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -72713,8 +72728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -72732,7 +72747,7 @@ paths: - 5 environments: type: array - items: &473 + items: &471 title: Environment description: Details of a deployment environment type: object @@ -72794,7 +72809,7 @@ paths: type: string examples: - wait_timer - wait_timer: &475 + wait_timer: &473 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72836,7 +72851,7 @@ paths: items: type: object properties: - type: *472 + type: *470 reviewer: anyOf: - *4 @@ -72863,7 +72878,7 @@ paths: - id - node_id - type - deployment_branch_policy: &476 + deployment_branch_policy: &474 type: - object - 'null' @@ -72980,9 +72995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *314 - - *315 - - &474 + - *312 + - *313 + - &472 name: environment_name in: path required: true @@ -72995,9 +73010,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: - default: &477 + default: &475 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73081,9 +73096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: false content: @@ -73093,7 +73108,7 @@ paths: - object - 'null' properties: - wait_timer: *475 + wait_timer: *473 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -73112,14 +73127,14 @@ paths: items: type: object properties: - type: *472 + type: *470 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *476 + deployment_branch_policy: *474 additionalProperties: false examples: default: @@ -73139,9 +73154,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: - default: *477 + default: *475 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73165,9 +73180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 responses: '204': description: Default response @@ -73192,9 +73207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *17 - *19 responses: @@ -73213,7 +73228,7 @@ paths: - 2 branch_policies: type: array - items: &478 + items: &476 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73274,9 +73289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: true content: @@ -73324,9 +73339,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - example-wildcard: &479 + example-wildcard: &477 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73368,10 +73383,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - &480 + - *312 + - *313 + - *472 + - &478 name: branch_policy_id in: path required: true @@ -73383,9 +73398,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - default: *479 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73404,10 +73419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - *480 + - *312 + - *313 + - *472 + - *478 requestBody: required: true content: @@ -73436,9 +73451,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - default: *479 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73457,10 +73472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - *480 + - *312 + - *313 + - *472 + - *478 responses: '204': description: Response @@ -73485,9 +73500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 responses: '200': description: List of deployment protection rules @@ -73504,7 +73519,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &481 + items: &479 title: Deployment protection rule description: Deployment protection rule type: object @@ -73526,7 +73541,7 @@ paths: for the environment. examples: - true - app: &482 + app: &480 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73629,9 +73644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 requestBody: content: application/json: @@ -73652,9 +73667,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *481 + schema: *479 examples: - default: &483 + default: &481 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73689,9 +73704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 - *19 - *17 responses: @@ -73711,7 +73726,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *482 + items: *480 examples: default: value: @@ -73746,10 +73761,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *314 - - *315 - - *474 - - &484 + - *312 + - *313 + - *472 + - &482 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73761,9 +73776,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *479 examples: - default: *483 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73784,10 +73799,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *474 - - *315 - - *314 - - *484 + - *472 + - *313 + - *312 + - *482 responses: '204': description: Response @@ -73813,9 +73828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *17 - *19 responses: @@ -73833,9 +73848,9 @@ paths: type: integer secrets: type: array - items: *362 + items: *360 examples: - default: *363 + default: *361 headers: Link: *57 x-github: @@ -73860,17 +73875,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 responses: '200': description: Response content: application/json: - schema: *364 + schema: *362 examples: - default: *365 + default: *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73892,18 +73907,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *485 + default: *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73925,9 +73940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 requestBody: required: true @@ -73985,9 +74000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 responses: '204': @@ -74013,10 +74028,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *314 - - *315 - - *474 - - *333 + - *312 + - *313 + - *472 + - *331 - *19 responses: '200': @@ -74033,9 +74048,9 @@ paths: type: integer variables: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *57 x-github: @@ -74058,9 +74073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: true content: @@ -74112,18 +74127,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *142 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *486 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74144,10 +74159,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 - - *474 + - *472 requestBody: required: true content: @@ -74189,10 +74204,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 - - *474 + - *472 responses: '204': description: Response @@ -74214,8 +74229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -74283,8 +74298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *314 - - *315 + - *312 + - *313 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74443,8 +74458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -74477,9 +74492,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 '400': *14 '422': *15 '403': *27 @@ -74500,8 +74515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -74561,7 +74576,7 @@ paths: schema: oneOf: - *105 - - *487 + - *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74586,8 +74601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *314 - - *315 + - *312 + - *313 - name: file_sha in: path required: true @@ -74687,8 +74702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -74797,7 +74812,7 @@ paths: description: Response content: application/json: - schema: &488 + schema: &486 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75024,15 +75039,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 responses: '200': description: Response content: application/json: - schema: *488 + schema: *486 examples: default: value: @@ -75088,9 +75103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *314 - - *315 - - &489 + - *312 + - *313 + - &487 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -75107,7 +75122,7 @@ paths: application/json: schema: type: array - items: &490 + items: &488 title: Git Reference description: Git references within a repository type: object @@ -75183,17 +75198,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 responses: '200': description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: &491 + default: &489 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75222,8 +75237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75252,9 +75267,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: *491 + default: *489 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75280,9 +75295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 requestBody: required: true content: @@ -75311,9 +75326,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: *491 + default: *489 '422': *15 '409': *45 x-github: @@ -75331,9 +75346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 responses: '204': description: Response @@ -75388,8 +75403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75456,7 +75471,7 @@ paths: description: Response content: application/json: - schema: &493 + schema: &491 title: Git Tag description: Metadata for a Git tag type: object @@ -75512,7 +75527,7 @@ paths: - sha - type - url - verification: *492 + verification: *490 required: - sha - url @@ -75522,7 +75537,7 @@ paths: - tag - message examples: - default: &494 + default: &492 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75595,8 +75610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *314 - - *315 + - *312 + - *313 - name: tag_sha in: path required: true @@ -75607,9 +75622,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: *494 + default: *492 '404': *6 '409': *45 x-github: @@ -75633,8 +75648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75708,7 +75723,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &493 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75810,8 +75825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *314 - - *315 + - *312 + - *313 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75834,7 +75849,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *493 examples: default-response: summary: Default response @@ -75893,8 +75908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -75904,7 +75919,7 @@ paths: application/json: schema: type: array - items: &496 + items: &494 title: Webhook description: Webhooks for repositories. type: object @@ -75967,7 +75982,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &719 + last_response: &717 title: Hook Response type: object properties: @@ -76044,8 +76059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -76098,9 +76113,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: &497 + default: &495 value: type: Repository id: 12345678 @@ -76148,17 +76163,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '200': description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '404': *6 x-github: githubCloudOnly: false @@ -76178,9 +76193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 requestBody: required: true content: @@ -76225,9 +76240,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '422': *15 '404': *6 x-github: @@ -76248,9 +76263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76274,9 +76289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '200': description: Response @@ -76303,9 +76318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 requestBody: required: false content: @@ -76349,11 +76364,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *17 - - *177 + - *175 responses: '200': description: Response @@ -76361,9 +76376,9 @@ paths: application/json: schema: type: array - items: *178 + items: *176 examples: - default: *179 + default: *177 '400': *14 '422': *15 x-github: @@ -76382,18 +76397,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *16 responses: '200': description: Response content: application/json: - schema: *180 + schema: *178 examples: - default: *181 + default: *179 '400': *14 '422': *15 x-github: @@ -76412,9 +76427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *16 responses: '202': *37 @@ -76437,9 +76452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76464,9 +76479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76489,8 +76504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response if immutable releases are enabled @@ -76538,8 +76553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '409': *45 @@ -76559,8 +76574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '409': *45 @@ -76617,14 +76632,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &498 + schema: &496 title: Import description: A repository import from an external source. type: object @@ -76731,7 +76746,7 @@ paths: - html_url - authors_url examples: - default: &501 + default: &499 value: vcs: subversion use_lfs: true @@ -76747,7 +76762,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &499 + '503': &497 description: Unavailable due to service under maintenance. content: application/json: @@ -76776,8 +76791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -76825,7 +76840,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: default: value: @@ -76850,7 +76865,7 @@ paths: type: string '422': *15 '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76878,8 +76893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -76931,7 +76946,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: example-1: summary: Example 1 @@ -76979,7 +76994,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77002,12 +77017,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77033,9 +77048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *314 - - *315 - - &659 + - *312 + - *313 + - &657 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77049,7 +77064,7 @@ paths: application/json: schema: type: array - items: &500 + items: &498 title: Porter Author description: Porter Author type: object @@ -77103,7 +77118,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77128,8 +77143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *314 - - *315 + - *312 + - *313 - name: author_id in: path required: true @@ -77159,7 +77174,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: default: value: @@ -77172,7 +77187,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77196,8 +77211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77238,7 +77253,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77266,8 +77281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -77294,11 +77309,11 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: - default: *501 + default: *499 '422': *15 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77321,8 +77336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77330,8 +77345,8 @@ paths: application/json: schema: *20 examples: - default: *502 - '301': *323 + default: *500 + '301': *321 '404': *6 x-github: githubCloudOnly: false @@ -77351,8 +77366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77360,12 +77375,12 @@ paths: application/json: schema: anyOf: - - *194 + - *192 - type: object properties: {} additionalProperties: false examples: - default: &504 + default: &502 value: limit: collaborators_only origin: repository @@ -77390,13 +77405,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *503 + schema: *501 examples: default: summary: Example request body @@ -77408,9 +77423,9 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: - default: *504 + default: *502 '409': description: Response x-github: @@ -77432,8 +77447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -77456,8 +77471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -77467,9 +77482,9 @@ paths: application/json: schema: type: array - items: *505 + items: *503 examples: - default: &652 + default: &650 value: - id: 1 repository: @@ -77600,9 +77615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *314 - - *315 - - *198 + - *312 + - *313 + - *196 requestBody: required: false content: @@ -77631,7 +77646,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *503 examples: default: value: @@ -77762,9 +77777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *314 - - *315 - - *198 + - *312 + - *313 + - *196 responses: '204': description: Response @@ -77795,8 +77810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *314 - - *315 + - *312 + - *313 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -77844,7 +77859,7 @@ paths: required: false schema: type: string - - *202 + - *200 - name: sort description: What to sort results by. in: query @@ -77869,7 +77884,7 @@ paths: type: array items: *68 examples: - default: &512 + default: &510 value: - id: 1 node_id: MDU6SXNzdWUx @@ -78017,7 +78032,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *323 + '301': *321 '422': *15 '404': *6 x-github: @@ -78046,8 +78061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -78139,7 +78154,7 @@ paths: application/json: schema: *68 examples: - default: &509 + default: &507 value: id: 1 node_id: MDU6SXNzdWUx @@ -78295,7 +78310,7 @@ paths: '422': *15 '503': *73 '404': *6 - '410': *320 + '410': *318 x-github: triggersNotification: true githubCloudOnly: false @@ -78323,8 +78338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *92 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78345,9 +78360,9 @@ paths: application/json: schema: type: array - items: *506 + items: *504 examples: - default: &511 + default: &509 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78405,17 +78420,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: &507 + default: &505 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78469,8 +78484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -78493,9 +78508,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: *507 + default: *505 '422': *15 x-github: githubCloudOnly: false @@ -78513,8 +78528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -78535,8 +78550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78563,9 +78578,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -78586,8 +78601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -78620,16 +78635,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -78651,10 +78666,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -78674,8 +78689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -78685,7 +78700,7 @@ paths: application/json: schema: type: array - items: &508 + items: &506 title: Issue Event description: Issue Event type: object @@ -79024,8 +79039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *314 - - *315 + - *312 + - *313 - name: event_id in: path required: true @@ -79036,7 +79051,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *506 examples: default: value: @@ -79229,7 +79244,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *320 + '410': *318 '403': *27 x-github: githubCloudOnly: false @@ -79263,9 +79278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *314 - - *315 - - &510 + - *312 + - *313 + - &508 name: issue_number description: The number that identifies the issue. in: path @@ -79279,10 +79294,10 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '404': *6 - '410': *320 + '410': *318 '304': *35 x-github: githubCloudOnly: false @@ -79307,9 +79322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -79430,13 +79445,13 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 '422': *15 '503': *73 '403': *27 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79454,9 +79469,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -79484,7 +79499,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79500,9 +79515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: content: application/json: @@ -79529,7 +79544,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79551,9 +79566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: assignee in: path required: true @@ -79593,9 +79608,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *75 - *17 - *19 @@ -79606,13 +79621,13 @@ paths: application/json: schema: type: array - items: *506 + items: *504 examples: - default: *511 + default: *509 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79641,9 +79656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -79665,16 +79680,16 @@ paths: description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: *507 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -79702,9 +79717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79716,12 +79731,12 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79749,9 +79764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -79775,15 +79790,15 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *323 + '301': *321 '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -79814,9 +79829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79830,13 +79845,13 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 x-github: triggersNotification: true githubCloudOnly: false @@ -79862,9 +79877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79876,12 +79891,12 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79898,9 +79913,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79914,7 +79929,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &514 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79963,7 +79978,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &515 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -80091,7 +80106,7 @@ paths: - performed_via_github_app - assignee - assigner - - &516 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -80137,7 +80152,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &517 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -80183,7 +80198,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &518 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80232,7 +80247,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &519 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80274,7 +80289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &520 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80316,7 +80331,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &521 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80372,7 +80387,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -80417,7 +80432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &523 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80478,7 +80493,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80539,7 +80554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80600,7 +80615,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80693,7 +80708,7 @@ paths: color: red headers: Link: *57 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80710,9 +80725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -80724,7 +80739,7 @@ paths: type: array items: *67 examples: - default: &513 + default: &511 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80742,9 +80757,9 @@ paths: default: false headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80761,9 +80776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -80824,10 +80839,10 @@ paths: type: array items: *67 examples: - default: *513 - '301': *323 + default: *511 + '301': *321 '404': *6 - '410': *320 + '410': *318 '422': *15 x-github: githubCloudOnly: false @@ -80844,9 +80859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -80908,10 +80923,10 @@ paths: type: array items: *67 examples: - default: *513 - '301': *323 + default: *511 + '301': *321 '404': *6 - '410': *320 + '410': *318 '422': *15 x-github: githubCloudOnly: false @@ -80928,15 +80943,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '204': description: Response - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80955,9 +80970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: name in: path required: true @@ -80981,9 +80996,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81003,9 +81018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -81034,7 +81049,7 @@ paths: '204': description: Response '403': *27 - '410': *320 + '410': *318 '404': *6 '422': *15 x-github: @@ -81052,9 +81067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '204': description: Response @@ -81084,9 +81099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '200': description: Response @@ -81094,10 +81109,10 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81114,9 +81129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - 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. @@ -81142,13 +81157,13 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81166,9 +81181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81200,16 +81215,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -81231,10 +81246,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *314 - - *315 - - *510 - - *310 + - *312 + - *313 + - *508 + - *308 responses: '204': description: Response @@ -81263,9 +81278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81289,7 +81304,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81322,9 +81337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -81336,11 +81351,11 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81368,9 +81383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81399,14 +81414,14 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -81426,9 +81441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81461,7 +81476,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 '403': *27 '404': *6 '422': *7 @@ -81483,9 +81498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -81500,6 +81515,8 @@ paths: description: Timeline Event type: object anyOf: + - *512 + - *513 - *514 - *515 - *516 @@ -81511,8 +81528,6 @@ paths: - *522 - *523 - *524 - - *525 - - *526 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81841,7 +81856,7 @@ paths: type: string comments: type: array - items: &545 + items: &543 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -82079,7 +82094,7 @@ paths: type: string comments: type: array - items: *442 + items: *440 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82354,7 +82369,7 @@ paths: headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82371,8 +82386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -82382,7 +82397,7 @@ paths: application/json: schema: type: array - items: &527 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82450,8 +82465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -82487,9 +82502,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: - default: &528 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -82523,9 +82538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *314 - - *315 - - &529 + - *312 + - *313 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -82537,9 +82552,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: - default: *528 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -82557,9 +82572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *314 - - *315 - - *529 + - *312 + - *313 + - *527 responses: '204': description: Response @@ -82579,8 +82594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -82592,7 +82607,7 @@ paths: type: array items: *67 examples: - default: *513 + default: *511 headers: Link: *57 '404': *6 @@ -82613,8 +82628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -82652,7 +82667,7 @@ paths: application/json: schema: *67 examples: - default: &530 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82684,8 +82699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82698,7 +82713,7 @@ paths: application/json: schema: *67 examples: - default: *530 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -82715,8 +82730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82781,8 +82796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82808,8 +82823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -82848,9 +82863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *314 - - *315 - - *420 + - *312 + - *313 + - *418 responses: '200': description: Response @@ -82997,8 +83012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83063,8 +83078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83098,9 +83113,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *443 + schema: *441 examples: - default: *531 + default: *529 '204': description: Response when already merged '404': @@ -83125,8 +83140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83167,7 +83182,7 @@ paths: application/json: schema: type: array - items: *238 + items: *236 examples: default: value: @@ -83223,8 +83238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83264,9 +83279,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: &532 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83325,9 +83340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *314 - - *315 - - &533 + - *312 + - *313 + - &531 name: milestone_number description: The number that identifies the milestone. in: path @@ -83339,9 +83354,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: *532 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83358,9 +83373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 requestBody: required: false content: @@ -83398,9 +83413,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: *532 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83416,9 +83431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 responses: '204': description: Response @@ -83439,9 +83454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 - *17 - *19 responses: @@ -83453,7 +83468,7 @@ paths: type: array items: *67 examples: - default: *513 + default: *511 headers: Link: *57 x-github: @@ -83472,12 +83487,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *314 - - *315 - - *534 - - *535 + - *312 + - *313 + - *532 + - *533 - *75 - - *536 + - *534 - *17 - *19 responses: @@ -83489,7 +83504,7 @@ paths: type: array items: *95 examples: - default: *537 + default: *535 headers: Link: *57 x-github: @@ -83513,8 +83528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -83572,14 +83587,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &538 + schema: &536 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83723,7 +83738,7 @@ paths: - custom_404 - public examples: - default: &539 + default: &537 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83764,8 +83779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83820,9 +83835,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *536 examples: - default: *539 + default: *537 '422': *15 '409': *45 x-github: @@ -83845,8 +83860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83946,8 +83961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -83973,8 +83988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -83984,7 +83999,7 @@ paths: application/json: schema: type: array - items: &540 + items: &538 title: Page Build description: Page Build type: object @@ -84076,8 +84091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -84124,16 +84139,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *540 + schema: *538 examples: - default: &541 + default: &539 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84181,8 +84196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *314 - - *315 + - *312 + - *313 - name: build_id in: path required: true @@ -84193,9 +84208,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *538 examples: - default: *541 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84215,8 +84230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84324,9 +84339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *314 - - *315 - - &542 + - *312 + - *313 + - &540 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84384,9 +84399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *314 - - *315 - - *542 + - *312 + - *313 + - *540 responses: '204': *156 '404': *6 @@ -84413,8 +84428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -84709,8 +84724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Private vulnerability reporting status @@ -84747,8 +84762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '422': *14 @@ -84769,8 +84784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '422': *14 @@ -84793,8 +84808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#list-repository-projects parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: Indicates the state of the projects to return. in: query @@ -84815,7 +84830,7 @@ paths: application/json: schema: type: array - items: *232 + items: *230 examples: default: value: @@ -84855,7 +84870,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -84878,8 +84893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#create-a-repository-project parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84905,13 +84920,13 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: *319 + default: *317 '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -84934,8 +84949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -84943,7 +84958,7 @@ paths: application/json: schema: type: array - items: *249 + items: *247 examples: default: value: @@ -84974,8 +84989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84987,7 +85002,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *249 + items: *247 required: - properties examples: @@ -85037,8 +85052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -85098,9 +85113,9 @@ paths: application/json: schema: type: array - items: *447 + items: *445 examples: - default: *543 + default: *541 headers: Link: *57 '304': *35 @@ -85132,8 +85147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -85200,7 +85215,7 @@ paths: description: Response content: application/json: - schema: &547 + schema: &545 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85329,7 +85344,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 active_lock_reason: type: - string @@ -85384,7 +85399,7 @@ paths: type: - array - 'null' - items: *214 + items: *212 head: type: object properties: @@ -85422,14 +85437,14 @@ paths: _links: type: object properties: - comments: *239 - commits: *239 - statuses: *239 - html: *239 - issue: *239 - review_comments: *239 - review_comment: *239 - self: *239 + comments: *237 + commits: *237 + statuses: *237 + html: *237 + issue: *237 + review_comments: *237 + review_comment: *237 + self: *237 required: - comments - commits @@ -85440,7 +85455,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: *544 + auto_merge: *542 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85542,7 +85557,7 @@ paths: - merged_by - review_comments examples: - default: &548 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86069,8 +86084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: sort in: query required: false @@ -86099,9 +86114,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: &550 + default: &548 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86178,17 +86193,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: &546 + default: &544 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86263,8 +86278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -86287,9 +86302,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: *546 + default: *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86305,8 +86320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -86328,8 +86343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86356,9 +86371,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -86379,8 +86394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -86413,16 +86428,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -86444,10 +86459,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -86490,9 +86505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *314 - - *315 - - &549 + - *312 + - *313 + - &547 name: pull_number description: The number that identifies the pull request. in: path @@ -86505,9 +86520,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 '304': *35 '404': *6 '406': @@ -86542,9 +86557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -86586,9 +86601,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 '422': *15 '403': *27 x-github: @@ -86610,9 +86625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -86673,17 +86688,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -86713,9 +86728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *92 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86736,9 +86751,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: *550 + default: *548 headers: Link: *57 x-github: @@ -86771,9 +86786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -86879,7 +86894,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: example-for-a-multi-line-comment: value: @@ -86967,9 +86982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *84 requestBody: required: true @@ -86992,7 +87007,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: default: value: @@ -87078,9 +87093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -87090,9 +87105,9 @@ paths: application/json: schema: type: array - items: *443 + items: *441 examples: - default: *551 + default: *549 headers: Link: *57 x-github: @@ -87122,9 +87137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -87134,7 +87149,7 @@ paths: application/json: schema: type: array - items: *454 + items: *452 examples: default: value: @@ -87172,9 +87187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 responses: '204': description: Response if pull request has been merged @@ -87197,9 +87212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -87311,9 +87326,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 responses: '200': description: Response @@ -87388,9 +87403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -87427,7 +87442,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -87963,9 +87978,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -87999,7 +88014,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -88504,9 +88519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -88516,7 +88531,7 @@ paths: application/json: schema: type: array - items: &552 + items: &550 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88672,9 +88687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -88764,9 +88779,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: &554 + default: &552 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88829,10 +88844,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - &553 + - *312 + - *313 + - *547 + - &551 name: review_id description: The unique identifier of the review. in: path @@ -88844,9 +88859,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: &555 + default: &553 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88905,10 +88920,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -88931,7 +88946,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: default: value: @@ -88993,18 +89008,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 responses: '200': description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: *554 + default: *552 '422': *7 '404': *6 x-github: @@ -89031,10 +89046,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 - *17 - *19 responses: @@ -89132,9 +89147,9 @@ paths: _links: type: object properties: - self: *239 - html: *239 - pull_request: *239 + self: *237 + html: *237 + pull_request: *237 required: - self - html @@ -89292,10 +89307,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -89324,7 +89339,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: default: value: @@ -89387,10 +89402,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -89425,9 +89440,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: *555 + default: *553 '404': *6 '422': *7 '403': *27 @@ -89449,9 +89464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -89515,8 +89530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89529,9 +89544,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *554 examples: - default: &557 + default: &555 value: type: file encoding: base64 @@ -89573,8 +89588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *314 - - *315 + - *312 + - *313 - name: dir description: The alternate path to look for a README file in: path @@ -89594,9 +89609,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *554 examples: - default: *557 + default: *555 '404': *6 '422': *15 x-github: @@ -89618,8 +89633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -89629,7 +89644,7 @@ paths: application/json: schema: type: array - items: *558 + items: *556 examples: default: value: @@ -89723,8 +89738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -89800,9 +89815,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: &562 + default: &560 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89907,9 +89922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *314 - - *315 - - &560 + - *312 + - *313 + - &558 name: asset_id description: The unique identifier of the asset. in: path @@ -89921,9 +89936,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: - default: &561 + default: &559 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 @@ -89958,7 +89973,7 @@ paths: type: User site_admin: false '404': *6 - '302': *456 + '302': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89974,9 +89989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *314 - - *315 - - *560 + - *312 + - *313 + - *558 requestBody: required: false content: @@ -90005,9 +90020,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: - default: *561 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90023,9 +90038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *314 - - *315 - - *560 + - *312 + - *313 + - *558 responses: '204': description: Response @@ -90049,8 +90064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -90136,16 +90151,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90162,8 +90177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *314 - - *315 + - *312 + - *313 - name: tag description: tag parameter in: path @@ -90176,9 +90191,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 '404': *6 x-github: githubCloudOnly: false @@ -90200,9 +90215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *314 - - *315 - - &563 + - *312 + - *313 + - &561 name: release_id description: The unique identifier of the release. in: path @@ -90216,9 +90231,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: *558 + schema: *556 examples: - default: *562 + default: *560 '401': description: Unauthorized x-github: @@ -90236,9 +90251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 requestBody: required: false content: @@ -90302,9 +90317,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 '404': description: Not Found if the discussion category name is invalid content: @@ -90325,9 +90340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 responses: '204': description: Response @@ -90347,9 +90362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - *17 - *19 responses: @@ -90359,7 +90374,7 @@ paths: application/json: schema: type: array - items: *559 + items: *557 examples: default: value: @@ -90440,9 +90455,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - name: name in: query required: true @@ -90468,7 +90483,7 @@ paths: description: Response for successful upload content: application/json: - schema: *559 + schema: *557 examples: response-for-successful-upload: value: @@ -90523,9 +90538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - 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. @@ -90549,9 +90564,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -90572,9 +90587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 requestBody: required: true content: @@ -90604,16 +90619,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -90635,10 +90650,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *314 - - *315 - - *563 - - *310 + - *312 + - *313 + - *561 + - *308 responses: '204': description: Response @@ -90662,9 +90677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 - *17 - *19 responses: @@ -90680,8 +90695,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *256 - - &564 + - *254 + - &562 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90700,69 +90715,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. + - allOf: + - *255 + - *562 + - allOf: + - *256 + - *562 - allOf: - *257 - - *564 + - *562 + - allOf: + - *563 + - *562 - allOf: - *258 - - *564 + - *562 - allOf: - *259 - - *564 - - allOf: - - *565 - - *564 + - *562 - allOf: - *260 - - *564 + - *562 - allOf: - *261 - - *564 + - *562 - allOf: - *262 - - *564 + - *562 - allOf: - *263 - - *564 + - *562 - allOf: - *264 - - *564 + - *562 - allOf: - *265 - - *564 + - *562 - allOf: - *266 - - *564 + - *562 - allOf: - *267 - - *564 + - *562 - allOf: - *268 - - *564 + - *562 - allOf: - *269 - - *564 + - *562 - allOf: - *270 - - *564 + - *562 - allOf: - *271 - - *564 + - *562 - allOf: - *272 - - *564 + - *562 - allOf: - *273 - - *564 - - allOf: - - *274 - - *564 - - allOf: - - *275 - - *564 + - *562 - allOf: - - *566 - *564 + - *562 examples: default: value: @@ -90801,8 +90816,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - name: includes_parents @@ -90813,7 +90828,7 @@ paths: schema: type: boolean default: true - - *567 + - *565 responses: '200': description: Response @@ -90821,7 +90836,7 @@ paths: application/json: schema: type: array - items: *276 + items: *274 examples: default: value: @@ -90868,8 +90883,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 requestBody: description: Request body required: true @@ -90889,16 +90904,16 @@ paths: - tag - push default: branch - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *251 + items: *252 + conditions: *249 rules: type: array description: An array of rules within the ruleset. - items: *568 + items: *566 required: - name - enforcement @@ -90929,9 +90944,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: &578 + default: &576 value: id: 42 name: super cool ruleset @@ -90978,12 +90993,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *314 - - *315 + - *312 + - *313 + - *567 + - *568 - *569 - *570 - - *571 - - *572 - *17 - *19 responses: @@ -90991,9 +91006,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '404': *6 '500': *100 x-github: @@ -91014,17 +91029,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *314 - - *315 - - *575 + - *312 + - *313 + - *573 responses: '200': description: Response content: application/json: - schema: *576 + schema: *574 examples: - default: *577 + default: *575 '404': *6 '500': *100 x-github: @@ -91052,8 +91067,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91073,9 +91088,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *578 + default: *576 '404': *6 '500': *100 put: @@ -91093,8 +91108,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91119,16 +91134,16 @@ paths: - branch - tag - push - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *251 + items: *252 + conditions: *249 rules: description: An array of rules within the ruleset. type: array - items: *568 + items: *566 examples: default: value: @@ -91156,9 +91171,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *578 + default: *576 '404': *6 '500': *100 delete: @@ -91176,8 +91191,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91200,8 +91215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - name: ruleset_id @@ -91217,9 +91232,9 @@ paths: application/json: schema: type: array - items: *279 + items: *277 examples: - default: *579 + default: *577 '404': *6 '500': *100 x-github: @@ -91238,8 +91253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91257,7 +91272,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *578 examples: default: value: @@ -91312,21 +91327,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 + - *278 + - *279 - *280 - *281 - - *282 - - *283 - *46 - *19 - *17 - - *581 - - *582 + - *579 + - *580 + - *282 + - *283 - *284 - *285 - - *286 - - *287 responses: '200': description: Response @@ -91334,7 +91349,7 @@ paths: application/json: schema: type: array - items: &586 + items: &584 type: object properties: number: *52 @@ -91350,8 +91365,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *583 - resolution: *584 + state: *581 + resolution: *582 resolved_at: type: - string @@ -91445,7 +91460,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *585 + - *583 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91590,16 +91605,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 - - *287 + - *312 + - *313 + - *412 + - *285 responses: '200': description: Response content: application/json: - schema: *586 + schema: *584 examples: default: value: @@ -91651,9 +91666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: true content: @@ -91661,8 +91676,8 @@ paths: schema: type: object properties: - state: *583 - resolution: *584 + state: *581 + resolution: *582 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91681,7 +91696,7 @@ paths: description: Response content: application/json: - schema: *586 + schema: *584 examples: default: value: @@ -91756,9 +91771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 - *19 - *17 responses: @@ -91769,7 +91784,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &739 + items: &737 type: object properties: type: @@ -91796,6 +91811,8 @@ paths: - commit details: oneOf: + - *585 + - *586 - *587 - *588 - *589 @@ -91807,8 +91824,6 @@ paths: - *595 - *596 - *597 - - *598 - - *599 examples: default: value: @@ -91894,8 +91909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -91903,14 +91918,14 @@ paths: schema: type: object properties: - reason: &601 + reason: &599 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *600 + placeholder_id: *598 required: - reason - placeholder_id @@ -91927,7 +91942,7 @@ paths: schema: type: object properties: - reason: *601 + reason: *599 expire_at: type: - string @@ -91971,8 +91986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91987,7 +92002,7 @@ paths: properties: incremental_scans: type: array - items: &602 + items: &600 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92015,15 +92030,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *602 + items: *600 backfill_scans: type: array - items: *602 + items: *600 custom_pattern_backfill_scans: type: array items: allOf: - - *602 + - *600 - type: object properties: pattern_name: @@ -92093,8 +92108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *314 - - *315 + - *312 + - *313 - *46 - name: sort description: The property to sort the results by. @@ -92138,9 +92153,9 @@ paths: application/json: schema: type: array - items: *603 + items: *601 examples: - default: *604 + default: *602 '400': *14 '404': *6 x-github: @@ -92163,8 +92178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -92244,7 +92259,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 required: - login - type @@ -92334,9 +92349,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: &606 + default: &604 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92569,8 +92584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -92683,7 +92698,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: default: value: @@ -92830,17 +92845,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '200': description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: *606 + default: *604 '403': *27 '404': *6 x-github: @@ -92864,9 +92879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 requestBody: required: true content: @@ -92946,7 +92961,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 required: - login - type @@ -93037,10 +93052,10 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: *606 - add_credit: *606 + default: *604 + add_credit: *604 '403': *27 '404': *6 '422': @@ -93078,9 +93093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '202': *37 '400': *14 @@ -93107,17 +93122,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '202': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 '400': *14 '422': *15 '403': *27 @@ -93143,8 +93158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -93240,8 +93255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93250,7 +93265,7 @@ paths: application/json: schema: type: array - items: &607 + items: &605 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93283,8 +93298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -93362,8 +93377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -93457,8 +93472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93612,8 +93627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93623,7 +93638,7 @@ paths: application/json: schema: type: array - items: *607 + items: *605 examples: default: value: @@ -93656,8 +93671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *314 - - *315 + - *312 + - *313 - name: sha in: path required: true @@ -93713,7 +93728,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *606 examples: default: value: @@ -93767,8 +93782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -93800,14 +93815,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &609 + schema: &607 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93880,8 +93895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -93907,7 +93922,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: default: value: @@ -93934,8 +93949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -93955,8 +93970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -94038,8 +94053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94047,7 +94062,7 @@ paths: application/json: schema: type: array - items: &610 + items: &608 title: Tag protection description: Tag protection type: object @@ -94104,8 +94119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -94128,7 +94143,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *608 examples: default: value: @@ -94159,8 +94174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94197,8 +94212,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *314 - - *315 + - *312 + - *313 - name: ref in: path required: true @@ -94234,8 +94249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -94247,7 +94262,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 headers: Link: *57 '404': *6 @@ -94267,8 +94282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 responses: @@ -94276,7 +94291,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &609 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94288,7 +94303,7 @@ paths: required: - names examples: - default: &612 + default: &610 value: names: - octocat @@ -94311,8 +94326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -94343,9 +94358,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *609 examples: - default: *612 + default: *610 '404': *6 '422': *7 x-github: @@ -94366,9 +94381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *314 - - *315 - - &613 + - *312 + - *313 + - &611 name: per description: The time frame to display results for. in: query @@ -94399,7 +94414,7 @@ paths: - 128 clones: type: array - items: &614 + items: &612 title: Traffic type: object properties: @@ -94486,8 +94501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94581,8 +94596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94645,9 +94660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *314 - - *315 - - *613 + - *312 + - *313 + - *611 responses: '200': description: Response @@ -94668,7 +94683,7 @@ paths: - 3782 views: type: array - items: *614 + items: *612 required: - uniques - count @@ -94745,8 +94760,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -95020,8 +95035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -95044,8 +95059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -95067,8 +95082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -95094,8 +95109,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *314 - - *315 + - *312 + - *313 - name: ref in: path required: true @@ -95187,9 +95202,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95438,7 +95453,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &615 + text_matches: &613 title: Search Result Text Matches type: array items: @@ -95601,7 +95616,7 @@ paths: enum: - author-date - committer-date - - &616 + - &614 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 @@ -95670,7 +95685,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 comment_count: type: integer message: @@ -95689,7 +95704,7 @@ paths: url: type: string format: uri - verification: *492 + verification: *490 required: - author - committer @@ -95704,7 +95719,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 parents: type: array items: @@ -95721,7 +95736,7 @@ paths: type: number node_id: type: string - text_matches: *615 + text_matches: *613 required: - sha - node_id @@ -95913,7 +95928,7 @@ paths: - interactions - created - updated - - *616 + - *614 - *17 - *19 - name: advanced_search @@ -96010,11 +96025,11 @@ paths: type: - string - 'null' - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: type: string state_reason: @@ -96028,7 +96043,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 comments: type: integer created_at: @@ -96042,7 +96057,7 @@ paths: - string - 'null' format: date-time - text_matches: *615 + text_matches: *613 pull_request: type: object properties: @@ -96091,7 +96106,7 @@ paths: timeline_url: type: string format: uri - type: *199 + type: *197 performed_via_github_app: anyOf: - type: 'null' @@ -96265,7 +96280,7 @@ paths: enum: - created - updated - - *616 + - *614 - *17 - *19 responses: @@ -96310,7 +96325,7 @@ paths: - 'null' score: type: number - text_matches: *615 + text_matches: *613 required: - id - node_id @@ -96395,7 +96410,7 @@ paths: - forks - help-wanted-issues - updated - - *616 + - *614 - *17 - *19 responses: @@ -96632,7 +96647,7 @@ paths: - admin - pull - push - text_matches: *615 + text_matches: *613 temp_clone_token: type: string allow_merge_commit: @@ -96940,7 +96955,7 @@ paths: - string - 'null' format: uri - text_matches: *615 + text_matches: *613 related: type: - array @@ -97133,7 +97148,7 @@ paths: - followers - repositories - joined - - *616 + - *614 - *17 - *19 responses: @@ -97243,7 +97258,7 @@ paths: type: - boolean - 'null' - text_matches: *615 + text_matches: *613 blog: type: - string @@ -97325,7 +97340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &620 + - &618 name: team_id description: The unique identifier of the team. in: path @@ -97337,9 +97352,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 x-github: githubCloudOnly: false @@ -97366,7 +97381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *620 + - *618 requestBody: required: true content: @@ -97430,16 +97445,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '201': description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 '422': *15 '403': *27 @@ -97467,7 +97482,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *620 + - *618 responses: '204': description: Response @@ -97498,7 +97513,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *620 + - *618 - *46 - *17 - *19 @@ -97509,9 +97524,9 @@ paths: application/json: schema: type: array - items: *301 + items: *299 examples: - default: *621 + default: *619 headers: Link: *57 x-github: @@ -97540,7 +97555,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *620 + - *618 requestBody: required: true content: @@ -97574,9 +97589,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: triggersNotification: true githubCloudOnly: false @@ -97603,16 +97618,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 responses: '200': description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97637,8 +97652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: false content: @@ -97661,9 +97676,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *622 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97688,8 +97703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 responses: '204': description: Response @@ -97718,8 +97733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *620 - - *303 + - *618 + - *301 - *46 - *17 - *19 @@ -97730,9 +97745,9 @@ paths: application/json: schema: type: array - items: *304 + items: *302 examples: - default: *623 + default: *621 headers: Link: *57 x-github: @@ -97761,8 +97776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: true content: @@ -97784,9 +97799,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: triggersNotification: true githubCloudOnly: false @@ -97813,17 +97828,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 responses: '200': description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97848,9 +97863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 requestBody: required: true content: @@ -97872,9 +97887,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *624 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97899,9 +97914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 responses: '204': description: Response @@ -97930,9 +97945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -97958,9 +97973,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -97989,9 +98004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 requestBody: required: true content: @@ -98023,9 +98038,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98051,8 +98066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -98078,9 +98093,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -98109,8 +98124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: true content: @@ -98142,9 +98157,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98168,7 +98183,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98178,9 +98193,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 x-github: @@ -98206,7 +98221,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *620 + - *618 - name: role description: Filters members returned by their role in the team. in: query @@ -98257,7 +98272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98294,7 +98309,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98334,7 +98349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98371,16 +98386,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 responses: '200': description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-user-is-a-team-maintainer: *625 + response-if-user-is-a-team-maintainer: *623 '404': *6 x-github: githubCloudOnly: false @@ -98413,7 +98428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 requestBody: required: false @@ -98439,9 +98454,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-users-membership-with-team-is-now-pending: *626 + response-if-users-membership-with-team-is-now-pending: *624 '403': description: Forbidden if team synchronization is set up '422': @@ -98475,7 +98490,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98504,7 +98519,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98514,9 +98529,9 @@ paths: application/json: schema: type: array - items: *312 + items: *310 examples: - default: *627 + default: *625 headers: Link: *57 '404': *6 @@ -98542,16 +98557,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *620 - - *313 + - *618 + - *311 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *628 + default: *626 '404': description: Not Found if project is not managed by this team x-github: @@ -98575,8 +98590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *620 - - *313 + - *618 + - *311 requestBody: required: false content: @@ -98643,8 +98658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *620 - - *313 + - *618 + - *311 responses: '204': description: Response @@ -98671,7 +98686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98683,7 +98698,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '404': *6 @@ -98713,15 +98728,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *629 + schema: *627 examples: alternative-response-with-extra-repository-information: value: @@ -98872,9 +98887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 requestBody: required: false content: @@ -98924,9 +98939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 responses: '204': description: Response @@ -98951,7 +98966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98963,7 +98978,7 @@ paths: type: array items: *161 examples: - response-if-child-teams-exist: *630 + response-if-child-teams-exist: *628 headers: Link: *57 '404': *6 @@ -98996,7 +99011,7 @@ paths: application/json: schema: oneOf: - - &632 + - &630 title: Private User description: Private User type: object @@ -99246,7 +99261,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *631 + - *629 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99406,7 +99421,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *630 examples: default: value: @@ -99609,9 +99624,9 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: - default: *205 + default: *203 '304': *35 '500': *100 '401': *23 @@ -99750,17 +99765,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -99804,7 +99819,7 @@ paths: type: integer secrets: type: array - items: &633 + items: &631 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99846,7 +99861,7 @@ paths: - visibility - selected_repositories_url examples: - default: *436 + default: *434 headers: Link: *57 x-github: @@ -99924,7 +99939,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *631 examples: default: value: @@ -100070,7 +100085,7 @@ paths: type: array items: *131 examples: - default: *634 + default: *632 '401': *23 '403': *27 '404': *6 @@ -100214,15 +100229,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '304': *35 '500': *100 '401': *23 @@ -100248,7 +100263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 requestBody: required: false content: @@ -100278,9 +100293,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -100302,7 +100317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '202': *37 '304': *35 @@ -100331,13 +100346,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '202': description: Response content: application/json: - schema: &635 + schema: &633 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100390,7 +100405,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &636 + default: &634 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100422,7 +100437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *206 + - *204 - name: export_id in: path required: true @@ -100435,9 +100450,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *633 examples: - default: *636 + default: *634 '404': *6 x-github: githubCloudOnly: false @@ -100458,7 +100473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *206 + - *204 responses: '200': description: Response @@ -100474,9 +100489,9 @@ paths: type: integer machines: type: array - items: *435 + items: *433 examples: - default: *637 + default: *635 '304': *35 '500': *100 '401': *23 @@ -100505,7 +100520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *206 + - *204 requestBody: required: true content: @@ -100561,11 +100576,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *322 + repository: *320 machine: anyOf: - type: 'null' - - *435 + - *433 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -101362,15 +101377,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '304': *35 '500': *100 '400': *14 @@ -101402,15 +101417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '500': *100 '401': *23 '403': *27 @@ -101440,9 +101455,9 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: &649 + default: &647 value: - id: 197 name: hello_docker @@ -101543,7 +101558,7 @@ paths: application/json: schema: type: array - items: &638 + items: &636 title: Email description: Email type: object @@ -101613,9 +101628,9 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: - default: &651 + default: &649 value: - email: octocat@github.com verified: true @@ -101692,7 +101707,7 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: default: value: @@ -101950,7 +101965,7 @@ paths: application/json: schema: type: array - items: &639 + items: &637 title: GPG Key description: A unique encryption key type: object @@ -102095,7 +102110,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -102180,9 +102195,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: &640 + default: &638 value: id: 3 name: Octocat's GPG Key @@ -102239,7 +102254,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &641 + - &639 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102251,9 +102266,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: *640 + default: *638 '404': *6 '304': *35 '403': *27 @@ -102276,7 +102291,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *641 + - *639 responses: '204': description: Response @@ -102552,12 +102567,12 @@ paths: application/json: schema: anyOf: - - *194 + - *192 - type: object properties: {} additionalProperties: false examples: - default: *195 + default: *193 '204': description: Response when there are no restrictions x-github: @@ -102581,7 +102596,7 @@ paths: required: true content: application/json: - schema: *503 + schema: *501 examples: default: value: @@ -102592,7 +102607,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: default: value: @@ -102673,7 +102688,7 @@ paths: - closed - all default: open - - *202 + - *200 - name: sort description: What to sort results by. in: query @@ -102698,7 +102713,7 @@ paths: type: array items: *68 examples: - default: *203 + default: *201 headers: Link: *57 '404': *6 @@ -102731,7 +102746,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Key description: Key type: object @@ -102834,9 +102849,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *640 examples: - default: &643 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102869,15 +102884,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *529 + - *527 responses: '200': description: Response content: application/json: - schema: *642 + schema: *640 examples: - default: *643 + default: *641 '404': *6 '304': *35 '403': *27 @@ -102900,7 +102915,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *529 + - *527 responses: '204': description: Response @@ -102933,7 +102948,7 @@ paths: application/json: schema: type: array - items: &644 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103012,7 +103027,7 @@ paths: - account - plan examples: - default: &645 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103074,9 +103089,9 @@ paths: application/json: schema: type: array - items: *644 + items: *642 examples: - default: *645 + default: *643 headers: Link: *57 '304': *35 @@ -103116,7 +103131,7 @@ paths: application/json: schema: type: array - items: *208 + items: *206 examples: default: value: @@ -103224,7 +103239,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: default: value: @@ -103307,7 +103322,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: default: value: @@ -103375,7 +103390,7 @@ paths: application/json: schema: type: array - items: *210 + items: *208 examples: default: value: @@ -103637,7 +103652,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -103817,7 +103832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *211 + - *209 - name: exclude in: query required: false @@ -103830,7 +103845,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -104024,7 +104039,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *211 + - *209 responses: '302': description: Response @@ -104050,7 +104065,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *211 + - *209 responses: '204': description: Response @@ -104079,8 +104094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *211 - - *646 + - *209 + - *644 responses: '204': description: Response @@ -104104,7 +104119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *211 + - *209 - *17 - *19 responses: @@ -104116,7 +104131,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '404': *6 @@ -104153,7 +104168,7 @@ paths: type: array items: *160 examples: - default: *647 + default: *645 headers: Link: *57 '304': *35 @@ -104195,7 +104210,7 @@ paths: - docker - nuget - container - - *648 + - *646 - *19 - *17 responses: @@ -104205,10 +104220,10 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 - '400': *650 + default: *647 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104228,16 +104243,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 responses: '200': description: Response content: application/json: - schema: *216 + schema: *214 examples: - default: &666 + default: &664 value: id: 40201 name: octo-name @@ -104350,8 +104365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 responses: '204': description: Response @@ -104381,8 +104396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 - name: token description: package token schema: @@ -104414,8 +104429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 - *19 - *17 - name: state @@ -104435,7 +104450,7 @@ paths: application/json: schema: type: array - items: *220 + items: *218 examples: default: value: @@ -104484,15 +104499,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '200': description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -104528,9 +104543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '204': description: Response @@ -104560,9 +104575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '204': description: Response @@ -104620,7 +104635,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: default: value: @@ -104692,9 +104707,9 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: - default: *651 + default: *649 headers: Link: *57 '304': *35 @@ -104807,7 +104822,7 @@ paths: type: array items: *66 examples: - default: &658 + default: &656 summary: Default response value: - id: 1296269 @@ -105125,9 +105140,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105165,9 +105180,9 @@ paths: application/json: schema: type: array - items: *505 + items: *503 examples: - default: *652 + default: *650 headers: Link: *57 '304': *35 @@ -105190,7 +105205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *198 + - *196 responses: '204': description: Response @@ -105213,7 +105228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *198 + - *196 responses: '204': description: Response @@ -105246,7 +105261,7 @@ paths: application/json: schema: type: array - items: &653 + items: &651 title: Social account description: Social media account type: object @@ -105263,7 +105278,7 @@ paths: - provider - url examples: - default: &654 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -105326,9 +105341,9 @@ paths: application/json: schema: type: array - items: *653 + items: *651 examples: - default: *654 + default: *652 '422': *15 '304': *35 '404': *6 @@ -105416,7 +105431,7 @@ paths: application/json: schema: type: array - items: &655 + items: &653 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105436,7 +105451,7 @@ paths: - title - created_at examples: - default: &680 + default: &678 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105503,9 +105518,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *653 examples: - default: &656 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105536,7 +105551,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: - - &657 + - &655 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105548,9 +105563,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *653 examples: - default: *656 + default: *654 '404': *6 '304': *35 '403': *27 @@ -105573,7 +105588,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: - - *657 + - *655 responses: '204': description: Response @@ -105602,7 +105617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &681 + - &679 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 @@ -105627,11 +105642,11 @@ paths: type: array items: *66 examples: - default-response: *658 + default-response: *656 application/vnd.github.v3.star+json: schema: type: array - items: &682 + items: &680 title: Starred Repository description: Starred Repository type: object @@ -105787,8 +105802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response if this repository is starred by you @@ -105816,8 +105831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -105841,8 +105856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -105877,7 +105892,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '304': *35 @@ -105914,7 +105929,7 @@ paths: application/json: schema: type: array - items: *299 + items: *297 examples: default: value: @@ -106000,10 +106015,10 @@ paths: application/json: schema: oneOf: - - *632 - - *631 + - *630 + - *629 examples: - default-response: &660 + default-response: &658 summary: Default response value: login: octocat @@ -106038,7 +106053,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &661 + response-with-git-hub-plan-information: &659 summary: Response with GitHub plan information value: login: octocat @@ -106098,7 +106113,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *659 + - *657 - *17 responses: '200': @@ -106147,11 +106162,11 @@ paths: application/json: schema: oneOf: - - *632 - - *631 + - *630 + - *629 examples: - default-response: *660 - response-with-git-hub-plan-information: *661 + default-response: *658 + response-with-git-hub-plan-information: *659 '404': *6 x-github: githubCloudOnly: false @@ -106200,8 +106215,8 @@ paths: required: - subject_digests examples: - default: *662 - withPredicateType: *663 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -106255,7 +106270,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *664 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106459,7 +106474,7 @@ paths: initiator: type: string examples: - default: *378 + default: *376 '201': description: Response content: @@ -106498,9 +106513,9 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 + default: *647 '403': *27 '401': *23 x-github: @@ -106884,9 +106899,9 @@ paths: application/json: schema: type: array - items: *639 + items: *637 examples: - default: *665 + default: *663 headers: Link: *57 x-github: @@ -106990,7 +107005,7 @@ paths: application/json: schema: *20 examples: - default: *502 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107076,7 +107091,7 @@ paths: type: array items: *160 examples: - default: *647 + default: *645 headers: Link: *57 x-github: @@ -107115,7 +107130,7 @@ paths: - docker - nuget - container - - *648 + - *646 - *62 - *19 - *17 @@ -107126,12 +107141,12 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 + default: *647 '403': *27 '401': *23 - '400': *650 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107151,17 +107166,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '200': description: Response content: application/json: - schema: *216 + schema: *214 examples: - default: *666 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107182,8 +107197,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '204': @@ -107216,8 +107231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - name: token description: package token @@ -107250,8 +107265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '200': @@ -107260,7 +107275,7 @@ paths: application/json: schema: type: array - items: *220 + items: *218 examples: default: value: @@ -107318,16 +107333,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 - *62 responses: '200': description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -107362,10 +107377,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - - *221 + - *219 responses: '204': description: Response @@ -107397,10 +107412,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - - *221 + - *219 responses: '204': description: Response @@ -107447,7 +107462,7 @@ paths: application/json: schema: type: array - items: *232 + items: *230 examples: default: value: @@ -107522,9 +107537,9 @@ paths: application/json: schema: type: array - items: *233 + items: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -107546,16 +107561,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *235 + - *233 - *62 responses: '200': description: Response content: application/json: - schema: *233 + schema: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -107577,7 +107592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *235 + - *233 - *62 - *17 - *38 @@ -107589,9 +107604,9 @@ paths: application/json: schema: type: array - items: *236 + items: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -107613,17 +107628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *235 - - *667 + - *233 + - *665 - *62 responses: '200': description: Response content: application/json: - schema: *236 + schema: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -107646,7 +107661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *235 + - *233 - *62 - *38 - *39 @@ -107659,8 +107674,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -107668,8 +107685,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -107677,9 +107692,9 @@ paths: application/json: schema: type: array - items: *242 + items: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -107701,7 +107716,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *62 - - *235 + - *233 requestBody: required: true description: Details of the item to add to the project. @@ -107738,10 +107753,10 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - issue: *241 - pull_request: *241 + issue: *239 + pull_request: *239 '304': *35 '403': *27 '401': *23 @@ -107761,9 +107776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *235 + - *233 - *62 - - *244 + - *242 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107781,9 +107796,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -107804,9 +107819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *235 + - *233 - *62 - - *244 + - *242 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107879,13 +107894,13 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - text_field: *243 - number_field: *243 - date_field: *243 - single_select_field: *243 - iteration_field: *243 + text_field: *241 + number_field: *241 + date_field: *241 + single_select_field: *241 + iteration_field: *241 '401': *23 '403': *27 '404': *6 @@ -107905,9 +107920,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *235 + - *233 - *62 - - *244 + - *242 responses: '204': description: Response @@ -108127,7 +108142,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -108157,9 +108172,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *670 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108187,9 +108202,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: *672 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108198,7 +108213,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -108208,10 +108226,10 @@ paths: parameters: - *62 - *101 - - *673 + - *671 - *102 - - *674 - - *675 + - *672 + - *673 responses: '200': description: Response when getting a billing premium request usage report @@ -108347,9 +108365,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *674 examples: - default: *677 + default: *675 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108371,9 +108389,9 @@ paths: parameters: - *62 - *101 - - *678 + - *676 - *102 - - *679 + - *677 responses: '200': description: Response when getting a billing usage report @@ -108472,9 +108490,9 @@ paths: application/json: schema: type: array - items: *653 + items: *651 examples: - default: *654 + default: *652 headers: Link: *57 x-github: @@ -108504,9 +108522,9 @@ paths: application/json: schema: type: array - items: *655 + items: *653 examples: - default: *680 + default: *678 headers: Link: *57 x-github: @@ -108531,7 +108549,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *62 - - *681 + - *679 - *46 - *17 - *19 @@ -108543,11 +108561,11 @@ paths: schema: anyOf: - type: array - items: *682 + items: *680 - type: array items: *66 examples: - default-response: *658 + default-response: *656 headers: Link: *57 x-github: @@ -108578,7 +108596,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -108707,7 +108725,7 @@ webhooks: type: string enum: - disabled - enterprise: &683 + enterprise: &681 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108776,7 +108794,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &684 + installation: &682 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108797,7 +108815,7 @@ webhooks: required: - id - node_id - organization: &685 + organization: &683 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108870,7 +108888,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &686 + repository: &684 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109783,10 +109801,10 @@ webhooks: type: string enum: - enabled - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -109862,11 +109880,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: &687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: &685 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) @@ -110089,11 +110107,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: *687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: *685 sender: *4 required: - action @@ -110281,11 +110299,11 @@ webhooks: - everyone required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: *687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: *685 sender: *4 required: - action @@ -110369,7 +110387,7 @@ webhooks: type: string enum: - completed - check_run: &689 + check_run: &687 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110479,7 +110497,7 @@ webhooks: - examples: - neutral - deployment: *688 + deployment: *686 details_url: type: string examples: @@ -110577,10 +110595,10 @@ webhooks: - output - app - pull_requests - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -110973,11 +110991,11 @@ webhooks: type: string enum: - created - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -111373,11 +111391,11 @@ webhooks: type: string enum: - requested_action - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 requested_action: description: The action requested by the user. type: object @@ -111782,11 +111800,11 @@ webhooks: type: string enum: - rerequested - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -112778,10 +112796,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -113466,10 +113484,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -114148,10 +114166,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -114320,7 +114338,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114472,20 +114490,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &690 + commit_oid: &688 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: *683 - installation: *684 - organization: *685 - ref: &691 + enterprise: *681 + installation: *682 + organization: *683 + ref: &689 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: *686 + repository: *684 sender: *4 required: - action @@ -114652,7 +114670,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114893,12 +114911,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -114996,7 +115014,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115181,12 +115199,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -115355,7 +115373,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115532,12 +115550,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -115640,7 +115658,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115820,9 +115838,9 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115830,7 +115848,7 @@ webhooks: type: - string - 'null' - repository: *686 + repository: *684 sender: *4 required: - action @@ -115929,7 +115947,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116076,12 +116094,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -116343,10 +116361,10 @@ webhooks: - updated_at - author_association - body - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -116427,18 +116445,18 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *685 - pusher_type: &692 + organization: *683 + pusher_type: &690 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &693 + ref: &691 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116448,7 +116466,7 @@ webhooks: enum: - tag - branch - repository: *686 + repository: *684 sender: *4 required: - ref @@ -116530,10 +116548,10 @@ webhooks: type: string enum: - created - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116618,9 +116636,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116697,10 +116715,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116777,10 +116795,10 @@ webhooks: type: string enum: - updated - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116857,19 +116875,19 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - repository: *686 - organization: *685 + enterprise: *681 + installation: *682 + repository: *684 + organization: *683 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *249 + items: *247 old_property_values: type: array description: The old custom property values for the repository. - items: *249 + items: *247 required: - action - repository @@ -116945,18 +116963,18 @@ webhooks: title: delete event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - pusher_type: *692 - ref: *693 + enterprise: *681 + installation: *682 + organization: *683 + pusher_type: *690 + ref: *691 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *686 + repository: *684 sender: *4 required: - ref @@ -117040,11 +117058,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117128,11 +117146,11 @@ webhooks: type: string enum: - auto_reopened - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117216,11 +117234,11 @@ webhooks: type: string enum: - created - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117302,11 +117320,11 @@ webhooks: type: string enum: - dismissed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117388,11 +117406,11 @@ webhooks: type: string enum: - fixed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117475,11 +117493,11 @@ webhooks: type: string enum: - reintroduced - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117561,11 +117579,11 @@ webhooks: type: string enum: - reopened - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117642,9 +117660,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - key: &694 + enterprise: *681 + installation: *682 + key: &692 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117682,8 +117700,8 @@ webhooks: - verified - created_at - read_only - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -117760,11 +117778,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - key: *694 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + key: *692 + organization: *683 + repository: *684 sender: *4 required: - action @@ -118336,12 +118354,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: &698 + workflow: &696 title: Workflow type: - object @@ -119079,13 +119097,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *467 + deployment: *465 pull_requests: type: array - items: *547 - repository: *686 - organization: *685 - installation: *684 + items: *545 + repository: *684 + organization: *683 + installation: *682 sender: *4 responses: '200': @@ -119156,7 +119174,7 @@ webhooks: type: string enum: - approved - approver: &695 + approver: &693 type: object properties: avatar_url: @@ -119199,11 +119217,11 @@ webhooks: type: string comment: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - reviewers: &696 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + reviewers: &694 type: array items: type: object @@ -119284,7 +119302,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &697 + workflow_job_run: &695 type: object properties: conclusion: @@ -120030,18 +120048,18 @@ webhooks: type: string enum: - rejected - approver: *695 + approver: *693 comment: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - reviewers: *696 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + reviewers: *694 sender: *4 since: type: string - workflow_job_run: *697 + workflow_job_run: *695 workflow_job_runs: type: array items: @@ -120758,13 +120776,13 @@ webhooks: type: string enum: - requested - enterprise: *683 + enterprise: *681 environment: type: string - installation: *684 - organization: *685 - repository: *686 - requestor: &703 + installation: *682 + organization: *683 + repository: *684 + requestor: &701 title: User type: - object @@ -122707,12 +122725,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Deployment Workflow Run type: @@ -123403,7 +123421,7 @@ webhooks: type: string enum: - answered - answer: &701 + answer: &699 type: object properties: author_association: @@ -123563,11 +123581,11 @@ webhooks: - created_at - updated_at - body - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123694,11 +123712,11 @@ webhooks: - from required: - category - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123781,11 +123799,11 @@ webhooks: type: string enum: - closed - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123867,7 +123885,7 @@ webhooks: type: string enum: - created - comment: &700 + comment: &698 type: object properties: author_association: @@ -124027,11 +124045,11 @@ webhooks: - updated_at - body - reactions - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124114,12 +124132,12 @@ webhooks: type: string enum: - deleted - comment: *700 - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + comment: *698 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124214,12 +124232,12 @@ webhooks: - from required: - body - comment: *700 - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + comment: *698 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124303,11 +124321,11 @@ webhooks: type: string enum: - created - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124389,11 +124407,11 @@ webhooks: type: string enum: - deleted - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124493,11 +124511,11 @@ webhooks: type: string required: - from - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124579,10 +124597,10 @@ webhooks: type: string enum: - labeled - discussion: *699 - enterprise: *683 - installation: *684 - label: &702 + discussion: *697 + enterprise: *681 + installation: *682 + label: &700 title: Label type: object properties: @@ -124615,8 +124633,8 @@ webhooks: - color - default - description - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124699,11 +124717,11 @@ webhooks: type: string enum: - locked - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124785,11 +124803,11 @@ webhooks: type: string enum: - pinned - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124871,11 +124889,11 @@ webhooks: type: string enum: - reopened - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124960,16 +124978,16 @@ webhooks: changes: type: object properties: - new_discussion: *699 - new_repository: *686 + new_discussion: *697 + new_repository: *684 required: - new_discussion - new_repository - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125052,10 +125070,10 @@ webhooks: type: string enum: - unanswered - discussion: *699 - old_answer: *701 - organization: *685 - repository: *686 + discussion: *697 + old_answer: *699 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125137,12 +125155,12 @@ webhooks: type: string enum: - unlabeled - discussion: *699 - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125225,11 +125243,11 @@ webhooks: type: string enum: - unlocked - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125311,11 +125329,11 @@ webhooks: type: string enum: - unpinned - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125388,7 +125406,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *683 + enterprise: *681 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126066,9 +126084,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - forkee @@ -126214,9 +126232,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pages: description: The pages that were updated. type: array @@ -126254,7 +126272,7 @@ webhooks: - action - sha - html_url - repository: *686 + repository: *684 sender: *4 required: - pages @@ -126330,10 +126348,10 @@ webhooks: type: string enum: - created - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: &704 + organization: *683 + repositories: &702 description: An array of repository objects that the installation can access. type: array @@ -126359,8 +126377,8 @@ webhooks: - name - full_name - private - repository: *686 - requester: *703 + repository: *684 + requester: *701 sender: *4 required: - action @@ -126435,11 +126453,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -126516,11 +126534,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -126597,10 +126615,10 @@ webhooks: type: string enum: - added - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories_added: &705 + organization: *683 + repositories_added: &703 description: An array of repository objects, which were added to the installation. type: array @@ -126646,15 +126664,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *686 - repository_selection: &706 + repository: *684 + repository_selection: &704 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *703 + requester: *701 sender: *4 required: - action @@ -126733,10 +126751,10 @@ webhooks: type: string enum: - removed - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories_added: *705 + organization: *683 + repositories_added: *703 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126763,9 +126781,9 @@ webhooks: - name - full_name - private - repository: *686 - repository_selection: *706 - requester: *703 + repository: *684 + repository_selection: *704 + requester: *701 sender: *4 required: - action @@ -126844,11 +126862,11 @@ webhooks: type: string enum: - suspend - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -127030,10 +127048,10 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 target_type: type: string @@ -127112,11 +127130,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -127364,8 +127382,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128182,8 +128200,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128200,7 +128218,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -128544,8 +128562,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -128625,7 +128643,7 @@ webhooks: type: string enum: - deleted - comment: &707 + comment: &705 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128792,8 +128810,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129606,8 +129624,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129624,7 +129642,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -129970,8 +129988,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -130051,7 +130069,7 @@ webhooks: type: string enum: - edited - changes: &731 + changes: &729 description: The changes to the comment. type: object properties: @@ -130063,9 +130081,9 @@ webhooks: type: string required: - from - comment: *707 - enterprise: *683 - installation: *684 + comment: *705 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130881,8 +130899,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130899,7 +130917,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -131243,8 +131261,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131334,9 +131352,9 @@ webhooks: type: number blocking_issue: *68 blocking_issue_repo: *66 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131430,9 +131448,9 @@ webhooks: type: number blocking_issue: *68 blocking_issue_repo: *66 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131525,9 +131543,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131621,9 +131639,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131708,10 +131726,10 @@ webhooks: type: string enum: - assigned - assignee: *703 - enterprise: *683 - installation: *684 - issue: &710 + assignee: *701 + enterprise: *681 + installation: *682 + issue: &708 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132523,11 +132541,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132544,7 +132562,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -132647,8 +132665,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -132728,8 +132746,8 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133546,11 +133564,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133567,7 +133585,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -133813,8 +133831,8 @@ webhooks: required: - state - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -133893,8 +133911,8 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134702,11 +134720,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134723,7 +134741,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -134825,8 +134843,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -134905,8 +134923,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135737,11 +135755,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135758,7 +135776,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -135839,7 +135857,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &708 + milestone: &706 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135982,8 +136000,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -136082,8 +136100,8 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136895,11 +136913,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136913,7 +136931,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -137019,9 +137037,9 @@ webhooks: - active_lock_reason - body - reactions - label: *702 - organization: *685 - repository: *686 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -137101,8 +137119,8 @@ webhooks: type: string enum: - labeled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137913,11 +137931,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137931,7 +137949,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -138037,9 +138055,9 @@ webhooks: - active_lock_reason - body - reactions - label: *702 - organization: *685 - repository: *686 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -138119,8 +138137,8 @@ webhooks: type: string enum: - locked - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138956,11 +138974,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138974,7 +138992,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -139057,8 +139075,8 @@ webhooks: format: uri user_view_type: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -139137,8 +139155,8 @@ webhooks: type: string enum: - milestoned - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139968,11 +139986,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139989,7 +140007,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -140069,9 +140087,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *708 - organization: *685 - repository: *686 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -140963,11 +140981,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141063,7 +141081,7 @@ webhooks: required: - login - id - type: *199 + type: *197 required: - id - number @@ -141544,8 +141562,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142357,11 +142375,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142378,7 +142396,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -142480,8 +142498,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -142561,9 +142579,9 @@ webhooks: type: string enum: - pinned - enterprise: *683 - installation: *684 - issue: &709 + enterprise: *681 + installation: *682 + issue: &707 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143369,11 +143387,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143390,7 +143408,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -143492,8 +143510,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -143572,8 +143590,8 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144407,11 +144425,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144508,9 +144526,9 @@ webhooks: format: uri user_view_type: type: string - type: *199 - organization: *685 - repository: *686 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -145399,11 +145417,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145420,7 +145438,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -146002,11 +146020,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *683 - installation: *684 - issue: *709 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *707 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146086,12 +146104,12 @@ webhooks: type: string enum: - typed - enterprise: *683 - installation: *684 - issue: *710 - type: *199 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146172,7 +146190,7 @@ webhooks: type: string enum: - unassigned - assignee: &734 + assignee: &732 title: User type: - object @@ -146244,11 +146262,11 @@ webhooks: required: - login - id - enterprise: *683 - installation: *684 - issue: *710 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146327,12 +146345,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *683 - installation: *684 - issue: *710 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146412,8 +146430,8 @@ webhooks: type: string enum: - unlocked - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147247,11 +147265,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147268,7 +147286,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -147348,8 +147366,8 @@ webhooks: format: uri user_view_type: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147429,11 +147447,11 @@ webhooks: type: string enum: - unpinned - enterprise: *683 - installation: *684 - issue: *709 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *707 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147512,12 +147530,12 @@ webhooks: type: string enum: - untyped - enterprise: *683 - installation: *684 - issue: *710 - type: *199 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147597,11 +147615,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147679,11 +147697,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147793,11 +147811,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147879,9 +147897,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: &711 + enterprise: *681 + installation: *682 + marketplace_purchase: &709 title: Marketplace Purchase type: object required: @@ -147969,8 +147987,8 @@ webhooks: type: integer unit_count: type: integer - organization: *685 - previous_marketplace_purchase: &712 + organization: *683 + previous_marketplace_purchase: &710 title: Marketplace Purchase type: object properties: @@ -148054,7 +148072,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148134,10 +148152,10 @@ webhooks: - changed effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148225,7 +148243,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148307,10 +148325,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148396,7 +148414,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148477,8 +148495,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 marketplace_purchase: title: Marketplace Purchase type: object @@ -148564,9 +148582,9 @@ webhooks: type: integer unit_count: type: integer - organization: *685 - previous_marketplace_purchase: *712 - repository: *686 + organization: *683 + previous_marketplace_purchase: *710 + repository: *684 sender: *4 required: - action @@ -148646,12 +148664,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 - previous_marketplace_purchase: *712 - repository: *686 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 + previous_marketplace_purchase: *710 + repository: *684 sender: *4 required: - action @@ -148753,11 +148771,11 @@ webhooks: type: string required: - to - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -148859,11 +148877,11 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -148942,11 +148960,11 @@ webhooks: type: string enum: - removed - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149024,11 +149042,11 @@ webhooks: type: string enum: - added - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149106,7 +149124,7 @@ webhooks: required: - login - id - team: &713 + team: &711 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149336,11 +149354,11 @@ webhooks: type: string enum: - removed - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149419,7 +149437,7 @@ webhooks: required: - login - id - team: *713 + team: *711 required: - action - scope @@ -149501,8 +149519,8 @@ webhooks: type: string enum: - checks_requested - installation: *684 - merge_group: &714 + installation: *682 + merge_group: &712 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149521,15 +149539,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *398 + head_commit: *396 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149615,10 +149633,10 @@ webhooks: - merged - invalidated - dequeued - installation: *684 - merge_group: *714 - organization: *685 - repository: *686 + installation: *682 + merge_group: *712 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149691,7 +149709,7 @@ webhooks: type: string enum: - deleted - enterprise: *683 + enterprise: *681 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149800,12 +149818,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *684 - organization: *685 + installation: *682 + organization: *683 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -149885,11 +149903,11 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149968,9 +149986,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - milestone: &715 + enterprise: *681 + installation: *682 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150112,8 +150130,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150192,11 +150210,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150306,11 +150324,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150390,11 +150408,11 @@ webhooks: type: string enum: - opened - enterprise: *683 - installation: *684 - milestone: *715 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *713 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150473,11 +150491,11 @@ webhooks: type: string enum: - blocked - blocked_user: *703 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + blocked_user: *701 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150556,11 +150574,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *703 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + blocked_user: *701 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150639,9 +150657,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - membership: &716 + enterprise: *681 + installation: *682 + membership: &714 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150751,8 +150769,8 @@ webhooks: - role - organization_url - user - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150830,11 +150848,11 @@ webhooks: type: string enum: - member_added - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150913,8 +150931,8 @@ webhooks: type: string enum: - member_invited - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151036,10 +151054,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 - user: *703 + user: *701 required: - action - invitation @@ -151117,11 +151135,11 @@ webhooks: type: string enum: - member_removed - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -151208,11 +151226,11 @@ webhooks: properties: from: type: string - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -151288,9 +151306,9 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 package: description: Information about the package. type: object @@ -151813,7 +151831,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &717 + items: &715 title: Ruby Gems metadata type: object properties: @@ -151910,7 +151928,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -151986,9 +152004,9 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 package: description: Information about the package. type: object @@ -152350,7 +152368,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *717 + items: *715 source_url: type: string format: uri @@ -152421,7 +152439,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -152602,12 +152620,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *683 + enterprise: *681 id: type: integer - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - id @@ -152684,7 +152702,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &718 + personal_access_token_request: &716 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152834,10 +152852,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *683 - organization: *685 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -152914,11 +152932,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *718 - enterprise: *683 - organization: *685 + personal_access_token_request: *716 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -152994,11 +153012,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *718 - enterprise: *683 - organization: *685 + personal_access_token_request: *716 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -153073,11 +153091,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *718 - organization: *685 - enterprise: *683 + personal_access_token_request: *716 + organization: *683 + enterprise: *681 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -153182,7 +153200,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *719 + last_response: *717 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153214,8 +153232,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 zen: description: Random string of GitHub zen. @@ -153460,10 +153478,10 @@ webhooks: - from required: - note - enterprise: *683 - installation: *684 - organization: *685 - project_card: &720 + enterprise: *681 + installation: *682 + organization: *683 + project_card: &718 title: Project Card type: object properties: @@ -153586,7 +153604,7 @@ webhooks: - creator - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -153667,11 +153685,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project_card: *720 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_card: *718 + repository: *684 sender: *4 required: - action @@ -153751,9 +153769,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 project_card: title: Project Card type: object @@ -153883,7 +153901,7 @@ webhooks: repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -153977,11 +153995,11 @@ webhooks: - from required: - note - enterprise: *683 - installation: *684 - organization: *685 - project_card: *720 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_card: *718 + repository: *684 sender: *4 required: - action @@ -154075,9 +154093,9 @@ webhooks: - from required: - column_id - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 project_card: allOf: - title: Project Card @@ -154274,7 +154292,7 @@ webhooks: type: string required: - after_id - repository: *686 + repository: *684 sender: *4 required: - action @@ -154354,10 +154372,10 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - organization: *685 - project: &722 + enterprise: *681 + installation: *682 + organization: *683 + project: &720 title: Project type: object properties: @@ -154484,7 +154502,7 @@ webhooks: - creator - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -154564,10 +154582,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project_column: &721 + enterprise: *681 + installation: *682 + organization: *683 + project_column: &719 title: Project Column type: object properties: @@ -154607,7 +154625,7 @@ webhooks: - name - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -154686,14 +154704,14 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -154782,11 +154800,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 + repository: *684 sender: *4 required: - action @@ -154866,11 +154884,11 @@ webhooks: type: string enum: - moved - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 + repository: *684 sender: *4 required: - action @@ -154950,11 +154968,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155034,14 +155052,14 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - project: *722 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -155142,11 +155160,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155225,11 +155243,11 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155310,9 +155328,9 @@ webhooks: type: string enum: - closed - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155393,9 +155411,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155476,9 +155494,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155599,9 +155617,9 @@ webhooks: type: string to: type: string - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155684,7 +155702,7 @@ webhooks: type: string enum: - archived - changes: &726 + changes: &724 type: object properties: archived_at: @@ -155700,9 +155718,9 @@ webhooks: - string - 'null' format: date-time - installation: *684 - organization: *685 - projects_v2_item: &723 + installation: *682 + organization: *683 + projects_v2_item: &721 title: Projects v2 Item description: An item belonging to a project type: object @@ -155720,7 +155738,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *240 + content_type: *238 creator: *4 created_at: type: string @@ -155842,9 +155860,9 @@ webhooks: - 'null' to: type: string - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -155926,9 +155944,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156009,9 +156027,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156116,7 +156134,7 @@ webhooks: oneOf: - type: string - type: integer - - &724 + - &722 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156140,7 +156158,7 @@ webhooks: required: - id - name - - &725 + - &723 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156180,8 +156198,8 @@ webhooks: oneOf: - type: string - type: integer - - *724 - - *725 + - *722 + - *723 type: - 'null' - string @@ -156204,9 +156222,9 @@ webhooks: - 'null' required: - body - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156303,9 +156321,9 @@ webhooks: type: - string - 'null' - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156388,10 +156406,10 @@ webhooks: type: string enum: - restored - changes: *726 - installation: *684 - organization: *685 - projects_v2_item: *723 + changes: *724 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156473,9 +156491,9 @@ webhooks: type: string enum: - reopened - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -156556,9 +156574,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156639,9 +156657,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156787,9 +156805,9 @@ webhooks: - string - 'null' format: date - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156860,10 +156878,10 @@ webhooks: title: public event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - repository @@ -156940,13 +156958,13 @@ webhooks: type: string enum: - assigned - assignee: *703 - enterprise: *683 - installation: *684 - number: &728 + assignee: *701 + enterprise: *681 + installation: *682 + number: &726 description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -159295,7 +159313,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -159377,11 +159395,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -161723,7 +161741,7 @@ webhooks: - draft reason: type: string - repository: *686 + repository: *684 sender: *4 required: - action @@ -161805,11 +161823,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -164151,7 +164169,7 @@ webhooks: - draft reason: type: string - repository: *686 + repository: *684 sender: *4 required: - action @@ -164233,13 +164251,13 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: &729 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: &727 allOf: - - *547 + - *545 - type: object properties: allow_auto_merge: @@ -164301,7 +164319,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *686 + repository: *684 sender: *4 required: - action @@ -164382,12 +164400,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -164467,11 +164485,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *683 - milestone: *238 - number: *728 - organization: *685 - pull_request: &730 + enterprise: *681 + milestone: *236 + number: *726 + organization: *683 + pull_request: &728 title: Pull Request type: object properties: @@ -166798,7 +166816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -166877,11 +166895,11 @@ webhooks: type: string enum: - dequeued - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -169227,7 +169245,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *686 + repository: *684 sender: *4 required: - action @@ -169351,12 +169369,12 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -169436,11 +169454,11 @@ webhooks: type: string enum: - enqueued - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -171771,7 +171789,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -171851,11 +171869,11 @@ webhooks: type: string enum: - labeled - enterprise: *683 - installation: *684 - label: *702 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + label: *700 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -174203,7 +174221,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -174284,10 +174302,10 @@ webhooks: type: string enum: - locked - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -176633,7 +176651,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -176713,12 +176731,12 @@ webhooks: type: string enum: - milestoned - enterprise: *683 - milestone: *238 - number: *728 - organization: *685 - pull_request: *730 - repository: *686 + enterprise: *681 + milestone: *236 + number: *726 + organization: *683 + pull_request: *728 + repository: *684 sender: *4 required: - action @@ -176797,12 +176815,12 @@ webhooks: type: string enum: - opened - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -176883,12 +176901,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -176968,12 +176986,12 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -177348,9 +177366,9 @@ webhooks: - start_side - side - reactions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -179580,7 +179598,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -179660,7 +179678,7 @@ webhooks: type: string enum: - deleted - comment: &732 + comment: &730 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179953,9 +179971,9 @@ webhooks: - start_side - side - reactions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -182173,7 +182191,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -182253,11 +182271,11 @@ webhooks: type: string enum: - edited - changes: *731 - comment: *732 - enterprise: *683 - installation: *684 - organization: *685 + changes: *729 + comment: *730 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -184478,7 +184496,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -184559,9 +184577,9 @@ webhooks: type: string enum: - dismissed - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -186794,7 +186812,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 review: description: The review that was affected. type: object @@ -187045,9 +187063,9 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -189161,8 +189179,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 - review: &733 + repository: *684 + review: &731 description: The review that was affected. type: object properties: @@ -189400,12 +189418,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -191752,7 +191770,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_reviewer: title: User type: @@ -191838,12 +191856,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -194197,7 +194215,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194392,12 +194410,12 @@ webhooks: type: string enum: - review_requested - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -196746,7 +196764,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_reviewer: title: User type: @@ -196833,12 +196851,12 @@ webhooks: type: string enum: - review_requested - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -199178,7 +199196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199362,9 +199380,9 @@ webhooks: type: string enum: - submitted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -201600,8 +201618,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 - review: *733 + repository: *684 + review: *731 sender: *4 required: - action @@ -201681,9 +201699,9 @@ webhooks: type: string enum: - resolved - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -203814,7 +203832,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 sender: *4 thread: type: object @@ -204211,9 +204229,9 @@ webhooks: type: string enum: - unresolved - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -206327,7 +206345,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 sender: *4 thread: type: object @@ -206726,10 +206744,10 @@ webhooks: type: string before: type: string - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -209064,7 +209082,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -209146,11 +209164,11 @@ webhooks: type: string enum: - unassigned - assignee: *734 - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + assignee: *732 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -211500,7 +211518,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -211579,11 +211597,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *683 - installation: *684 - label: *702 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + label: *700 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -213922,7 +213940,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -214003,10 +214021,10 @@ webhooks: type: string enum: - unlocked - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -216335,7 +216353,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -216538,7 +216556,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *683 + enterprise: *681 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216633,8 +216651,8 @@ webhooks: - url - author - committer - installation: *684 - organization: *685 + installation: *682 + organization: *683 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217222,9 +217240,9 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 registry_package: type: object properties: @@ -217701,7 +217719,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *717 + items: *715 summary: type: string tag_name: @@ -217757,7 +217775,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -217835,9 +217853,9 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 registry_package: type: object properties: @@ -218149,7 +218167,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *717 + items: *715 summary: type: string tag_name: @@ -218199,7 +218217,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -218276,10 +218294,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - release: &735 + enterprise: *681 + installation: *682 + organization: *683 + release: &733 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218610,7 +218628,7 @@ webhooks: - updated_at - zipball_url - body - repository: *686 + repository: *684 sender: *4 required: - action @@ -218687,11 +218705,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -218808,11 +218826,11 @@ webhooks: type: boolean required: - to - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -218890,9 +218908,9 @@ webhooks: type: string enum: - prereleased - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219228,7 +219246,7 @@ webhooks: - string - 'null' format: uri - repository: *686 + repository: *684 sender: *4 required: - action @@ -219304,10 +219322,10 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - release: &736 + enterprise: *681 + installation: *682 + organization: *683 + release: &734 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219640,7 +219658,7 @@ webhooks: - string - 'null' format: uri - repository: *686 + repository: *684 sender: *4 required: - action @@ -219716,11 +219734,11 @@ webhooks: type: string enum: - released - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -219796,11 +219814,11 @@ webhooks: type: string enum: - unpublished - enterprise: *683 - installation: *684 - organization: *685 - release: *736 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *734 + repository: *684 sender: *4 required: - action @@ -219876,11 +219894,11 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_advisory: *603 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_advisory: *601 sender: *4 required: - action @@ -219956,11 +219974,11 @@ webhooks: type: string enum: - reported - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_advisory: *603 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_advisory: *601 sender: *4 required: - action @@ -220036,10 +220054,10 @@ webhooks: type: string enum: - archived - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220116,10 +220134,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220197,10 +220215,10 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220285,10 +220303,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220403,10 +220421,10 @@ webhooks: - 'null' items: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220478,10 +220496,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 status: type: string @@ -220562,10 +220580,10 @@ webhooks: type: string enum: - privatized - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220642,10 +220660,10 @@ webhooks: type: string enum: - publicized - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220739,10 +220757,10 @@ webhooks: - name required: - repository - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220822,11 +220840,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 sender: *4 required: - action @@ -220904,11 +220922,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 sender: *4 required: - action @@ -220986,11 +221004,11 @@ webhooks: type: string enum: - edited - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 changes: type: object properties: @@ -221009,16 +221027,16 @@ webhooks: properties: added: type: array - items: *251 + items: *249 deleted: type: array - items: *251 + items: *249 updated: type: array items: type: object properties: - condition: *251 + condition: *249 changes: type: object properties: @@ -221051,16 +221069,16 @@ webhooks: properties: added: type: array - items: *568 + items: *566 deleted: type: array - items: *568 + items: *566 updated: type: array items: type: object properties: - rule: *568 + rule: *566 changes: type: object properties: @@ -221297,10 +221315,10 @@ webhooks: - from required: - owner - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221378,10 +221396,10 @@ webhooks: type: string enum: - unarchived - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221459,7 +221477,7 @@ webhooks: type: string enum: - create - alert: &737 + alert: &735 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221583,10 +221601,10 @@ webhooks: type: string enum: - open - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221796,10 +221814,10 @@ webhooks: type: string enum: - dismissed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221877,11 +221895,11 @@ webhooks: type: string enum: - reopen - alert: *737 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *735 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222083,10 +222101,10 @@ webhooks: enum: - fixed - open - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222164,7 +222182,7 @@ webhooks: type: string enum: - created - alert: &738 + alert: &736 type: object properties: number: *52 @@ -222278,10 +222296,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222362,11 +222380,11 @@ webhooks: type: string enum: - created - alert: *738 - installation: *684 - location: *739 - organization: *685 - repository: *686 + alert: *736 + installation: *682 + location: *737 + organization: *683 + repository: *684 sender: *4 required: - location @@ -222604,11 +222622,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222686,11 +222704,11 @@ webhooks: type: string enum: - reopened - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222768,11 +222786,11 @@ webhooks: type: string enum: - resolved - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222850,11 +222868,11 @@ webhooks: type: string enum: - validated - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222984,10 +223002,10 @@ webhooks: - organization - enterprise - - repository: *686 - enterprise: *683 - installation: *684 - organization: *685 + repository: *684 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -223065,11 +223083,11 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - security_advisory: &740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + security_advisory: &738 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223255,11 +223273,11 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - security_advisory: *740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + security_advisory: *738 sender: *4 required: - action @@ -223332,10 +223350,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223521,11 +223539,11 @@ webhooks: from: type: object properties: - security_and_analysis: *250 - enterprise: *683 - installation: *684 - organization: *685 - repository: *322 + security_and_analysis: *248 + enterprise: *681 + installation: *682 + organization: *683 + repository: *320 sender: *4 required: - changes @@ -223603,12 +223621,12 @@ webhooks: type: string enum: - cancelled - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: &741 + sponsorship: &739 type: object properties: created_at: @@ -223913,12 +223931,12 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - sponsorship @@ -224006,12 +224024,12 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224088,17 +224106,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &742 + effective_date: &740 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: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - sponsorship @@ -224172,7 +224190,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &743 + changes: &741 type: object properties: tier: @@ -224216,13 +224234,13 @@ webhooks: - from required: - tier - effective_date: *742 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + effective_date: *740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224299,13 +224317,13 @@ webhooks: type: string enum: - tier_changed - changes: *743 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + changes: *741 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224379,10 +224397,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224466,10 +224484,10 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224903,15 +224921,15 @@ webhooks: type: - string - 'null' - enterprise: *683 + enterprise: *681 id: description: The unique identifier of the status. type: integer - installation: *684 + installation: *682 name: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 sha: description: The Commit SHA. @@ -225027,9 +225045,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225119,9 +225137,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225211,9 +225229,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225303,9 +225321,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225382,12 +225400,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - team: &744 + team: &742 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225617,9 +225635,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -226089,7 +226107,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -226165,9 +226183,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -226637,7 +226655,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -226714,9 +226732,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -227186,7 +227204,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -227330,9 +227348,9 @@ webhooks: - from required: - permissions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -227802,7 +227820,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - changes @@ -227880,9 +227898,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -228352,7 +228370,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -228428,10 +228446,10 @@ webhooks: type: string enum: - started - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -228504,17 +228522,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *683 + enterprise: *681 inputs: type: - object - 'null' additionalProperties: true - installation: *684 - organization: *685 + installation: *682 + organization: *683 ref: type: string - repository: *686 + repository: *684 sender: *4 workflow: type: string @@ -228596,10 +228614,10 @@ webhooks: type: string enum: - completed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: allOf: @@ -228855,7 +228873,7 @@ webhooks: type: string required: - conclusion - deployment: *467 + deployment: *465 required: - action - repository @@ -228934,10 +228952,10 @@ webhooks: type: string enum: - in_progress - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: allOf: @@ -229219,7 +229237,7 @@ webhooks: required: - status - steps - deployment: *467 + deployment: *465 required: - action - repository @@ -229298,10 +229316,10 @@ webhooks: type: string enum: - queued - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: type: object @@ -229447,7 +229465,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *467 + deployment: *465 required: - action - repository @@ -229526,10 +229544,10 @@ webhooks: type: string enum: - waiting - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: type: object @@ -229676,7 +229694,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *467 + deployment: *465 required: - action - repository @@ -229756,12 +229774,12 @@ webhooks: type: string enum: - completed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -230780,12 +230798,12 @@ webhooks: type: string enum: - in_progress - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -231789,12 +231807,12 @@ webhooks: type: string enum: - requested - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 4fd58eb26..529b59fb2 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -22616,29 +22616,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -76364,7 +76341,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -97158,6 +97135,110 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "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 results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "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 results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -115170,29 +115251,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -171836,7 +171894,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -171844,10 +171902,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -353327,16 +353382,6 @@ "default": "desc" } }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -353364,29 +353409,6 @@ "schema": { "type": "string" } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { @@ -739040,7 +739062,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -739048,10 +739070,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -776666,7 +776685,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 0aad05175..a17d0e4af 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &292 + type: &290 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &605 + - &603 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1656,7 +1656,7 @@ paths: schema: type: integer default: 30 - - &177 + - &175 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1672,7 +1672,7 @@ paths: application/json: schema: type: array - items: &178 + items: &176 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1768,7 +1768,7 @@ paths: - installation_id - repository_id examples: - default: &179 + default: &177 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1903,7 +1903,7 @@ paths: description: Response content: application/json: - schema: &180 + schema: &178 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2038,7 +2038,7 @@ paths: - request - response examples: - default: &181 + default: &179 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8959,7 +8959,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &458 + - &456 name: has in: query description: |- @@ -9001,31 +9001,6 @@ paths: - *46 - *38 - *39 - - &169 - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - - &170 - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - *17 responses: '200': @@ -9034,7 +9009,7 @@ paths: application/json: schema: type: array - items: &171 + items: &169 type: object description: A Dependabot alert. properties: @@ -9104,7 +9079,7 @@ paths: - direct - transitive - - security_advisory: &459 + security_advisory: &457 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9372,7 +9347,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &460 + auto_dismissed_at: &458 type: - string - 'null' @@ -9399,7 +9374,7 @@ paths: - repository additionalProperties: false examples: - default: &172 + default: &170 value: - number: 2 state: dismissed @@ -9746,7 +9721,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *40 - - &280 + - &278 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9757,7 +9732,7 @@ paths: enum: - open - resolved - - &281 + - &279 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9767,7 +9742,7 @@ paths: required: false schema: type: string - - &282 + - &280 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9776,7 +9751,7 @@ paths: required: false schema: type: string - - &283 + - &281 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. @@ -9792,7 +9767,7 @@ paths: - *17 - *38 - *39 - - &284 + - &282 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9801,7 +9776,7 @@ paths: required: false schema: type: string - - &285 + - &283 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9810,7 +9785,7 @@ paths: schema: type: boolean default: false - - &286 + - &284 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9819,7 +9794,7 @@ paths: schema: type: boolean default: false - - &287 + - &285 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -9835,7 +9810,7 @@ paths: application/json: schema: type: array - items: &288 + items: &286 type: object properties: number: *52 @@ -9851,14 +9826,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &583 + state: &581 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: &584 + resolution: &582 type: - string - 'null' @@ -9965,14 +9940,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &585 + - &583 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &587 + - &585 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -10029,7 +10004,7 @@ paths: - blob_url - commit_sha - commit_url - - &588 + - &586 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. @@ -10090,7 +10065,7 @@ paths: - page_url - commit_sha - commit_url - - &589 + - &587 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -10105,7 +10080,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &590 + - &588 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -10120,7 +10095,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &591 + - &589 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -10135,7 +10110,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &592 + - &590 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -10150,7 +10125,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &593 + - &591 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -10165,7 +10140,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &594 + - &592 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -10180,7 +10155,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &595 + - &593 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. @@ -10195,7 +10170,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &596 + - &594 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. @@ -10210,7 +10185,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &597 + - &595 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. @@ -10225,7 +10200,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &598 + - &596 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. @@ -10240,7 +10215,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &599 + - &597 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 @@ -10265,7 +10240,7 @@ paths: - type: 'null' - *4 examples: - default: &289 + default: &287 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -11145,7 +11120,7 @@ paths: properties: action: type: string - discussion: &699 + discussion: &697 title: Discussion description: A Discussion in a repository. type: object @@ -11648,7 +11623,7 @@ paths: milestone: anyOf: - type: 'null' - - &238 + - &236 title: Milestone description: A collection of related issues and pull requests. @@ -11820,7 +11795,7 @@ paths: timeline_url: type: string format: uri - type: &199 + type: &197 title: Issue Type description: The type of issue. type: @@ -11931,7 +11906,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &617 + sub_issues_summary: &615 title: Sub-issues Summary type: object properties: @@ -11952,7 +11927,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &618 + issue_dependencies_summary: &616 title: Issue Dependencies Summary type: object properties: @@ -11971,7 +11946,7 @@ paths: - total_blocking issue_field_values: type: array - items: &619 + items: &617 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12084,7 +12059,7 @@ paths: action: type: string issue: *68 - comment: &506 + comment: &504 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12807,7 +12782,7 @@ paths: type: string release: allOf: - - &558 + - &556 title: Release description: A release. type: object @@ -12889,7 +12864,7 @@ paths: author: *4 assets: type: array - items: &559 + items: &557 title: Release Asset description: Data related to a release. type: object @@ -13480,7 +13455,7 @@ paths: url: type: string format: uri - user: &631 + user: &629 title: Public User description: Public User type: object @@ -15375,7 +15350,7 @@ paths: - closed - all default: open - - &202 + - &200 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15426,7 +15401,7 @@ paths: type: array items: *68 examples: - default: &203 + default: &201 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16838,14 +16813,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &314 + - &312 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &315 + - &313 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16907,7 +16882,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &323 + '301': &321 description: Moved permanently content: application/json: @@ -16929,7 +16904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &534 + - &532 name: all description: If `true`, show notifications marked as read. in: query @@ -16937,7 +16912,7 @@ paths: schema: type: boolean default: false - - &535 + - &533 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16947,7 +16922,7 @@ paths: type: boolean default: false - *75 - - &536 + - &534 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: @@ -17318,7 +17293,7 @@ paths: type: boolean examples: - false - security_and_analysis: &250 + security_and_analysis: &248 type: - object - 'null' @@ -17483,7 +17458,7 @@ paths: - url - subscription_url examples: - default: &537 + default: &535 value: - id: '1' repository: @@ -18104,7 +18079,7 @@ paths: - avatar_url - description examples: - default: &647 + default: &645 value: - login: github id: 1 @@ -18404,9 +18379,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -18424,7 +18400,7 @@ paths: required: false schema: type: integer - - &673 + - &671 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18448,14 +18424,14 @@ paths: required: false schema: type: string - - &674 + - &672 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &675 + - &673 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18594,7 +18570,7 @@ paths: parameters: - *99 - *101 - - &678 + - &676 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 @@ -18604,7 +18580,7 @@ paths: schema: type: integer - *102 - - &679 + - &677 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -19556,7 +19532,7 @@ paths: type: integer repository_cache_usages: type: array - items: &328 + items: &326 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20453,7 +20429,7 @@ paths: - all - local_only - selected - selected_actions_url: &334 + selected_actions_url: &332 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -20536,7 +20512,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &336 type: object properties: days: @@ -20578,7 +20554,7 @@ paths: required: true content: application/json: - schema: &339 + schema: &337 type: object properties: days: @@ -20635,7 +20611,7 @@ paths: required: - approval_policy examples: - default: &340 + default: &338 value: approval_policy: first_time_contributors '404': *6 @@ -20694,7 +20670,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &339 type: object required: - run_workflows_from_fork_pull_requests @@ -20748,7 +20724,7 @@ paths: required: true content: application/json: - schema: &342 + schema: &340 type: object required: - run_workflows_from_fork_pull_requests @@ -21383,7 +21359,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &341 type: object properties: default_workflow_permissions: &124 @@ -21434,7 +21410,7 @@ paths: required: false content: application/json: - schema: &344 + schema: &342 type: object properties: default_workflow_permissions: *124 @@ -21927,7 +21903,7 @@ paths: type: array items: *131 examples: - default: &634 + default: &632 value: total_count: 1 repositories: @@ -22574,7 +22550,7 @@ paths: application/json: schema: type: array - items: &345 + items: &343 title: Runner Application description: Runner Application type: object @@ -22599,7 +22575,7 @@ paths: - download_url - filename examples: - default: &346 + default: &344 value: - os: osx architecture: x64 @@ -22685,7 +22661,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &347 + '201': &345 description: Response content: application/json: @@ -22800,7 +22776,7 @@ paths: - token - expires_at examples: - default: &348 + default: &346 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22839,7 +22815,7 @@ paths: application/json: schema: *135 examples: - default: &349 + default: &347 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22873,7 +22849,7 @@ paths: application/json: schema: *133 examples: - default: &350 + default: &348 value: id: 23 name: MBP @@ -23099,7 +23075,7 @@ paths: - *99 - *132 responses: - '200': &351 + '200': &349 description: Response content: application/json: @@ -23156,7 +23132,7 @@ paths: parameters: - *99 - *132 - - &352 + - &350 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23288,7 +23264,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &362 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23323,7 +23299,7 @@ paths: - key_id - key examples: - default: &365 + default: &363 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23736,7 +23712,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *99 - - &333 + - &331 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -24471,12 +24447,12 @@ paths: required: - subject_digests examples: - default: &662 + default: &660 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &663 + withPredicateType: &661 value: subject_digests: - sha256:abc123 @@ -24535,7 +24511,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &664 + default: &662 value: attestations_subject_digests: - sha256:abc: @@ -24728,6 +24704,57 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/orgs#list-attestation-repositories + parameters: + - *17 + - *38 + - *39 + - *99 + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + value: + - id: 123 + name: foo + - id: 456 + name: bar + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -24831,7 +24858,7 @@ paths: initiator: type: string examples: - default: &378 + default: &376 value: attestations: - bundle: @@ -25184,7 +25211,7 @@ paths: parent: anyOf: - type: 'null' - - &214 + - &212 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -25781,7 +25808,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *99 - - &402 + - &400 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -25791,7 +25818,7 @@ paths: schema: &149 type: string description: The name of the tool used to generate the code scanning analysis. - - &403 + - &401 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -25815,7 +25842,7 @@ paths: be returned. in: query required: false - schema: &405 + schema: &403 type: string description: State of a code scanning alert. enum: @@ -25838,7 +25865,7 @@ paths: be returned. in: query required: false - schema: &406 + schema: &404 type: string description: Severity of a code scanning alert. enum: @@ -25864,7 +25891,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &407 + instances_url: &405 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -25886,7 +25913,7 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: &408 + dismissed_reason: &406 type: - string - 'null' @@ -25897,14 +25924,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &409 + dismissed_comment: &407 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &410 + rule: &408 type: object properties: id: @@ -25965,7 +25992,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &411 + tool: &409 type: object properties: name: *149 @@ -25976,15 +26003,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *150 - most_recent_instance: &412 + most_recent_instance: &410 type: object properties: - ref: &404 + ref: &402 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &422 + analysis_key: &420 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -25995,7 +26022,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &423 + category: &421 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -27288,7 +27315,7 @@ paths: type: integer codespaces: type: array - items: &204 + items: &202 type: object title: Codespace description: A codespace. @@ -27323,7 +27350,7 @@ paths: machine: anyOf: - type: 'null' - - &435 + - &433 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -27610,7 +27637,7 @@ paths: - pulls_url - recent_folders examples: - default: &205 + default: &203 value: total_count: 3 codespaces: @@ -28275,7 +28302,7 @@ paths: - updated_at - visibility examples: - default: &436 + default: &434 value: total_count: 2 secrets: @@ -28313,7 +28340,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &435 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -28348,7 +28375,7 @@ paths: - key_id - key examples: - default: &438 + default: &436 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28380,7 +28407,7 @@ paths: application/json: schema: *159 examples: - default: &440 + default: &438 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28847,7 +28874,7 @@ paths: currently being billed. seats: type: array - items: &207 + items: &205 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29378,7 +29405,7 @@ paths: application/json: schema: type: array - items: &296 + items: &294 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -29693,7 +29720,7 @@ paths: - date additionalProperties: true examples: - default: &297 + default: &295 value: - date: '2024-06-24' total_active_users: 24 @@ -29795,7 +29822,7 @@ paths: '500': *100 '403': *27 '404': *6 - '422': &298 + '422': &296 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -29870,8 +29897,6 @@ paths: - *46 - *38 - *39 - - *169 - - *170 - *17 responses: '200': @@ -29880,9 +29905,9 @@ paths: application/json: schema: type: array - items: *171 + items: *169 examples: - default: *172 + default: *170 '304': *35 '400': *14 '403': *27 @@ -29926,7 +29951,7 @@ paths: type: integer secrets: type: array - items: &173 + items: &171 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30005,7 +30030,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &461 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30024,7 +30049,7 @@ paths: - key_id - key examples: - default: &464 + default: &462 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30054,7 +30079,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *171 examples: default: value: @@ -30355,7 +30380,7 @@ paths: application/json: schema: type: array - items: &216 + items: &214 title: Package description: A software package type: object @@ -30426,7 +30451,7 @@ paths: - created_at - updated_at examples: - default: &217 + default: &215 value: - id: 197 name: hello_docker @@ -30596,7 +30621,7 @@ paths: application/json: schema: type: array - items: &196 + items: &194 title: Organization Invitation description: Organization Invitation type: object @@ -30650,7 +30675,7 @@ paths: - invitation_teams_url - node_id examples: - default: &197 + default: &195 value: - id: 1 login: monalisa @@ -30717,7 +30742,7 @@ paths: application/json: schema: type: array - items: &174 + items: &172 title: Org Hook description: Org Hook type: object @@ -30902,9 +30927,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: - default: &175 + default: &173 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -30952,7 +30977,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *99 - - &176 + - &174 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -30965,9 +30990,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: - default: *175 + default: *173 '404': *6 x-github: githubCloudOnly: false @@ -30995,7 +31020,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *99 - - *176 + - *174 requestBody: required: false content: @@ -31041,7 +31066,7 @@ paths: description: Response content: application/json: - schema: *174 + schema: *172 examples: default: value: @@ -31083,7 +31108,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *99 - - *176 + - *174 responses: '204': description: Response @@ -31111,7 +31136,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *99 - - *176 + - *174 responses: '200': description: Response @@ -31142,7 +31167,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *99 - - *176 + - *174 requestBody: required: false content: @@ -31193,9 +31218,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *17 - - *177 + - *175 responses: '200': description: Response @@ -31203,9 +31228,9 @@ paths: application/json: schema: type: array - items: *178 + items: *176 examples: - default: *179 + default: *177 '400': *14 '422': *15 x-github: @@ -31231,16 +31256,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *16 responses: '200': description: Response content: application/json: - schema: *180 + schema: *178 examples: - default: *181 + default: *179 '400': *14 '422': *15 x-github: @@ -31266,7 +31291,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *99 - - *176 + - *174 - *16 responses: '202': *37 @@ -31296,7 +31321,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *99 - - *176 + - *174 responses: '204': description: Response @@ -31319,7 +31344,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *99 - - &186 + - &184 name: actor_type in: path description: The type of the actor @@ -31332,14 +31357,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &187 + - &185 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &182 + - &180 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -31347,7 +31372,7 @@ paths: required: true schema: type: string - - &183 + - &181 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -31442,12 +31467,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *99 - - *182 - - *183 + - *180 + - *181 - *19 - *17 - *46 - - &192 + - &190 name: sort description: The property to sort the results by. in: query @@ -31527,14 +31552,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *99 - - *182 - - *183 + - *180 + - *181 responses: '200': description: Response content: application/json: - schema: &184 + schema: &182 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -31550,7 +31575,7 @@ paths: type: integer format: int64 examples: - default: &185 + default: &183 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -31571,23 +31596,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *99 - - &188 + - &186 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *182 - - *183 + - *180 + - *181 responses: '200': description: Response content: application/json: - schema: *184 + schema: *182 examples: - default: *185 + default: *183 x-github: enabledForGitHubApps: true category: orgs @@ -31606,18 +31631,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *99 - - *182 - - *183 - - *186 - - *187 + - *180 + - *181 + - *184 + - *185 responses: '200': description: Response content: application/json: - schema: *184 + schema: *182 examples: - default: *185 + default: *183 x-github: enabledForGitHubApps: true category: orgs @@ -31635,9 +31660,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *99 - - *182 - - *183 - - &189 + - *180 + - *181 + - &187 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -31650,7 +31675,7 @@ paths: description: Response content: application/json: - schema: &190 + schema: &188 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -31666,7 +31691,7 @@ paths: type: integer format: int64 examples: - default: &191 + default: &189 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -31703,18 +31728,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *99 - - *188 - - *182 - - *183 - - *189 + - *186 + - *180 + - *181 + - *187 responses: '200': description: Response content: application/json: - schema: *190 + schema: *188 examples: - default: *191 + default: *189 x-github: enabledForGitHubApps: true category: orgs @@ -31732,19 +31757,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *99 - - *186 + - *184 + - *185 + - *180 + - *181 - *187 - - *182 - - *183 - - *189 responses: '200': description: Response content: application/json: - schema: *190 + schema: *188 examples: - default: *191 + default: *189 x-github: enabledForGitHubApps: true category: orgs @@ -31762,13 +31787,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *99 - - *188 - - *182 - - *183 + - *186 + - *180 + - *181 - *19 - *17 - *46 - - *192 + - *190 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -31852,7 +31877,7 @@ paths: application/json: schema: *20 examples: - default: &502 + default: &500 value: id: 1 account: @@ -32018,12 +32043,12 @@ paths: application/json: schema: anyOf: - - &194 + - &192 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &193 + limit: &191 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32051,7 +32076,7 @@ paths: properties: {} additionalProperties: false examples: - default: &195 + default: &193 value: limit: collaborators_only origin: organization @@ -32080,13 +32105,13 @@ paths: required: true content: application/json: - schema: &503 + schema: &501 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *193 + limit: *191 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32111,9 +32136,9 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: - default: *195 + default: *193 '422': *15 x-github: githubCloudOnly: false @@ -32189,9 +32214,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 '404': *6 @@ -32268,7 +32293,7 @@ paths: description: Response content: application/json: - schema: *196 + schema: *194 examples: default: value: @@ -32323,7 +32348,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *99 - - &198 + - &196 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32354,7 +32379,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *99 - - *198 + - *196 - *17 - *19 responses: @@ -32366,7 +32391,7 @@ paths: type: array items: *161 examples: - default: &215 + default: &213 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32409,7 +32434,7 @@ paths: application/json: schema: type: array - items: *199 + items: *197 examples: default: value: @@ -32497,9 +32522,9 @@ paths: description: Response content: application/json: - schema: *199 + schema: *197 examples: - default: &200 + default: &198 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -32532,7 +32557,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *99 - - &201 + - &199 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -32588,9 +32613,9 @@ paths: description: Response content: application/json: - schema: *199 + schema: *197 examples: - default: *200 + default: *198 '404': *6 '422': *7 x-github: @@ -32615,7 +32640,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *99 - - *201 + - *199 responses: '204': description: Response @@ -32678,7 +32703,7 @@ paths: - closed - all default: open - - *202 + - *200 - name: type description: Can be the name of an issue type. in: query @@ -32709,7 +32734,7 @@ paths: type: array items: *68 examples: - default: *203 + default: *201 headers: Link: *57 '404': *6 @@ -32868,9 +32893,9 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: - default: *205 + default: *203 '304': *35 '500': *100 '401': *23 @@ -32897,7 +32922,7 @@ paths: parameters: - *99 - *62 - - &206 + - &204 name: codespace_name in: path required: true @@ -32932,15 +32957,15 @@ paths: parameters: - *99 - *62 - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: &434 + default: &432 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -33120,7 +33145,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *207 + schema: *205 examples: default: value: @@ -33196,7 +33221,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &206 title: Org Membership description: Org Membership type: object @@ -33265,7 +33290,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &209 + response-if-user-has-an-active-admin-membership-with-organization: &207 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -33362,9 +33387,9 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: - response-if-user-already-had-membership-with-organization: *209 + response-if-user-already-had-membership-with-organization: *207 '422': *15 '403': *27 x-github: @@ -33436,7 +33461,7 @@ paths: application/json: schema: type: array - items: &210 + items: &208 title: Migration description: A migration. type: object @@ -33774,7 +33799,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -33953,7 +33978,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *99 - - &211 + - &209 name: migration_id description: The unique identifier of the migration. in: path @@ -33981,7 +34006,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -34151,7 +34176,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *99 - - *211 + - *209 responses: '302': description: Response @@ -34173,7 +34198,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *99 - - *211 + - *209 responses: '204': description: Response @@ -34197,8 +34222,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *99 - - *211 - - &646 + - *209 + - &644 name: repo_name description: repo_name parameter in: path @@ -34226,7 +34251,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *99 - - *211 + - *209 - *17 - *19 responses: @@ -34238,7 +34263,7 @@ paths: type: array items: *131 examples: - default: &222 + default: &220 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34391,7 +34416,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &213 + items: &211 title: Organization Role description: Organization roles type: object @@ -34568,7 +34593,7 @@ paths: parameters: - *99 - *64 - - &212 + - &210 name: role_id description: The unique identifier of the role. in: path @@ -34605,7 +34630,7 @@ paths: parameters: - *99 - *64 - - *212 + - *210 responses: '204': description: Response @@ -34658,7 +34683,7 @@ paths: parameters: - *99 - *62 - - *212 + - *210 responses: '204': description: Response @@ -34690,7 +34715,7 @@ paths: parameters: - *99 - *62 - - *212 + - *210 responses: '204': description: Response @@ -34719,13 +34744,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *99 - - *212 + - *210 responses: '200': description: Response content: application/json: - schema: *213 + schema: *211 examples: default: value: @@ -34776,7 +34801,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *99 - - *212 + - *210 - *17 - *19 responses: @@ -34855,7 +34880,7 @@ paths: parent: anyOf: - type: 'null' - - *214 + - *212 type: description: The ownership type of the team type: string @@ -34888,7 +34913,7 @@ paths: - type - parent examples: - default: *215 + default: *213 headers: Link: *57 '404': @@ -34918,7 +34943,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *99 - - *212 + - *210 - *17 - *19 responses: @@ -34947,7 +34972,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *214 + items: *212 name: type: - string @@ -35257,7 +35282,7 @@ paths: - nuget - container - *99 - - &648 + - &646 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35293,12 +35318,12 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *217 + default: *215 '403': *27 '401': *23 - '400': &650 + '400': &648 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -35320,7 +35345,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &218 + - &216 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -35338,7 +35363,7 @@ paths: - docker - nuget - container - - &219 + - &217 name: package_name description: The name of the package. in: path @@ -35351,7 +35376,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *214 examples: default: value: @@ -35403,8 +35428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 responses: '204': @@ -35437,8 +35462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - name: token description: package token @@ -35471,8 +35496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - *19 - *17 @@ -35493,7 +35518,7 @@ paths: application/json: schema: type: array - items: &220 + items: &218 title: Package Version description: A version of a software package type: object @@ -35628,10 +35653,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - &221 + - &219 name: package_version_id description: Unique identifier of the package version. in: path @@ -35643,7 +35668,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -35679,10 +35704,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - *221 + - *219 responses: '204': description: Response @@ -35714,10 +35739,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *218 - - *219 + - *216 + - *217 - *99 - - *221 + - *219 responses: '204': description: Response @@ -35747,7 +35772,7 @@ paths: - *99 - *17 - *19 - - &223 + - &221 name: sort description: The property by which to sort the results. in: query @@ -35758,7 +35783,7 @@ paths: - created_at default: created_at - *46 - - &224 + - &222 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -35770,7 +35795,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &225 + - &223 name: repository description: The name of the repository to use to filter the results. in: query @@ -35779,7 +35804,7 @@ paths: type: string examples: - Hello-World - - &226 + - &224 name: permission description: The permission to use to filter the results. in: query @@ -35788,7 +35813,7 @@ paths: type: string examples: - issues_read - - &227 + - &225 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35798,7 +35823,7 @@ paths: schema: type: string format: date-time - - &228 + - &226 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35808,7 +35833,7 @@ paths: schema: type: string format: date-time - - &229 + - &227 name: token_id description: The ID of the token in: query @@ -36127,7 +36152,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -36153,14 +36178,14 @@ paths: - *99 - *17 - *19 - - *223 + - *221 - *46 + - *222 + - *223 - *224 - *225 - *226 - *227 - - *228 - - *229 responses: '500': *100 '422': *15 @@ -36444,7 +36469,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -36486,7 +36511,7 @@ paths: type: integer configurations: type: array - items: &230 + items: &228 title: Organization private registry description: Private registry configuration for an organization type: object @@ -36745,7 +36770,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &231 + org-private-registry-with-selected-visibility: &229 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -36843,9 +36868,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *230 + schema: *228 examples: - default: *231 + default: *229 '404': *6 x-github: githubCloudOnly: false @@ -37010,7 +37035,7 @@ paths: application/json: schema: type: array - items: &232 + items: &230 title: Project description: Projects are a way to organize columns and cards of work. @@ -37192,7 +37217,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: default: value: @@ -37230,7 +37255,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &320 + '410': &318 description: Gone content: application/json: @@ -37273,7 +37298,7 @@ paths: application/json: schema: type: array - items: &233 + items: &231 title: Projects v2 Project description: A projects v2 project type: object @@ -37347,7 +37372,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &727 + - &725 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -37432,7 +37457,7 @@ paths: - deleted_at - deleted_by examples: - default: &234 + default: &232 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -37535,7 +37560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &235 + - &233 name: project_number description: The project's number. in: path @@ -37548,9 +37573,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -37572,7 +37597,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *235 + - *233 - *99 - *17 - *38 @@ -37584,7 +37609,7 @@ paths: application/json: schema: type: array - items: &236 + items: &234 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -37734,7 +37759,7 @@ paths: - updated_at - project_url examples: - default: &237 + default: &235 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37777,8 +37802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *235 - - &667 + - *233 + - &665 name: field_id description: The unique identifier of the field. in: path @@ -37791,9 +37816,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -37816,7 +37841,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *235 + - *233 - *99 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -37826,8 +37851,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -37835,8 +37862,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - *38 - *39 - *17 @@ -37847,7 +37872,7 @@ paths: application/json: schema: type: array - items: &242 + items: &240 title: Projects v2 Item description: An item belonging to a project type: object @@ -37864,7 +37889,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &240 + content_type: &238 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -37921,7 +37946,7 @@ paths: - updated_at - archived_at examples: - default: &243 + default: &241 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -38616,7 +38641,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *99 - - *235 + - *233 requestBody: required: true description: Details of the item to add to the project. @@ -38653,7 +38678,7 @@ paths: description: Response content: application/json: - schema: &668 + schema: &666 title: Projects v2 Item description: An item belonging to a project type: object @@ -38667,7 +38692,7 @@ paths: content: oneOf: - *68 - - &447 + - &445 title: Pull Request Simple description: Pull Request Simple type: object @@ -38787,7 +38812,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 active_lock_reason: type: - string @@ -38886,7 +38911,7 @@ paths: _links: type: object properties: - comments: &239 + comments: &237 title: Link description: Hypermedia Link type: object @@ -38895,13 +38920,13 @@ paths: type: string required: - href - commits: *239 - statuses: *239 - html: *239 - issue: *239 - review_comments: *239 - review_comment: *239 - self: *239 + commits: *237 + statuses: *237 + html: *237 + issue: *237 + review_comments: *237 + review_comment: *237 + self: *237 required: - comments - commits @@ -38912,7 +38937,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: &544 + auto_merge: &542 title: Auto merge description: The status of auto merging a pull request. type: @@ -39014,7 +39039,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *240 + content_type: *238 creator: *4 created_at: type: string @@ -39051,7 +39076,7 @@ paths: - updated_at - archived_at examples: - issue: &241 + issue: &239 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39106,7 +39131,7 @@ paths: archived_at: project_url: https://api.github.com/users/octocat/projectsV2/1 item_url: https://api.github.com/users/octocat/projectsV2/items/17 - pull_request: *241 + pull_request: *239 '304': *35 '403': *27 '401': *23 @@ -39126,9 +39151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *235 + - *233 - *99 - - &244 + - &242 name: item_id description: The unique identifier of the project item. in: path @@ -39152,9 +39177,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -39175,9 +39200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *235 + - *233 - *99 - - *244 + - *242 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -39250,13 +39275,13 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - text_field: *243 - number_field: *243 - date_field: *243 - single_select_field: *243 - iteration_field: *243 + text_field: *241 + number_field: *241 + date_field: *241 + single_select_field: *241 + iteration_field: *241 '401': *23 '403': *27 '404': *6 @@ -39276,9 +39301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *235 + - *233 - *99 - - *244 + - *242 responses: '204': description: Response @@ -39310,7 +39335,7 @@ paths: application/json: schema: type: array - items: &245 + items: &243 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -39386,7 +39411,7 @@ paths: - property_name - value_type examples: - default: &246 + default: &244 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -39445,7 +39470,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *245 + items: *243 minItems: 1 maxItems: 100 required: @@ -39475,9 +39500,9 @@ paths: application/json: schema: type: array - items: *245 + items: *243 examples: - default: *246 + default: *244 '403': *27 '404': *6 x-github: @@ -39499,7 +39524,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *99 - - &247 + - &245 name: custom_property_name description: The custom property name in: path @@ -39511,9 +39536,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *243 examples: - default: &248 + default: &246 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -39548,7 +39573,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *99 - - *247 + - *245 requestBody: required: true content: @@ -39626,9 +39651,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *243 examples: - default: *248 + default: *246 '403': *27 '404': *6 x-github: @@ -39652,7 +39677,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *99 - - *247 + - *245 responses: '204': *156 '403': *27 @@ -39716,7 +39741,7 @@ paths: - octocat/Hello-World properties: type: array - items: &249 + items: &247 title: Custom Property Value description: Custom property name and associated value type: object @@ -39806,7 +39831,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *249 + items: *247 required: - repository_names - properties @@ -39998,7 +40023,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -40201,7 +40226,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &320 title: Full Repository description: Full Repository type: object @@ -40666,7 +40691,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &452 + code_of_conduct: &450 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -40696,7 +40721,7 @@ paths: - key - name - html_url - security_and_analysis: *250 + security_and_analysis: *248 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -40780,7 +40805,7 @@ paths: - network_count - subscribers_count examples: - default: &324 + default: &322 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -41301,7 +41326,7 @@ paths: - *99 - *17 - *19 - - &567 + - &565 name: targets description: | A comma-separated list of rule targets to filter by. @@ -41320,7 +41345,7 @@ paths: application/json: schema: type: array - items: &276 + items: &274 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -41355,7 +41380,7 @@ paths: source: type: string description: The name of the source - enforcement: &253 + enforcement: &251 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -41368,7 +41393,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &254 + items: &252 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -41439,7 +41464,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &251 + - &249 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -41463,7 +41488,7 @@ paths: match. items: type: string - - &255 + - &253 title: Organization ruleset conditions type: object description: |- @@ -41477,7 +41502,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -41511,7 +41536,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -41533,7 +41558,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *251 + - *249 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -41546,7 +41571,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &252 + items: &250 title: Repository ruleset property targeting definition type: object @@ -41579,7 +41604,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *252 + items: *250 required: - repository_property type: @@ -41587,12 +41612,12 @@ paths: - object rules: type: array - items: &568 + items: &566 title: Repository Rule type: object description: A repository rule. oneOf: - - &256 + - &254 title: creation description: Only allow users with bypass permission to create matching refs. @@ -41604,7 +41629,7 @@ paths: type: string enum: - creation - - &257 + - &255 title: update description: Only allow users with bypass permission to update matching refs. @@ -41625,7 +41650,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &258 + - &256 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -41637,7 +41662,7 @@ paths: type: string enum: - deletion - - &259 + - &257 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -41649,7 +41674,7 @@ paths: type: string enum: - required_linear_history - - &565 + - &563 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -41727,7 +41752,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &260 + - &258 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -41751,7 +41776,7 @@ paths: type: string required: - required_deployment_environments - - &261 + - &259 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -41763,7 +41788,7 @@ paths: type: string enum: - required_signatures - - &262 + - &260 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -41825,7 +41850,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &263 + - &261 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -41873,7 +41898,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &264 + - &262 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -41885,7 +41910,7 @@ paths: type: string enum: - non_fast_forward - - &265 + - &263 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -41921,7 +41946,7 @@ paths: required: - operator - pattern - - &266 + - &264 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -41957,7 +41982,7 @@ paths: required: - operator - pattern - - &267 + - &265 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -41993,7 +42018,7 @@ paths: required: - operator - pattern - - &268 + - &266 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -42029,7 +42054,7 @@ paths: required: - operator - pattern - - &269 + - &267 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -42065,7 +42090,7 @@ paths: required: - operator - pattern - - &270 + - &268 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -42090,7 +42115,7 @@ paths: type: string required: - restricted_file_paths - - &271 + - &269 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -42114,7 +42139,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &272 + - &270 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -42137,7 +42162,7 @@ paths: type: string required: - restricted_file_extensions - - &273 + - &271 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -42162,7 +42187,7 @@ paths: maximum: 100 required: - max_file_size - - &274 + - &272 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -42212,7 +42237,7 @@ paths: - repository_id required: - workflows - - &275 + - &273 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -42273,7 +42298,7 @@ paths: - tool required: - code_scanning_tools - - &566 + - &564 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -42371,20 +42396,22 @@ paths: - push - repository default: branch - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *255 + items: *252 + conditions: *253 rules: type: array description: An array of rules within the ruleset. - items: &278 + items: &276 title: Repository Rule type: object description: A repository rule. oneOf: + - *254 + - *255 - *256 - *257 - *258 @@ -42403,8 +42430,6 @@ paths: - *271 - *272 - *273 - - *274 - - *275 required: - name - enforcement @@ -42442,9 +42467,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: &277 + default: &275 value: id: 21 name: super cool ruleset @@ -42499,7 +42524,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *99 - - &569 + - &567 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 @@ -42514,7 +42539,7 @@ paths: in: query schema: type: string - - &570 + - &568 name: time_period description: |- The time period to filter by. @@ -42530,14 +42555,14 @@ paths: - week - month default: day - - &571 + - &569 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 - - &572 + - &570 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -42557,7 +42582,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &571 title: Rule Suites description: Response type: array @@ -42613,7 +42638,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &574 + default: &572 value: - id: 21 actor_id: 12 @@ -42657,7 +42682,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *99 - - &575 + - &573 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42673,7 +42698,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &574 title: Rule Suite description: Response type: object @@ -42780,7 +42805,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &577 + default: &575 value: id: 21 actor_id: 12 @@ -42853,9 +42878,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *277 + default: *275 '404': *6 '500': *100 put: @@ -42899,16 +42924,16 @@ paths: - tag - push - repository - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *255 + items: *252 + conditions: *253 rules: description: An array of rules within the ruleset. type: array - items: *278 + items: *276 examples: default: value: @@ -42943,9 +42968,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *277 + default: *275 '404': *6 '500': *100 delete: @@ -43002,7 +43027,7 @@ paths: application/json: schema: type: array - items: &279 + items: &277 title: Ruleset version type: object description: The historical version of a ruleset @@ -43026,7 +43051,7 @@ paths: type: string format: date-time examples: - default: &579 + default: &577 value: - version_id: 3 actor: @@ -43079,9 +43104,9 @@ paths: description: Response content: application/json: - schema: &580 + schema: &578 allOf: - - *279 + - *277 - type: object required: - state @@ -43151,14 +43176,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *99 + - *278 + - *279 - *280 - *281 - - *282 - - *283 - *46 - *19 - *17 - - &581 + - &579 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 @@ -43168,7 +43193,7 @@ paths: required: false schema: type: string - - &582 + - &580 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 @@ -43178,10 +43203,10 @@ paths: required: false schema: type: string + - *282 + - *283 - *284 - *285 - - *286 - - *287 responses: '200': description: Response @@ -43189,9 +43214,9 @@ paths: application/json: schema: type: array - items: *288 + items: *286 examples: - default: *289 + default: *287 headers: Link: *57 '404': *6 @@ -43232,7 +43257,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &291 + pattern_config_version: &289 type: - string - 'null' @@ -43242,7 +43267,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &290 + items: &288 type: object properties: token_type: @@ -43311,7 +43336,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *290 + items: *288 examples: default: value: @@ -43368,7 +43393,7 @@ paths: schema: type: object properties: - pattern_config_version: *291 + pattern_config_version: *289 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -43394,7 +43419,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *291 + custom_pattern_version: *289 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -43492,7 +43517,7 @@ paths: application/json: schema: type: array - items: &603 + items: &601 description: A repository security advisory. type: object properties: @@ -43736,7 +43761,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 credits_detailed: type: - array @@ -43747,7 +43772,7 @@ paths: type: object properties: user: *4 - type: *292 + type: *290 state: type: string description: The state of the user's acceptance of the @@ -43811,7 +43836,7 @@ paths: - private_fork additionalProperties: false examples: - default: &604 + default: &602 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -44198,9 +44223,9 @@ paths: application/json: schema: type: array - items: *214 + items: *212 examples: - default: *215 + default: *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44285,7 +44310,7 @@ paths: description: Response content: application/json: - schema: &669 + schema: &667 type: object properties: total_minutes_used: @@ -44355,7 +44380,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &670 + default: &668 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -44391,7 +44416,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &669 type: object properties: total_gigabytes_bandwidth_used: @@ -44409,7 +44434,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &672 + default: &670 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -44441,7 +44466,7 @@ paths: description: Response content: application/json: - schema: &676 + schema: &674 type: object properties: days_left_in_billing_cycle: @@ -44459,7 +44484,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &677 + default: &675 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -44744,7 +44769,7 @@ paths: type: integer network_configurations: type: array - items: &293 + items: &291 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -44869,9 +44894,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: &294 + default: &292 value: id: 123456789ABCDEF name: My network configuration @@ -44900,7 +44925,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *99 - - &295 + - &293 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -44912,9 +44937,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: *294 + default: *292 headers: Link: *57 x-github: @@ -44936,7 +44961,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *99 - - *295 + - *293 requestBody: required: true content: @@ -44975,9 +45000,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *291 examples: - default: *294 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44997,7 +45022,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *99 - - *295 + - *293 responses: '204': description: Response @@ -45142,13 +45167,13 @@ paths: application/json: schema: type: array - items: *296 + items: *294 examples: - default: *297 + default: *295 '500': *100 '403': *27 '404': *6 - '422': *298 + '422': *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45178,7 +45203,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 headers: Link: *57 '403': *27 @@ -45272,7 +45297,7 @@ paths: description: Response content: application/json: - schema: &299 + schema: &297 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45346,7 +45371,7 @@ paths: parent: anyOf: - type: 'null' - - *214 + - *212 members_count: type: integer examples: @@ -45671,7 +45696,7 @@ paths: - repos_count - organization examples: - default: &300 + default: &298 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45748,9 +45773,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 x-github: githubCloudOnly: false @@ -45835,16 +45860,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '201': description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 '422': *15 '403': *27 @@ -45914,7 +45939,7 @@ paths: application/json: schema: type: array - items: &301 + items: &299 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46025,7 +46050,7 @@ paths: - updated_at - url examples: - default: &621 + default: &619 value: - author: login: octocat @@ -46134,9 +46159,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: &302 + default: &300 value: author: login: octocat @@ -46210,7 +46235,7 @@ paths: parameters: - *99 - *64 - - &303 + - &301 name: discussion_number description: The number that identifies the discussion. in: path @@ -46222,9 +46247,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46248,7 +46273,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: false content: @@ -46271,9 +46296,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: &622 + default: &620 value: author: login: octocat @@ -46345,7 +46370,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 responses: '204': description: Response @@ -46373,7 +46398,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 - *46 - *17 - *19 @@ -46384,7 +46409,7 @@ paths: application/json: schema: type: array - items: &304 + items: &302 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46464,7 +46489,7 @@ paths: - updated_at - url examples: - default: &623 + default: &621 value: - author: login: octocat @@ -46534,7 +46559,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: true content: @@ -46556,9 +46581,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: &305 + default: &303 value: author: login: octocat @@ -46626,8 +46651,8 @@ paths: parameters: - *99 - *64 - - *303 - - &306 + - *301 + - &304 name: comment_number description: The number that identifies the comment. in: path @@ -46639,9 +46664,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46665,8 +46690,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 requestBody: required: true content: @@ -46688,9 +46713,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: &624 + default: &622 value: author: login: octocat @@ -46756,8 +46781,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 responses: '204': description: Response @@ -46785,8 +46810,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -46812,7 +46837,7 @@ paths: application/json: schema: type: array - items: &307 + items: &305 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46856,7 +46881,7 @@ paths: - content - created_at examples: - default: &309 + default: &307 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46908,8 +46933,8 @@ paths: parameters: - *99 - *64 - - *303 - - *306 + - *301 + - *304 requestBody: required: true content: @@ -46942,9 +46967,9 @@ paths: team discussion comment content: application/json: - schema: *307 + schema: *305 examples: - default: &308 + default: &306 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46973,9 +46998,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47000,9 +47025,9 @@ paths: parameters: - *99 - *64 - - *303 - - *306 - - &310 + - *301 + - *304 + - &308 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47036,7 +47061,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47062,9 +47087,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -47092,7 +47117,7 @@ paths: parameters: - *99 - *64 - - *303 + - *301 requestBody: required: true content: @@ -47124,16 +47149,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47158,8 +47183,8 @@ paths: parameters: - *99 - *64 - - *303 - - *310 + - *301 + - *308 responses: '204': description: Response @@ -47194,9 +47219,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 x-github: @@ -47280,7 +47305,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &309 title: Team Membership description: Team Membership type: object @@ -47308,7 +47333,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &625 + response-if-user-is-a-team-maintainer: &623 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47371,9 +47396,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-users-membership-with-team-is-now-pending: &626 + response-if-users-membership-with-team-is-now-pending: &624 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47446,7 +47471,7 @@ paths: application/json: schema: type: array - items: &312 + items: &310 title: Team Project description: A team's access to a project. type: object @@ -47515,7 +47540,7 @@ paths: - updated_at - permissions examples: - default: &627 + default: &625 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47580,7 +47605,7 @@ paths: parameters: - *99 - *64 - - &313 + - &311 name: project_id description: The unique identifier of the project. in: path @@ -47592,9 +47617,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: &628 + default: &626 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47658,7 +47683,7 @@ paths: parameters: - *99 - *64 - - *313 + - *311 requestBody: required: false content: @@ -47727,7 +47752,7 @@ paths: parameters: - *99 - *64 - - *313 + - *311 responses: '204': description: Response @@ -47767,7 +47792,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -47798,14 +47823,14 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &629 + schema: &627 title: Team Repository description: A team's access to a repository. type: object @@ -48448,8 +48473,8 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -48496,8 +48521,8 @@ paths: parameters: - *99 - *64 - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -48534,7 +48559,7 @@ paths: type: array items: *161 examples: - response-if-child-teams-exist: &630 + response-if-child-teams-exist: &628 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48661,7 +48686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &316 + - &314 name: column_id description: The unique identifier of the column. in: path @@ -48673,7 +48698,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &315 title: Project Column description: Project columns contain cards of work. type: object @@ -48727,7 +48752,7 @@ paths: - created_at - updated_at examples: - default: &318 + default: &316 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48762,7 +48787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *316 + - *314 requestBody: required: true content: @@ -48787,9 +48812,9 @@ paths: description: Response content: application/json: - schema: *317 + schema: *315 examples: - default: *318 + default: *316 '304': *35 '403': *27 '401': *23 @@ -48814,7 +48839,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *316 + - *314 responses: '204': description: Response @@ -48843,7 +48868,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *316 + - *314 requestBody: required: true content: @@ -48904,15 +48929,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#get-a-project parameters: - - *313 + - *311 responses: '200': description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: &319 + default: &317 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -48969,7 +48994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#update-a-project parameters: - - *313 + - *311 requestBody: required: false content: @@ -49018,9 +49043,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: *319 + default: *317 '404': description: Not Found if the authenticated user does not have access to the project @@ -49041,7 +49066,7 @@ paths: items: type: string '401': *23 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -49064,7 +49089,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#delete-a-project parameters: - - *313 + - *311 responses: '204': description: Delete Success @@ -49085,7 +49110,7 @@ paths: items: type: string '401': *23 - '410': *320 + '410': *318 '404': *6 x-github: githubCloudOnly: false @@ -49109,7 +49134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *313 + - *311 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -49166,7 +49191,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *313 + - *311 - *62 requestBody: required: false @@ -49221,7 +49246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *313 + - *311 - *62 responses: '204': @@ -49253,7 +49278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *313 + - *311 - *62 responses: '200': @@ -49324,7 +49349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#list-project-columns parameters: - - *313 + - *311 - *17 - *19 responses: @@ -49334,7 +49359,7 @@ paths: application/json: schema: type: array - items: *317 + items: *315 examples: default: value: @@ -49372,7 +49397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#create-a-project-column parameters: - - *313 + - *311 requestBody: required: true content: @@ -49396,7 +49421,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *315 examples: default: value: @@ -49461,7 +49486,7 @@ paths: resources: type: object properties: - core: &321 + core: &319 title: Rate Limit type: object properties: @@ -49478,21 +49503,21 @@ paths: - remaining - reset - used - graphql: *321 - search: *321 - code_search: *321 - source_import: *321 - integration_manifest: *321 - code_scanning_upload: *321 - actions_runner_registration: *321 - scim: *321 - dependency_snapshots: *321 - dependency_sbom: *321 - code_scanning_autofix: *321 + graphql: *319 + search: *319 + code_search: *319 + source_import: *319 + integration_manifest: *319 + code_scanning_upload: *319 + actions_runner_registration: *319 + scim: *319 + dependency_snapshots: *319 + dependency_sbom: *319 + code_scanning_autofix: *319 required: - core - search - rate: *321 + rate: *319 required: - rate - resources @@ -49597,14 +49622,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: default-response: summary: Default response @@ -50105,7 +50130,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *323 + '301': *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50123,8 +50148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -50372,10 +50397,10 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 - '307': &325 + default: *322 + '307': &323 description: Temporary Redirect content: application/json: @@ -50404,8 +50429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -50427,7 +50452,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *325 + '307': *323 '404': *6 '409': *45 x-github: @@ -50451,11 +50476,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - - &356 + - &354 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50478,7 +50503,7 @@ paths: type: integer artifacts: type: array - items: &326 + items: &324 title: Artifact description: An artifact type: object @@ -50573,7 +50598,7 @@ paths: - expires_at - updated_at examples: - default: &357 + default: &355 value: total_count: 2 artifacts: @@ -50634,9 +50659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *314 - - *315 - - &327 + - *312 + - *313 + - &325 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50648,7 +50673,7 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: default: value: @@ -50686,9 +50711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *314 - - *315 - - *327 + - *312 + - *313 + - *325 responses: '204': description: Response @@ -50712,9 +50737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *314 - - *315 - - *327 + - *312 + - *313 + - *325 - name: archive_format in: path required: true @@ -50728,7 +50753,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50751,14 +50776,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *328 + schema: *326 examples: default: value: @@ -50784,11 +50809,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - - &329 + - &327 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50822,7 +50847,7 @@ paths: description: Response content: application/json: - schema: &330 + schema: &328 title: Repository actions caches description: Repository actions caches type: object @@ -50872,7 +50897,7 @@ paths: - total_count - actions_caches examples: - default: &331 + default: &329 value: total_count: 1 actions_caches: @@ -50904,23 +50929,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *314 - - *315 + - *312 + - *313 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *329 + - *327 responses: '200': description: Response content: application/json: - schema: *330 + schema: *328 examples: - default: *331 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50940,8 +50965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *314 - - *315 + - *312 + - *313 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50972,9 +50997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *314 - - *315 - - &332 + - *312 + - *313 + - &330 name: job_id description: The unique identifier of the job. in: path @@ -50986,7 +51011,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &358 title: Job description: Information of a job execution in a workflow run type: object @@ -51333,9 +51358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *314 - - *315 - - *332 + - *312 + - *313 + - *330 responses: '302': description: Response @@ -51363,9 +51388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *314 - - *315 - - *332 + - *312 + - *313 + - *330 requestBody: required: false content: @@ -51411,8 +51436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Status response @@ -51462,8 +51487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -51526,8 +51551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -51545,7 +51570,7 @@ paths: type: integer secrets: type: array - items: &362 + items: &360 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51566,7 +51591,7 @@ paths: - created_at - updated_at examples: - default: &363 + default: &361 value: total_count: 2 secrets: @@ -51599,9 +51624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *314 - - *315 - - *333 + - *312 + - *313 + - *331 - *19 responses: '200': @@ -51618,7 +51643,7 @@ paths: type: integer variables: type: array - items: &366 + items: &364 title: Actions Variable type: object properties: @@ -51652,7 +51677,7 @@ paths: - created_at - updated_at examples: - default: &367 + default: &365 value: total_count: 2 variables: @@ -51685,8 +51710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -51695,11 +51720,11 @@ paths: schema: type: object properties: - enabled: &335 + enabled: &333 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *116 - selected_actions_url: *334 + selected_actions_url: *332 sha_pinning_required: *117 required: - enabled @@ -51728,8 +51753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -51740,7 +51765,7 @@ paths: schema: type: object properties: - enabled: *335 + enabled: *333 allowed_actions: *116 sha_pinning_required: *117 required: @@ -51772,14 +51797,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &336 + schema: &334 type: object properties: access_level: @@ -51796,7 +51821,7 @@ paths: required: - access_level examples: - default: &337 + default: &335 value: access_level: organization x-github: @@ -51820,15 +51845,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *336 + schema: *334 examples: - default: *337 + default: *335 responses: '204': description: Response @@ -51852,14 +51877,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *338 + schema: *336 examples: default: value: @@ -51883,8 +51908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Empty response for successful settings update @@ -51894,7 +51919,7 @@ paths: required: true content: application/json: - schema: *339 + schema: *337 examples: default: summary: Set retention days @@ -51918,8 +51943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -51927,7 +51952,7 @@ paths: application/json: schema: *118 examples: - default: *340 + default: *338 '404': *6 x-github: enabledForGitHubApps: true @@ -51946,8 +51971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -51981,14 +52006,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *341 + schema: *339 examples: default: *119 '403': *27 @@ -52010,13 +52035,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *342 + schema: *340 examples: default: *119 responses: @@ -52042,8 +52067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -52070,8 +52095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -52103,14 +52128,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *343 + schema: *341 examples: default: *126 x-github: @@ -52133,8 +52158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Success response @@ -52145,7 +52170,7 @@ paths: required: true content: application/json: - schema: *344 + schema: *342 examples: default: *126 x-github: @@ -52174,8 +52199,8 @@ paths: in: query schema: type: string - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -52219,8 +52244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -52228,9 +52253,9 @@ paths: application/json: schema: type: array - items: *345 + items: *343 examples: - default: *346 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52252,8 +52277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -52296,7 +52321,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *347 + '201': *345 '404': *6 '422': *7 '409': *45 @@ -52327,8 +52352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -52336,7 +52361,7 @@ paths: application/json: schema: *135 examples: - default: *348 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52364,8 +52389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -52373,7 +52398,7 @@ paths: application/json: schema: *135 examples: - default: *349 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52395,8 +52420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '200': @@ -52405,7 +52430,7 @@ paths: application/json: schema: *133 examples: - default: *350 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52426,8 +52451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '204': @@ -52454,8 +52479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: '200': *137 @@ -52480,8 +52505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 requestBody: required: true @@ -52530,8 +52555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 requestBody: required: true @@ -52581,11 +52606,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 responses: - '200': *351 + '200': *349 '404': *6 x-github: githubCloudOnly: false @@ -52612,10 +52637,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *132 - - *352 + - *350 responses: '200': *137 '404': *6 @@ -52643,9 +52668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *314 - - *315 - - &370 + - *312 + - *313 + - &368 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52653,7 +52678,7 @@ paths: required: false schema: type: string - - &371 + - &369 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52661,7 +52686,7 @@ paths: required: false schema: type: string - - &372 + - &370 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52670,7 +52695,7 @@ paths: required: false schema: type: string - - &373 + - &371 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52697,7 +52722,7 @@ paths: - pending - *17 - *19 - - &374 + - &372 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52706,7 +52731,7 @@ paths: schema: type: string format: date-time - - &353 + - &351 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52715,13 +52740,13 @@ paths: schema: type: boolean default: false - - &375 + - &373 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &376 + - &374 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52744,7 +52769,7 @@ paths: type: integer workflow_runs: type: array - items: &354 + items: &352 title: Workflow Run description: An invocation of a workflow type: object @@ -52922,7 +52947,7 @@ paths: head_commit: anyOf: - type: 'null' - - &398 + - &396 title: Simple Commit description: A commit. type: object @@ -53037,7 +53062,7 @@ paths: - workflow_url - pull_requests examples: - default: &377 + default: &375 value: total_count: 1 workflow_runs: @@ -53273,24 +53298,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *314 - - *315 - - &355 + - *312 + - *313 + - &353 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *353 + - *351 responses: '200': description: Response content: application/json: - schema: *354 + schema: *352 examples: - default: &358 + default: &356 value: id: 30433642 name: Build @@ -53531,9 +53556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '204': description: Response @@ -53556,9 +53581,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -53686,9 +53711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '201': description: Response @@ -53721,12 +53746,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 - *17 - *19 - - *356 + - *354 responses: '200': description: Response @@ -53742,9 +53767,9 @@ paths: type: integer artifacts: type: array - items: *326 + items: *324 examples: - default: *357 + default: *355 headers: Link: *57 x-github: @@ -53768,25 +53793,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *314 - - *315 - - *355 - - &359 + - *312 + - *313 + - *353 + - &357 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *353 + - *351 responses: '200': description: Response content: application/json: - schema: *354 + schema: *352 examples: - default: *358 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53809,10 +53834,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *314 - - *315 - - *355 - - *359 + - *312 + - *313 + - *353 + - *357 - *17 - *19 responses: @@ -53830,9 +53855,9 @@ paths: type: integer jobs: type: array - items: *360 + items: *358 examples: - default: &361 + default: &359 value: total_count: 1 jobs: @@ -53945,10 +53970,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *314 - - *315 - - *355 - - *359 + - *312 + - *313 + - *353 + - *357 responses: '302': description: Response @@ -53976,9 +54001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '202': description: Response @@ -54011,9 +54036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: true content: @@ -54080,9 +54105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '202': description: Response @@ -54115,9 +54140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -54147,9 +54172,9 @@ paths: type: integer jobs: type: array - items: *360 + items: *358 examples: - default: *361 + default: *359 headers: Link: *57 x-github: @@ -54174,9 +54199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '302': description: Response @@ -54203,9 +54228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '204': description: Response @@ -54232,9 +54257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -54303,7 +54328,7 @@ paths: items: type: object properties: - type: &472 + type: &470 type: string description: The type of reviewer. enum: @@ -54389,9 +54414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: true content: @@ -54441,7 +54466,7 @@ paths: application/json: schema: type: array - items: &467 + items: &465 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54553,7 +54578,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &466 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54609,9 +54634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: false content: @@ -54656,9 +54681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 requestBody: required: false content: @@ -54712,9 +54737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *314 - - *315 - - *355 + - *312 + - *313 + - *353 responses: '200': description: Response @@ -54851,8 +54876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -54870,9 +54895,9 @@ paths: type: integer secrets: type: array - items: *362 + items: *360 examples: - default: *363 + default: *361 headers: Link: *57 x-github: @@ -54897,16 +54922,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *364 + schema: *362 examples: - default: *365 + default: *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54928,17 +54953,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: &485 + default: &483 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54964,8 +54989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -55023,8 +55048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -55050,9 +55075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *314 - - *315 - - *333 + - *312 + - *313 + - *331 - *19 responses: '200': @@ -55069,9 +55094,9 @@ paths: type: integer variables: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *57 x-github: @@ -55094,8 +55119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -55147,17 +55172,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: &486 + default: &484 value: name: USERNAME value: octocat @@ -55183,8 +55208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 requestBody: required: true @@ -55227,8 +55252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 responses: '204': @@ -55254,8 +55279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -55273,7 +55298,7 @@ paths: type: integer workflows: type: array - items: &368 + items: &366 title: Workflow description: A GitHub Actions workflow type: object @@ -55391,9 +55416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *314 - - *315 - - &369 + - *312 + - *313 + - &367 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55408,7 +55433,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: default: value: @@ -55441,9 +55466,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55468,9 +55493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55521,9 +55546,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '204': description: Response @@ -55550,19 +55575,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *314 - - *315 + - *312 + - *313 + - *367 + - *368 - *369 - *370 - *371 - - *372 - - *373 - *17 - *19 + - *372 + - *351 + - *373 - *374 - - *353 - - *375 - - *376 responses: '200': description: Response @@ -55578,9 +55603,9 @@ paths: type: integer workflow_runs: type: array - items: *354 + items: *352 examples: - default: *377 + default: *375 headers: Link: *57 x-github: @@ -55612,9 +55637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *314 - - *315 - - *369 + - *312 + - *313 + - *367 responses: '200': description: Response @@ -55675,8 +55700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *314 - - *315 + - *312 + - *313 - *46 - *17 - *38 @@ -55844,8 +55869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -55882,8 +55907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *314 - - *315 + - *312 + - *313 - name: assignee in: path required: true @@ -55919,8 +55944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -56032,8 +56057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *38 - *39 @@ -56089,7 +56114,7 @@ paths: initiator: type: string examples: - default: *378 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56109,8 +56134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -56118,7 +56143,7 @@ paths: application/json: schema: type: array - items: &379 + items: &377 title: Autolink reference description: An autolink reference. type: object @@ -56177,8 +56202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -56217,9 +56242,9 @@ paths: description: response content: application/json: - schema: *379 + schema: *377 examples: - default: &380 + default: &378 value: id: 1 key_prefix: TICKET- @@ -56250,9 +56275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *314 - - *315 - - &381 + - *312 + - *313 + - &379 name: autolink_id description: The unique identifier of the autolink. in: path @@ -56264,9 +56289,9 @@ paths: description: Response content: application/json: - schema: *379 + schema: *377 examples: - default: *380 + default: *378 '404': *6 x-github: githubCloudOnly: false @@ -56286,9 +56311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *314 - - *315 - - *381 + - *312 + - *313 + - *379 responses: '204': description: Response @@ -56312,8 +56337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response if Dependabot is enabled @@ -56363,8 +56388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -56385,8 +56410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -56406,8 +56431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *314 - - *315 + - *312 + - *313 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56445,7 +56470,7 @@ paths: - url protected: type: boolean - protection: &383 + protection: &381 title: Branch Protection description: Branch Protection type: object @@ -56488,7 +56513,7 @@ paths: required: - contexts - checks - enforce_admins: &386 + enforce_admins: &384 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56505,7 +56530,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &388 + required_pull_request_reviews: &386 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56589,7 +56614,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &385 + restrictions: &383 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56882,9 +56907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *314 - - *315 - - &384 + - *312 + - *313 + - &382 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56898,14 +56923,14 @@ paths: description: Response content: application/json: - schema: &394 + schema: &392 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &443 + commit: &441 title: Commit description: Commit type: object @@ -56944,7 +56969,7 @@ paths: author: anyOf: - type: 'null' - - &382 + - &380 title: Git User description: Metaproperties for Git author/committer information. @@ -56965,7 +56990,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 message: type: string examples: @@ -56989,7 +57014,7 @@ paths: required: - sha - url - verification: &492 + verification: &490 title: Verification type: object properties: @@ -57069,7 +57094,7 @@ paths: type: integer files: type: array - items: &454 + items: &452 title: Diff Entry description: Diff Entry type: object @@ -57165,7 +57190,7 @@ paths: - self protected: type: boolean - protection: *383 + protection: *381 protection_url: type: string format: uri @@ -57274,7 +57299,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *323 + '301': *321 '404': *6 x-github: githubCloudOnly: false @@ -57296,15 +57321,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *383 + schema: *381 examples: default: value: @@ -57498,9 +57523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -57760,7 +57785,7 @@ paths: url: type: string format: uri - required_status_checks: &391 + required_status_checks: &389 title: Status Check Policy description: Status Check Policy type: object @@ -57919,7 +57944,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *385 + restrictions: *383 required_conversation_resolution: type: object properties: @@ -58031,9 +58056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58058,17 +58083,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: &387 + default: &385 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -58090,17 +58115,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: *387 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58119,9 +58144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58146,17 +58171,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *388 + schema: *386 examples: - default: &389 + default: &387 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -58252,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58352,9 +58377,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *386 examples: - default: *389 + default: *387 '422': *15 x-github: githubCloudOnly: false @@ -58375,9 +58400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58404,17 +58429,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: &390 + default: &388 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58437,17 +58462,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *386 + schema: *384 examples: - default: *390 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -58467,9 +58492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58494,17 +58519,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *391 + schema: *389 examples: - default: &392 + default: &390 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58530,9 +58555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58584,9 +58609,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *389 examples: - default: *392 + default: *390 '404': *6 '422': *15 x-github: @@ -58608,9 +58633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58634,9 +58659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -58670,9 +58695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58739,9 +58764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -58805,9 +58830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: content: application/json: @@ -58873,15 +58898,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response content: application/json: - schema: *385 + schema: *383 examples: default: value: @@ -58972,9 +58997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '204': description: Response @@ -58997,9 +59022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59009,7 +59034,7 @@ paths: type: array items: *5 examples: - default: &393 + default: &391 value: - id: 1 slug: octoapp @@ -59066,9 +59091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59102,7 +59127,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59123,9 +59148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59159,7 +59184,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59180,9 +59205,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59216,7 +59241,7 @@ paths: type: array items: *5 examples: - default: *393 + default: *391 '422': *15 x-github: githubCloudOnly: false @@ -59238,9 +59263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59250,7 +59275,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '404': *6 x-github: githubCloudOnly: false @@ -59270,9 +59295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -59310,7 +59335,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59331,9 +59356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: false content: @@ -59371,7 +59396,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59392,9 +59417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: content: application/json: @@ -59431,7 +59456,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 '422': *15 x-github: githubCloudOnly: false @@ -59453,9 +59478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 responses: '200': description: Response @@ -59489,9 +59514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59549,9 +59574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59609,9 +59634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59671,9 +59696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 requestBody: required: true content: @@ -59695,7 +59720,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *392 examples: default: value: @@ -59811,8 +59836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -60091,7 +60116,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &393 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60227,7 +60252,7 @@ paths: check. type: array items: *72 - deployment: &688 + deployment: &686 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60514,9 +60539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *314 - - *315 - - &396 + - *312 + - *313 + - &394 name: check_run_id description: The unique identifier of the check run. in: path @@ -60528,9 +60553,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: &397 + default: &395 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60630,9 +60655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 requestBody: required: true content: @@ -60872,9 +60897,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: *397 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60894,9 +60919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 - *17 - *19 responses: @@ -61006,9 +61031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *314 - - *315 - - *396 + - *312 + - *313 + - *394 responses: '201': description: Response @@ -61052,8 +61077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -61075,7 +61100,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &399 + schema: &397 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61173,7 +61198,7 @@ paths: - string - 'null' format: date-time - head_commit: *398 + head_commit: *396 latest_check_runs_count: type: integer check_runs_url: @@ -61201,7 +61226,7 @@ paths: - check_runs_url - pull_requests examples: - default: &400 + default: &398 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61492,9 +61517,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *399 + schema: *397 examples: - default: *400 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61513,8 +61538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -61823,9 +61848,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *314 - - *315 - - &401 + - *312 + - *313 + - &399 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61837,9 +61862,9 @@ paths: description: Response content: application/json: - schema: *399 + schema: *397 examples: - default: *400 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61862,17 +61887,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *314 - - *315 - - *401 - - &449 + - *312 + - *313 + - *399 + - &447 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &450 + - &448 name: status description: Returns check runs with the specified `status`. in: query @@ -61911,9 +61936,9 @@ paths: type: integer check_runs: type: array - items: *395 + items: *393 examples: - default: &451 + default: &449 value: total_count: 1 check_runs: @@ -62015,9 +62040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *314 - - *315 - - *401 + - *312 + - *313 + - *399 responses: '201': description: Response @@ -62050,21 +62075,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *314 - - *315 - - *402 - - *403 + - *312 + - *313 + - *400 + - *401 - *19 - *17 - - &420 + - &418 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *404 - - &421 + schema: *402 + - &419 name: pr description: The number of the pull request for the results you want to list. in: query @@ -62089,13 +62114,13 @@ paths: be returned. in: query required: false - schema: *405 + schema: *403 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *406 + schema: *404 responses: '200': description: Response @@ -62111,7 +62136,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *407 + instances_url: *405 state: *151 fixed_at: *147 dismissed_by: @@ -62119,11 +62144,11 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: *408 - dismissed_comment: *409 - rule: *410 - tool: *411 - most_recent_instance: *412 + dismissed_reason: *406 + dismissed_comment: *407 + rule: *408 + tool: *409 + most_recent_instance: *410 dismissal_approved_by: anyOf: - type: 'null' @@ -62246,7 +62271,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &413 + '403': &411 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62273,9 +62298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *314 - - *315 - - &414 + - *312 + - *313 + - &412 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62289,7 +62314,7 @@ paths: description: Response content: application/json: - schema: &415 + schema: &413 type: object properties: number: *52 @@ -62297,7 +62322,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *407 + instances_url: *405 state: *151 fixed_at: *147 dismissed_by: @@ -62305,8 +62330,8 @@ paths: - type: 'null' - *4 dismissed_at: *148 - dismissed_reason: *408 - dismissed_comment: *409 + dismissed_reason: *406 + dismissed_comment: *407 rule: type: object properties: @@ -62368,8 +62393,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *411 - most_recent_instance: *412 + tool: *409 + most_recent_instance: *410 dismissal_approved_by: anyOf: - type: 'null' @@ -62465,7 +62490,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62485,9 +62510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: true content: @@ -62502,8 +62527,8 @@ paths: enum: - open - dismissed - dismissed_reason: *408 - dismissed_comment: *409 + dismissed_reason: *406 + dismissed_comment: *407 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62522,7 +62547,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *413 examples: default: value: @@ -62598,7 +62623,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &419 + '403': &417 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62625,15 +62650,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 responses: '200': description: Response content: application/json: - schema: &416 + schema: &414 type: object properties: status: @@ -62660,13 +62685,13 @@ paths: - description - started_at examples: - default: &417 + default: &415 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &418 + '400': &416 description: Bad Request content: application/json: @@ -62677,7 +62702,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62702,29 +62727,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 responses: '200': description: OK content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 '202': description: Accepted content: application/json: - schema: *416 + schema: *414 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *418 + '400': *416 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62756,9 +62781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: false content: @@ -62804,8 +62829,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *418 - '403': *419 + '400': *416 + '403': *417 '404': *6 '422': description: Unprocessable Entity @@ -62829,13 +62854,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 - *19 - *17 - - *420 - - *421 + - *418 + - *419 responses: '200': description: Response @@ -62843,7 +62868,7 @@ paths: application/json: schema: type: array - items: *412 + items: *410 examples: default: value: @@ -62882,7 +62907,7 @@ paths: end_column: 50 classifications: - source - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -62916,25 +62941,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *314 - - *315 - - *402 - - *403 + - *312 + - *313 + - *400 + - *401 - *19 - *17 - - *421 + - *419 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *404 + schema: *402 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &424 + schema: &422 type: string description: An identifier for the upload. examples: @@ -62956,23 +62981,23 @@ paths: application/json: schema: type: array - items: &425 + items: &423 type: object properties: - ref: *404 - commit_sha: &433 + ref: *402 + commit_sha: &431 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *422 + analysis_key: *420 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *423 + category: *421 error: type: string examples: @@ -62997,8 +63022,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *424 - tool: *411 + sarif_id: *422 + tool: *409 deletable: type: boolean warning: @@ -63060,7 +63085,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63096,8 +63121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63110,7 +63135,7 @@ paths: description: Response content: application/json: - schema: *425 + schema: *423 examples: response: summary: application/json response @@ -63164,7 +63189,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *413 + '403': *411 '404': *6 '422': description: Response if analysis could not be processed @@ -63251,8 +63276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63308,7 +63333,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *419 + '403': *417 '404': *6 '503': *73 x-github: @@ -63330,8 +63355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -63339,7 +63364,7 @@ paths: application/json: schema: type: array - items: &426 + items: &424 title: CodeQL Database description: A CodeQL database. type: object @@ -63451,7 +63476,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63480,8 +63505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: language in: path description: The language of the CodeQL database. @@ -63493,7 +63518,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *424 examples: default: value: @@ -63525,9 +63550,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &456 + '302': &454 description: Found - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -63549,8 +63574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *314 - - *315 + - *312 + - *313 - name: language in: path description: The language of the CodeQL database. @@ -63560,7 +63585,7 @@ paths: responses: '204': description: Response - '403': *419 + '403': *417 '404': *6 '503': *73 x-github: @@ -63588,8 +63613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -63598,7 +63623,7 @@ paths: type: object additionalProperties: false properties: - language: &427 + language: &425 type: string description: The language targeted by the CodeQL query enum: @@ -63677,7 +63702,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &431 + schema: &429 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63687,7 +63712,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *427 + query_language: *425 query_pack_url: type: string description: The download url for the query pack. @@ -63735,7 +63760,7 @@ paths: items: type: object properties: - repository: &428 + repository: &426 title: Repository Identifier description: Repository Identifier type: object @@ -63777,7 +63802,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &432 + analysis_status: &430 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63809,7 +63834,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &429 + access_mismatch_repos: &427 type: object properties: repository_count: @@ -63824,7 +63849,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *428 + items: *426 required: - repository_count - repositories @@ -63847,8 +63872,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *429 - over_limit_repos: *429 + no_codeql_db_repos: *427 + over_limit_repos: *427 required: - access_mismatch_repos - not_found_repos @@ -63864,7 +63889,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &430 + value: &428 summary: Default response value: id: 1 @@ -64016,10 +64041,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *430 + value: *428 repository_lists: summary: Response for a successful variant analysis submission - value: *430 + value: *428 '404': *6 '422': description: Unable to process variant analysis submission @@ -64047,8 +64072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *314 - - *315 + - *312 + - *313 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -64060,9 +64085,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *429 examples: - default: *430 + default: *428 '404': *6 '503': *73 x-github: @@ -64085,7 +64110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *314 + - *312 - name: repo in: path description: The name of the controller repository. @@ -64120,7 +64145,7 @@ paths: type: object properties: repository: *51 - analysis_status: *432 + analysis_status: *430 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64245,8 +64270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64339,7 +64364,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *413 + '403': *411 '404': *6 '503': *73 x-github: @@ -64360,8 +64385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -64455,7 +64480,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *419 + '403': *417 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64526,8 +64551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -64535,7 +64560,7 @@ paths: schema: type: object properties: - commit_sha: *433 + commit_sha: *431 ref: type: string description: |- @@ -64595,7 +64620,7 @@ paths: schema: type: object properties: - id: *424 + id: *422 url: type: string description: The REST API URL for checking the status of the upload. @@ -64609,7 +64634,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *419 + '403': *417 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64632,8 +64657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *314 - - *315 + - *312 + - *313 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64681,7 +64706,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *413 + '403': *411 '404': description: Not Found if the sarif id does not match any upload '503': *73 @@ -64706,8 +64731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64788,8 +64813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64917,8 +64942,8 @@ paths: parameters: - *17 - *19 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -64934,7 +64959,7 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: default: value: @@ -65232,8 +65257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -65297,17 +65322,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '400': *14 '401': *23 '403': *27 @@ -65336,8 +65361,8 @@ paths: parameters: - *17 - *19 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -65401,8 +65426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65439,9 +65464,9 @@ paths: type: integer machines: type: array - items: *435 + items: *433 examples: - default: &637 + default: &635 value: total_count: 2 machines: @@ -65481,8 +65506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65569,8 +65594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -65639,8 +65664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -65658,7 +65683,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &437 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65679,7 +65704,7 @@ paths: - created_at - updated_at examples: - default: *436 + default: *434 headers: Link: *57 x-github: @@ -65702,16 +65727,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *437 + schema: *435 examples: - default: *438 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65731,17 +65756,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *439 + schema: *437 examples: - default: *440 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65761,8 +65786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -65815,8 +65840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -65845,8 +65870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *314 - - *315 + - *312 + - *313 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65884,7 +65909,7 @@ paths: application/json: schema: type: array - items: &441 + items: &439 title: Collaborator description: Collaborator type: object @@ -66077,8 +66102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '204': @@ -66125,8 +66150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 requestBody: required: false @@ -66153,7 +66178,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &505 + schema: &503 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66381,8 +66406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '204': @@ -66414,8 +66439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *314 - - *315 + - *312 + - *313 - *62 responses: '200': @@ -66436,7 +66461,7 @@ paths: user: anyOf: - type: 'null' - - *441 + - *439 required: - permission - role_name @@ -66490,8 +66515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -66501,7 +66526,7 @@ paths: application/json: schema: type: array - items: &442 + items: &440 title: Commit Comment description: Commit Comment type: object @@ -66559,7 +66584,7 @@ paths: - created_at - updated_at examples: - default: &445 + default: &443 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66618,17 +66643,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *442 + schema: *440 examples: - default: &446 + default: &444 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66685,8 +66710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -66709,7 +66734,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *440 examples: default: value: @@ -66760,8 +66785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -66783,8 +66808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -66811,9 +66836,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -66834,8 +66859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -66868,16 +66893,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -66899,10 +66924,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -66951,8 +66976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *314 - - *315 + - *312 + - *313 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -67008,9 +67033,9 @@ paths: application/json: schema: type: array - items: *443 + items: *441 examples: - default: &551 + default: &549 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67104,9 +67129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *314 - - *315 - - &444 + - *312 + - *313 + - &442 name: commit_sha description: The SHA of the commit. in: path @@ -67178,9 +67203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 - *17 - *19 responses: @@ -67190,9 +67215,9 @@ paths: application/json: schema: type: array - items: *442 + items: *440 examples: - default: *445 + default: *443 headers: Link: *57 x-github: @@ -67220,9 +67245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 requestBody: required: true content: @@ -67257,9 +67282,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *440 examples: - default: *446 + default: *444 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67287,9 +67312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 - *17 - *19 responses: @@ -67299,9 +67324,9 @@ paths: application/json: schema: type: array - items: *447 + items: *445 examples: - default: &543 + default: &541 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67838,11 +67863,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 - - &448 + - &446 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67857,9 +67882,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: &531 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67972,11 +67997,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *314 - - *315 + - *312 + - *313 + - *446 + - *447 - *448 - - *449 - - *450 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68010,9 +68035,9 @@ paths: type: integer check_runs: type: array - items: *395 + items: *393 examples: - default: *451 + default: *449 headers: Link: *57 x-github: @@ -68037,9 +68062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68047,7 +68072,7 @@ paths: schema: type: integer example: 1 - - *449 + - *447 - *17 - *19 responses: @@ -68065,7 +68090,7 @@ paths: type: integer check_suites: type: array - items: *399 + items: *397 examples: default: value: @@ -68265,9 +68290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - *17 - *19 responses: @@ -68469,9 +68494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *314 - - *315 - - *448 + - *312 + - *313 + - *446 - *17 - *19 responses: @@ -68481,7 +68506,7 @@ paths: application/json: schema: type: array - items: &608 + items: &606 title: Status description: The status of a commit. type: object @@ -68562,7 +68587,7 @@ paths: site_admin: false headers: Link: *57 - '301': *323 + '301': *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68590,8 +68615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -68624,11 +68649,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *452 + - *450 code_of_conduct_file: anyOf: - type: 'null' - - &453 + - &451 title: Community Health File type: object properties: @@ -68648,19 +68673,19 @@ paths: contributing: anyOf: - type: 'null' - - *453 + - *451 readme: anyOf: - type: 'null' - - *453 + - *451 issue_template: anyOf: - type: 'null' - - *453 + - *451 pull_request_template: anyOf: - type: 'null' - - *453 + - *451 required: - code_of_conduct - code_of_conduct_file @@ -68789,8 +68814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 - name: basehead @@ -68838,8 +68863,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *443 - merge_base_commit: *443 + base_commit: *441 + merge_base_commit: *441 status: type: string enum: @@ -68863,10 +68888,10 @@ paths: - 6 commits: type: array - items: *443 + items: *441 files: type: array - items: *454 + items: *452 required: - url - html_url @@ -69152,8 +69177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -69306,7 +69331,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &455 + response-if-content-is-a-file: &453 summary: Response if content is a file value: type: file @@ -69443,7 +69468,7 @@ paths: - size - type - url - - &556 + - &554 title: Content File description: Content File type: object @@ -69661,7 +69686,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *455 + response-if-content-is-a-file: *453 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69730,7 +69755,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *456 + '302': *454 '304': *35 x-github: githubCloudOnly: false @@ -69753,8 +69778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -69849,7 +69874,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &455 title: File Commit description: File Commit type: object @@ -70005,7 +70030,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *455 examples: example-for-creating-a-file: value: @@ -70059,7 +70084,7 @@ paths: schema: oneOf: - *3 - - &487 + - &485 description: Repository rule violation was detected type: object properties: @@ -70080,7 +70105,7 @@ paths: items: type: object properties: - placeholder_id: &600 + placeholder_id: &598 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70112,8 +70137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *314 - - *315 + - *312 + - *313 - name: path description: path parameter in: path @@ -70174,7 +70199,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *455 examples: default: value: @@ -70229,8 +70254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *314 - - *315 + - *312 + - *313 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70354,8 +70379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *162 - *163 - *164 @@ -70367,18 +70392,10 @@ paths: schema: type: string - *166 - - *458 + - *456 - *167 - *168 - *46 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -70389,8 +70406,6 @@ paths: default: 30 - *38 - *39 - - *169 - - *170 responses: '200': description: Response @@ -70398,7 +70413,7 @@ paths: application/json: schema: type: array - items: &461 + items: &459 type: object description: A Dependabot alert. properties: @@ -70448,7 +70463,7 @@ paths: - direct - transitive - - security_advisory: *459 + security_advisory: *457 security_vulnerability: *50 url: *55 html_url: *56 @@ -70479,7 +70494,7 @@ paths: dismissal. maxLength: 280 fixed_at: *147 - auto_dismissed_at: *460 + auto_dismissed_at: *458 required: - number - state @@ -70709,9 +70724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *314 - - *315 - - &462 + - *312 + - *313 + - &460 name: alert_number in: path description: |- @@ -70726,7 +70741,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *459 examples: default: value: @@ -70839,9 +70854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *314 - - *315 - - *462 + - *312 + - *313 + - *460 requestBody: required: true content: @@ -70886,7 +70901,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *459 examples: default: value: @@ -71015,8 +71030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -71034,7 +71049,7 @@ paths: type: integer secrets: type: array - items: &465 + items: &463 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71088,16 +71103,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *463 + schema: *461 examples: - default: *464 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71117,15 +71132,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '200': description: Response content: application/json: - schema: *465 + schema: *463 examples: default: value: @@ -71151,8 +71166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 requestBody: required: true @@ -71205,8 +71220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *314 - - *315 + - *312 + - *313 - *139 responses: '204': @@ -71229,8 +71244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *314 - - *315 + - *312 + - *313 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -71404,8 +71419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -71665,8 +71680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -71749,7 +71764,7 @@ paths: - version - url additionalProperties: false - metadata: &466 + metadata: &464 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71788,7 +71803,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *466 + metadata: *464 resolved: type: object description: A collection of resolved package dependencies. @@ -71802,7 +71817,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *466 + metadata: *464 relationship: type: string description: A notation of whether a dependency is requested @@ -71935,8 +71950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *314 - - *315 + - *312 + - *313 - name: sha description: The SHA recorded at creation time. in: query @@ -71977,9 +71992,9 @@ paths: application/json: schema: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *57 x-github: @@ -72045,8 +72060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -72128,7 +72143,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *465 examples: simple-example: summary: Simple example @@ -72201,9 +72216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *314 - - *315 - - &469 + - *312 + - *313 + - &467 name: deployment_id description: deployment_id parameter in: path @@ -72215,7 +72230,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *465 examples: default: value: @@ -72280,9 +72295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 responses: '204': description: Response @@ -72304,9 +72319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 - *17 - *19 responses: @@ -72316,7 +72331,7 @@ paths: application/json: schema: type: array - items: &470 + items: &468 title: Deployment Status description: The status of a deployment. type: object @@ -72480,9 +72495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 requestBody: required: true content: @@ -72557,9 +72572,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *468 examples: - default: &471 + default: &469 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72615,9 +72630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *314 - - *315 - - *469 + - *312 + - *313 + - *467 - name: status_id in: path required: true @@ -72628,9 +72643,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *468 examples: - default: *471 + default: *469 '404': *6 x-github: githubCloudOnly: false @@ -72655,8 +72670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -72713,8 +72728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -72732,7 +72747,7 @@ paths: - 5 environments: type: array - items: &473 + items: &471 title: Environment description: Details of a deployment environment type: object @@ -72794,7 +72809,7 @@ paths: type: string examples: - wait_timer - wait_timer: &475 + wait_timer: &473 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72836,7 +72851,7 @@ paths: items: type: object properties: - type: *472 + type: *470 reviewer: anyOf: - *4 @@ -72863,7 +72878,7 @@ paths: - id - node_id - type - deployment_branch_policy: &476 + deployment_branch_policy: &474 type: - object - 'null' @@ -72980,9 +72995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *314 - - *315 - - &474 + - *312 + - *313 + - &472 name: environment_name in: path required: true @@ -72995,9 +73010,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: - default: &477 + default: &475 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73081,9 +73096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: false content: @@ -73093,7 +73108,7 @@ paths: - object - 'null' properties: - wait_timer: *475 + wait_timer: *473 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -73112,14 +73127,14 @@ paths: items: type: object properties: - type: *472 + type: *470 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *476 + deployment_branch_policy: *474 additionalProperties: false examples: default: @@ -73139,9 +73154,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: - default: *477 + default: *475 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73165,9 +73180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 responses: '204': description: Default response @@ -73192,9 +73207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *17 - *19 responses: @@ -73213,7 +73228,7 @@ paths: - 2 branch_policies: type: array - items: &478 + items: &476 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73274,9 +73289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: true content: @@ -73324,9 +73339,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - example-wildcard: &479 + example-wildcard: &477 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73368,10 +73383,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - &480 + - *312 + - *313 + - *472 + - &478 name: branch_policy_id in: path required: true @@ -73383,9 +73398,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - default: *479 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73404,10 +73419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - *480 + - *312 + - *313 + - *472 + - *478 requestBody: required: true content: @@ -73436,9 +73451,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *476 examples: - default: *479 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73457,10 +73472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *314 - - *315 - - *474 - - *480 + - *312 + - *313 + - *472 + - *478 responses: '204': description: Response @@ -73485,9 +73500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 responses: '200': description: List of deployment protection rules @@ -73504,7 +73519,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &481 + items: &479 title: Deployment protection rule description: Deployment protection rule type: object @@ -73526,7 +73541,7 @@ paths: for the environment. examples: - true - app: &482 + app: &480 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73629,9 +73644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 requestBody: content: application/json: @@ -73652,9 +73667,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *481 + schema: *479 examples: - default: &483 + default: &481 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73689,9 +73704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *474 - - *315 - - *314 + - *472 + - *313 + - *312 - *19 - *17 responses: @@ -73711,7 +73726,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *482 + items: *480 examples: default: value: @@ -73746,10 +73761,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *314 - - *315 - - *474 - - &484 + - *312 + - *313 + - *472 + - &482 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73761,9 +73776,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *479 examples: - default: *483 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73784,10 +73799,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *474 - - *315 - - *314 - - *484 + - *472 + - *313 + - *312 + - *482 responses: '204': description: Response @@ -73813,9 +73828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *17 - *19 responses: @@ -73833,9 +73848,9 @@ paths: type: integer secrets: type: array - items: *362 + items: *360 examples: - default: *363 + default: *361 headers: Link: *57 x-github: @@ -73860,17 +73875,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 responses: '200': description: Response content: application/json: - schema: *364 + schema: *362 examples: - default: *365 + default: *363 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73892,18 +73907,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *485 + default: *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73925,9 +73940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 requestBody: required: true @@ -73985,9 +74000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *139 responses: '204': @@ -74013,10 +74028,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *314 - - *315 - - *474 - - *333 + - *312 + - *313 + - *472 + - *331 - *19 responses: '200': @@ -74033,9 +74048,9 @@ paths: type: integer variables: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *57 x-github: @@ -74058,9 +74073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 requestBody: required: true content: @@ -74112,18 +74127,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *314 - - *315 - - *474 + - *312 + - *313 + - *472 - *142 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *486 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74144,10 +74159,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 - - *474 + - *472 requestBody: required: true content: @@ -74189,10 +74204,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *314 - - *315 + - *312 + - *313 - *142 - - *474 + - *472 responses: '204': description: Response @@ -74214,8 +74229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -74283,8 +74298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *314 - - *315 + - *312 + - *313 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74443,8 +74458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -74477,9 +74492,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 '400': *14 '422': *15 '403': *27 @@ -74500,8 +74515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -74561,7 +74576,7 @@ paths: schema: oneOf: - *105 - - *487 + - *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74586,8 +74601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *314 - - *315 + - *312 + - *313 - name: file_sha in: path required: true @@ -74687,8 +74702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -74797,7 +74812,7 @@ paths: description: Response content: application/json: - schema: &488 + schema: &486 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75024,15 +75039,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *314 - - *315 - - *444 + - *312 + - *313 + - *442 responses: '200': description: Response content: application/json: - schema: *488 + schema: *486 examples: default: value: @@ -75088,9 +75103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *314 - - *315 - - &489 + - *312 + - *313 + - &487 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -75107,7 +75122,7 @@ paths: application/json: schema: type: array - items: &490 + items: &488 title: Git Reference description: Git references within a repository type: object @@ -75183,17 +75198,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 responses: '200': description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: &491 + default: &489 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75222,8 +75237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75252,9 +75267,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: *491 + default: *489 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75280,9 +75295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 requestBody: required: true content: @@ -75311,9 +75326,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *488 examples: - default: *491 + default: *489 '422': *15 '409': *45 x-github: @@ -75331,9 +75346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *314 - - *315 - - *489 + - *312 + - *313 + - *487 responses: '204': description: Response @@ -75388,8 +75403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75456,7 +75471,7 @@ paths: description: Response content: application/json: - schema: &493 + schema: &491 title: Git Tag description: Metadata for a Git tag type: object @@ -75512,7 +75527,7 @@ paths: - sha - type - url - verification: *492 + verification: *490 required: - sha - url @@ -75522,7 +75537,7 @@ paths: - tag - message examples: - default: &494 + default: &492 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75595,8 +75610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *314 - - *315 + - *312 + - *313 - name: tag_sha in: path required: true @@ -75607,9 +75622,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: *494 + default: *492 '404': *6 '409': *45 x-github: @@ -75633,8 +75648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -75708,7 +75723,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &493 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75810,8 +75825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *314 - - *315 + - *312 + - *313 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75834,7 +75849,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *493 examples: default-response: summary: Default response @@ -75893,8 +75908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -75904,7 +75919,7 @@ paths: application/json: schema: type: array - items: &496 + items: &494 title: Webhook description: Webhooks for repositories. type: object @@ -75967,7 +75982,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &719 + last_response: &717 title: Hook Response type: object properties: @@ -76044,8 +76059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -76098,9 +76113,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: &497 + default: &495 value: type: Repository id: 12345678 @@ -76148,17 +76163,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '200': description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '404': *6 x-github: githubCloudOnly: false @@ -76178,9 +76193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 requestBody: required: true content: @@ -76225,9 +76240,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '422': *15 '404': *6 x-github: @@ -76248,9 +76263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76274,9 +76289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '200': description: Response @@ -76303,9 +76318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 requestBody: required: false content: @@ -76349,11 +76364,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *17 - - *177 + - *175 responses: '200': description: Response @@ -76361,9 +76376,9 @@ paths: application/json: schema: type: array - items: *178 + items: *176 examples: - default: *179 + default: *177 '400': *14 '422': *15 x-github: @@ -76382,18 +76397,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *16 responses: '200': description: Response content: application/json: - schema: *180 + schema: *178 examples: - default: *181 + default: *179 '400': *14 '422': *15 x-github: @@ -76412,9 +76427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 - *16 responses: '202': *37 @@ -76437,9 +76452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76464,9 +76479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *314 - - *315 - - *176 + - *312 + - *313 + - *174 responses: '204': description: Response @@ -76489,8 +76504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response if immutable releases are enabled @@ -76538,8 +76553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '409': *45 @@ -76559,8 +76574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '409': *45 @@ -76617,14 +76632,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &498 + schema: &496 title: Import description: A repository import from an external source. type: object @@ -76731,7 +76746,7 @@ paths: - html_url - authors_url examples: - default: &501 + default: &499 value: vcs: subversion use_lfs: true @@ -76747,7 +76762,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &499 + '503': &497 description: Unavailable due to service under maintenance. content: application/json: @@ -76776,8 +76791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -76825,7 +76840,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: default: value: @@ -76850,7 +76865,7 @@ paths: type: string '422': *15 '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76878,8 +76893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -76931,7 +76946,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: example-1: summary: Example 1 @@ -76979,7 +76994,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77002,12 +77017,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77033,9 +77048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *314 - - *315 - - &659 + - *312 + - *313 + - &657 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77049,7 +77064,7 @@ paths: application/json: schema: type: array - items: &500 + items: &498 title: Porter Author description: Porter Author type: object @@ -77103,7 +77118,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77128,8 +77143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *314 - - *315 + - *312 + - *313 - name: author_id in: path required: true @@ -77159,7 +77174,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: default: value: @@ -77172,7 +77187,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77196,8 +77211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77238,7 +77253,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77266,8 +77281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -77294,11 +77309,11 @@ paths: description: Response content: application/json: - schema: *498 + schema: *496 examples: - default: *501 + default: *499 '422': *15 - '503': *499 + '503': *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77321,8 +77336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77330,8 +77345,8 @@ paths: application/json: schema: *20 examples: - default: *502 - '301': *323 + default: *500 + '301': *321 '404': *6 x-github: githubCloudOnly: false @@ -77351,8 +77366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -77360,12 +77375,12 @@ paths: application/json: schema: anyOf: - - *194 + - *192 - type: object properties: {} additionalProperties: false examples: - default: &504 + default: &502 value: limit: collaborators_only origin: repository @@ -77390,13 +77405,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: application/json: - schema: *503 + schema: *501 examples: default: summary: Example request body @@ -77408,9 +77423,9 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: - default: *504 + default: *502 '409': description: Response x-github: @@ -77432,8 +77447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -77456,8 +77471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -77467,9 +77482,9 @@ paths: application/json: schema: type: array - items: *505 + items: *503 examples: - default: &652 + default: &650 value: - id: 1 repository: @@ -77600,9 +77615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *314 - - *315 - - *198 + - *312 + - *313 + - *196 requestBody: required: false content: @@ -77631,7 +77646,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *503 examples: default: value: @@ -77762,9 +77777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *314 - - *315 - - *198 + - *312 + - *313 + - *196 responses: '204': description: Response @@ -77795,8 +77810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *314 - - *315 + - *312 + - *313 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -77844,7 +77859,7 @@ paths: required: false schema: type: string - - *202 + - *200 - name: sort description: What to sort results by. in: query @@ -77869,7 +77884,7 @@ paths: type: array items: *68 examples: - default: &512 + default: &510 value: - id: 1 node_id: MDU6SXNzdWUx @@ -78017,7 +78032,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *323 + '301': *321 '422': *15 '404': *6 x-github: @@ -78046,8 +78061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -78139,7 +78154,7 @@ paths: application/json: schema: *68 examples: - default: &509 + default: &507 value: id: 1 node_id: MDU6SXNzdWUx @@ -78295,7 +78310,7 @@ paths: '422': *15 '503': *73 '404': *6 - '410': *320 + '410': *318 x-github: triggersNotification: true githubCloudOnly: false @@ -78323,8 +78338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *92 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78345,9 +78360,9 @@ paths: application/json: schema: type: array - items: *506 + items: *504 examples: - default: &511 + default: &509 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78405,17 +78420,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: &507 + default: &505 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78469,8 +78484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -78493,9 +78508,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: *507 + default: *505 '422': *15 x-github: githubCloudOnly: false @@ -78513,8 +78528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -78535,8 +78550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78563,9 +78578,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -78586,8 +78601,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -78620,16 +78635,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -78651,10 +78666,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -78674,8 +78689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -78685,7 +78700,7 @@ paths: application/json: schema: type: array - items: &508 + items: &506 title: Issue Event description: Issue Event type: object @@ -79024,8 +79039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *314 - - *315 + - *312 + - *313 - name: event_id in: path required: true @@ -79036,7 +79051,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *506 examples: default: value: @@ -79229,7 +79244,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *320 + '410': *318 '403': *27 x-github: githubCloudOnly: false @@ -79263,9 +79278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *314 - - *315 - - &510 + - *312 + - *313 + - &508 name: issue_number description: The number that identifies the issue. in: path @@ -79279,10 +79294,10 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '404': *6 - '410': *320 + '410': *318 '304': *35 x-github: githubCloudOnly: false @@ -79307,9 +79322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -79430,13 +79445,13 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 '422': *15 '503': *73 '403': *27 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79454,9 +79469,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -79484,7 +79499,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79500,9 +79515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: content: application/json: @@ -79529,7 +79544,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79551,9 +79566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: assignee in: path required: true @@ -79593,9 +79608,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *75 - *17 - *19 @@ -79606,13 +79621,13 @@ paths: application/json: schema: type: array - items: *506 + items: *504 examples: - default: *511 + default: *509 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79641,9 +79656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -79665,16 +79680,16 @@ paths: description: Response content: application/json: - schema: *506 + schema: *504 examples: - default: *507 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -79702,9 +79717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79716,12 +79731,12 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79749,9 +79764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -79775,15 +79790,15 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *323 + '301': *321 '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -79814,9 +79829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79830,13 +79845,13 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 x-github: triggersNotification: true githubCloudOnly: false @@ -79862,9 +79877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79876,12 +79891,12 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79898,9 +79913,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -79914,7 +79929,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &514 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79963,7 +79978,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &515 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -80091,7 +80106,7 @@ paths: - performed_via_github_app - assignee - assigner - - &516 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -80137,7 +80152,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &517 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -80183,7 +80198,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &518 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80232,7 +80247,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &519 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80274,7 +80289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &520 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80316,7 +80331,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &521 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80372,7 +80387,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -80417,7 +80432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &523 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80478,7 +80493,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80539,7 +80554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80600,7 +80615,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80693,7 +80708,7 @@ paths: color: red headers: Link: *57 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80710,9 +80725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -80724,7 +80739,7 @@ paths: type: array items: *67 examples: - default: &513 + default: &511 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80742,9 +80757,9 @@ paths: default: false headers: Link: *57 - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80761,9 +80776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -80824,10 +80839,10 @@ paths: type: array items: *67 examples: - default: *513 - '301': *323 + default: *511 + '301': *321 '404': *6 - '410': *320 + '410': *318 '422': *15 x-github: githubCloudOnly: false @@ -80844,9 +80859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -80908,10 +80923,10 @@ paths: type: array items: *67 examples: - default: *513 - '301': *323 + default: *511 + '301': *321 '404': *6 - '410': *320 + '410': *318 '422': *15 x-github: githubCloudOnly: false @@ -80928,15 +80943,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '204': description: Response - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80955,9 +80970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - name: name in: path required: true @@ -80981,9 +80996,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *323 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81003,9 +81018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: false content: @@ -81034,7 +81049,7 @@ paths: '204': description: Response '403': *27 - '410': *320 + '410': *318 '404': *6 '422': *15 x-github: @@ -81052,9 +81067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '204': description: Response @@ -81084,9 +81099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 responses: '200': description: Response @@ -81094,10 +81109,10 @@ paths: application/json: schema: *68 examples: - default: *509 - '301': *323 + default: *507 + '301': *321 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81114,9 +81129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - 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. @@ -81142,13 +81157,13 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81166,9 +81181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81200,16 +81215,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -81231,10 +81246,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *314 - - *315 - - *510 - - *310 + - *312 + - *313 + - *508 + - *308 responses: '204': description: Response @@ -81263,9 +81278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81289,7 +81304,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81322,9 +81337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -81336,11 +81351,11 @@ paths: type: array items: *68 examples: - default: *512 + default: *510 headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81368,9 +81383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81399,14 +81414,14 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *320 + '410': *318 '422': *15 '404': *6 x-github: @@ -81426,9 +81441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 requestBody: required: true content: @@ -81461,7 +81476,7 @@ paths: application/json: schema: *68 examples: - default: *509 + default: *507 '403': *27 '404': *6 '422': *7 @@ -81483,9 +81498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *314 - - *315 - - *510 + - *312 + - *313 + - *508 - *17 - *19 responses: @@ -81500,6 +81515,8 @@ paths: description: Timeline Event type: object anyOf: + - *512 + - *513 - *514 - *515 - *516 @@ -81511,8 +81528,6 @@ paths: - *522 - *523 - *524 - - *525 - - *526 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81841,7 +81856,7 @@ paths: type: string comments: type: array - items: &545 + items: &543 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -82079,7 +82094,7 @@ paths: type: string comments: type: array - items: *442 + items: *440 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82354,7 +82369,7 @@ paths: headers: Link: *57 '404': *6 - '410': *320 + '410': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82371,8 +82386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -82382,7 +82397,7 @@ paths: application/json: schema: type: array - items: &527 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82450,8 +82465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -82487,9 +82502,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: - default: &528 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -82523,9 +82538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *314 - - *315 - - &529 + - *312 + - *313 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -82537,9 +82552,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: - default: *528 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -82557,9 +82572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *314 - - *315 - - *529 + - *312 + - *313 + - *527 responses: '204': description: Response @@ -82579,8 +82594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -82592,7 +82607,7 @@ paths: type: array items: *67 examples: - default: *513 + default: *511 headers: Link: *57 '404': *6 @@ -82613,8 +82628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -82652,7 +82667,7 @@ paths: application/json: schema: *67 examples: - default: &530 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82684,8 +82699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82698,7 +82713,7 @@ paths: application/json: schema: *67 examples: - default: *530 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -82715,8 +82730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82781,8 +82796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *314 - - *315 + - *312 + - *313 - name: name in: path required: true @@ -82808,8 +82823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -82848,9 +82863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *314 - - *315 - - *420 + - *312 + - *313 + - *418 responses: '200': description: Response @@ -82997,8 +83012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83063,8 +83078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83098,9 +83113,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *443 + schema: *441 examples: - default: *531 + default: *529 '204': description: Response when already merged '404': @@ -83125,8 +83140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83167,7 +83182,7 @@ paths: application/json: schema: type: array - items: *238 + items: *236 examples: default: value: @@ -83223,8 +83238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83264,9 +83279,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: &532 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83325,9 +83340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *314 - - *315 - - &533 + - *312 + - *313 + - &531 name: milestone_number description: The number that identifies the milestone. in: path @@ -83339,9 +83354,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: *532 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83358,9 +83373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 requestBody: required: false content: @@ -83398,9 +83413,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *236 examples: - default: *532 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83416,9 +83431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 responses: '204': description: Response @@ -83439,9 +83454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *314 - - *315 - - *533 + - *312 + - *313 + - *531 - *17 - *19 responses: @@ -83453,7 +83468,7 @@ paths: type: array items: *67 examples: - default: *513 + default: *511 headers: Link: *57 x-github: @@ -83472,12 +83487,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *314 - - *315 - - *534 - - *535 + - *312 + - *313 + - *532 + - *533 - *75 - - *536 + - *534 - *17 - *19 responses: @@ -83489,7 +83504,7 @@ paths: type: array items: *95 examples: - default: *537 + default: *535 headers: Link: *57 x-github: @@ -83513,8 +83528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -83572,14 +83587,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &538 + schema: &536 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83723,7 +83738,7 @@ paths: - custom_404 - public examples: - default: &539 + default: &537 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83764,8 +83779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83820,9 +83835,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *536 examples: - default: *539 + default: *537 '422': *15 '409': *45 x-github: @@ -83845,8 +83860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -83946,8 +83961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -83973,8 +83988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -83984,7 +83999,7 @@ paths: application/json: schema: type: array - items: &540 + items: &538 title: Page Build description: Page Build type: object @@ -84076,8 +84091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *314 - - *315 + - *312 + - *313 responses: '201': description: Response @@ -84124,16 +84139,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *540 + schema: *538 examples: - default: &541 + default: &539 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84181,8 +84196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *314 - - *315 + - *312 + - *313 - name: build_id in: path required: true @@ -84193,9 +84208,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *538 examples: - default: *541 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84215,8 +84230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84324,9 +84339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *314 - - *315 - - &542 + - *312 + - *313 + - &540 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84384,9 +84399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *314 - - *315 - - *542 + - *312 + - *313 + - *540 responses: '204': *156 '404': *6 @@ -84413,8 +84428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -84709,8 +84724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Private vulnerability reporting status @@ -84747,8 +84762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '422': *14 @@ -84769,8 +84784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': *156 '422': *14 @@ -84793,8 +84808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#list-repository-projects parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: Indicates the state of the projects to return. in: query @@ -84815,7 +84830,7 @@ paths: application/json: schema: type: array - items: *232 + items: *230 examples: default: value: @@ -84855,7 +84870,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -84878,8 +84893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/projects#create-a-repository-project parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84905,13 +84920,13 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: - default: *319 + default: *317 '401': *23 '403': *27 '404': *6 - '410': *320 + '410': *318 '422': *7 x-github: githubCloudOnly: false @@ -84934,8 +84949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -84943,7 +84958,7 @@ paths: application/json: schema: type: array - items: *249 + items: *247 examples: default: value: @@ -84974,8 +84989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -84987,7 +85002,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *249 + items: *247 required: - properties examples: @@ -85037,8 +85052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *314 - - *315 + - *312 + - *313 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -85098,9 +85113,9 @@ paths: application/json: schema: type: array - items: *447 + items: *445 examples: - default: *543 + default: *541 headers: Link: *57 '304': *35 @@ -85132,8 +85147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -85200,7 +85215,7 @@ paths: description: Response content: application/json: - schema: &547 + schema: &545 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85329,7 +85344,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 active_lock_reason: type: - string @@ -85384,7 +85399,7 @@ paths: type: - array - 'null' - items: *214 + items: *212 head: type: object properties: @@ -85422,14 +85437,14 @@ paths: _links: type: object properties: - comments: *239 - commits: *239 - statuses: *239 - html: *239 - issue: *239 - review_comments: *239 - review_comment: *239 - self: *239 + comments: *237 + commits: *237 + statuses: *237 + html: *237 + issue: *237 + review_comments: *237 + review_comment: *237 + self: *237 required: - comments - commits @@ -85440,7 +85455,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: *544 + auto_merge: *542 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85542,7 +85557,7 @@ paths: - merged_by - review_comments examples: - default: &548 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86069,8 +86084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: sort in: query required: false @@ -86099,9 +86114,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: &550 + default: &548 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86178,17 +86193,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '200': description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: &546 + default: &544 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86263,8 +86278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -86287,9 +86302,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: *546 + default: *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86305,8 +86320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 + - *312 + - *313 - *84 responses: '204': @@ -86328,8 +86343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86356,9 +86371,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -86379,8 +86394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *314 - - *315 + - *312 + - *313 - *84 requestBody: required: true @@ -86413,16 +86428,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -86444,10 +86459,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *314 - - *315 + - *312 + - *313 - *84 - - *310 + - *308 responses: '204': description: Response @@ -86490,9 +86505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *314 - - *315 - - &549 + - *312 + - *313 + - &547 name: pull_number description: The number that identifies the pull request. in: path @@ -86505,9 +86520,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 '304': *35 '404': *6 '406': @@ -86542,9 +86557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -86586,9 +86601,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 '422': *15 '403': *27 x-github: @@ -86610,9 +86625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -86673,17 +86688,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -86713,9 +86728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *92 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86736,9 +86751,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: *550 + default: *548 headers: Link: *57 x-github: @@ -86771,9 +86786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -86879,7 +86894,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: example-for-a-multi-line-comment: value: @@ -86967,9 +86982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *84 requestBody: required: true @@ -86992,7 +87007,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: default: value: @@ -87078,9 +87093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -87090,9 +87105,9 @@ paths: application/json: schema: type: array - items: *443 + items: *441 examples: - default: *551 + default: *549 headers: Link: *57 x-github: @@ -87122,9 +87137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -87134,7 +87149,7 @@ paths: application/json: schema: type: array - items: *454 + items: *452 examples: default: value: @@ -87172,9 +87187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 responses: '204': description: Response if pull request has been merged @@ -87197,9 +87212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -87311,9 +87326,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 responses: '200': description: Response @@ -87388,9 +87403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -87427,7 +87442,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -87963,9 +87978,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: true content: @@ -87999,7 +88014,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -88504,9 +88519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 - *17 - *19 responses: @@ -88516,7 +88531,7 @@ paths: application/json: schema: type: array - items: &552 + items: &550 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88672,9 +88687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -88764,9 +88779,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: &554 + default: &552 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88829,10 +88844,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - &553 + - *312 + - *313 + - *547 + - &551 name: review_id description: The unique identifier of the review. in: path @@ -88844,9 +88859,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: &555 + default: &553 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88905,10 +88920,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -88931,7 +88946,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: default: value: @@ -88993,18 +89008,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 responses: '200': description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: *554 + default: *552 '422': *7 '404': *6 x-github: @@ -89031,10 +89046,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 - *17 - *19 responses: @@ -89132,9 +89147,9 @@ paths: _links: type: object properties: - self: *239 - html: *239 - pull_request: *239 + self: *237 + html: *237 + pull_request: *237 required: - self - html @@ -89292,10 +89307,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -89324,7 +89339,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: default: value: @@ -89387,10 +89402,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *314 - - *315 - - *549 - - *553 + - *312 + - *313 + - *547 + - *551 requestBody: required: true content: @@ -89425,9 +89440,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *550 examples: - default: *555 + default: *553 '404': *6 '422': *7 '403': *27 @@ -89449,9 +89464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *314 - - *315 - - *549 + - *312 + - *313 + - *547 requestBody: required: false content: @@ -89515,8 +89530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *314 - - *315 + - *312 + - *313 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89529,9 +89544,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *554 examples: - default: &557 + default: &555 value: type: file encoding: base64 @@ -89573,8 +89588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *314 - - *315 + - *312 + - *313 - name: dir description: The alternate path to look for a README file in: path @@ -89594,9 +89609,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *554 examples: - default: *557 + default: *555 '404': *6 '422': *15 x-github: @@ -89618,8 +89633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -89629,7 +89644,7 @@ paths: application/json: schema: type: array - items: *558 + items: *556 examples: default: value: @@ -89723,8 +89738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -89800,9 +89815,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: &562 + default: &560 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89907,9 +89922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *314 - - *315 - - &560 + - *312 + - *313 + - &558 name: asset_id description: The unique identifier of the asset. in: path @@ -89921,9 +89936,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: - default: &561 + default: &559 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 @@ -89958,7 +89973,7 @@ paths: type: User site_admin: false '404': *6 - '302': *456 + '302': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89974,9 +89989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *314 - - *315 - - *560 + - *312 + - *313 + - *558 requestBody: required: false content: @@ -90005,9 +90020,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: - default: *561 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90023,9 +90038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *314 - - *315 - - *560 + - *312 + - *313 + - *558 responses: '204': description: Response @@ -90049,8 +90064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -90136,16 +90151,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90162,8 +90177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *314 - - *315 + - *312 + - *313 - name: tag description: tag parameter in: path @@ -90176,9 +90191,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 '404': *6 x-github: githubCloudOnly: false @@ -90200,9 +90215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *314 - - *315 - - &563 + - *312 + - *313 + - &561 name: release_id description: The unique identifier of the release. in: path @@ -90216,9 +90231,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: *558 + schema: *556 examples: - default: *562 + default: *560 '401': description: Unauthorized x-github: @@ -90236,9 +90251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 requestBody: required: false content: @@ -90302,9 +90317,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *562 + default: *560 '404': description: Not Found if the discussion category name is invalid content: @@ -90325,9 +90340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 responses: '204': description: Response @@ -90347,9 +90362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - *17 - *19 responses: @@ -90359,7 +90374,7 @@ paths: application/json: schema: type: array - items: *559 + items: *557 examples: default: value: @@ -90440,9 +90455,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - name: name in: query required: true @@ -90468,7 +90483,7 @@ paths: description: Response for successful upload content: application/json: - schema: *559 + schema: *557 examples: response-for-successful-upload: value: @@ -90523,9 +90538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 - 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. @@ -90549,9 +90564,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 '404': *6 @@ -90572,9 +90587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *314 - - *315 - - *563 + - *312 + - *313 + - *561 requestBody: required: true content: @@ -90604,16 +90619,16 @@ paths: description: Reaction exists content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '201': description: Reaction created content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 '422': *15 x-github: githubCloudOnly: false @@ -90635,10 +90650,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *314 - - *315 - - *563 - - *310 + - *312 + - *313 + - *561 + - *308 responses: '204': description: Response @@ -90662,9 +90677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *314 - - *315 - - *384 + - *312 + - *313 + - *382 - *17 - *19 responses: @@ -90680,8 +90695,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *256 - - &564 + - *254 + - &562 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90700,69 +90715,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. + - allOf: + - *255 + - *562 + - allOf: + - *256 + - *562 - allOf: - *257 - - *564 + - *562 + - allOf: + - *563 + - *562 - allOf: - *258 - - *564 + - *562 - allOf: - *259 - - *564 - - allOf: - - *565 - - *564 + - *562 - allOf: - *260 - - *564 + - *562 - allOf: - *261 - - *564 + - *562 - allOf: - *262 - - *564 + - *562 - allOf: - *263 - - *564 + - *562 - allOf: - *264 - - *564 + - *562 - allOf: - *265 - - *564 + - *562 - allOf: - *266 - - *564 + - *562 - allOf: - *267 - - *564 + - *562 - allOf: - *268 - - *564 + - *562 - allOf: - *269 - - *564 + - *562 - allOf: - *270 - - *564 + - *562 - allOf: - *271 - - *564 + - *562 - allOf: - *272 - - *564 + - *562 - allOf: - *273 - - *564 - - allOf: - - *274 - - *564 - - allOf: - - *275 - - *564 + - *562 - allOf: - - *566 - *564 + - *562 examples: default: value: @@ -90801,8 +90816,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - name: includes_parents @@ -90813,7 +90828,7 @@ paths: schema: type: boolean default: true - - *567 + - *565 responses: '200': description: Response @@ -90821,7 +90836,7 @@ paths: application/json: schema: type: array - items: *276 + items: *274 examples: default: value: @@ -90868,8 +90883,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 requestBody: description: Request body required: true @@ -90889,16 +90904,16 @@ paths: - tag - push default: branch - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *251 + items: *252 + conditions: *249 rules: type: array description: An array of rules within the ruleset. - items: *568 + items: *566 required: - name - enforcement @@ -90929,9 +90944,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: &578 + default: &576 value: id: 42 name: super cool ruleset @@ -90978,12 +90993,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *314 - - *315 + - *312 + - *313 + - *567 + - *568 - *569 - *570 - - *571 - - *572 - *17 - *19 responses: @@ -90991,9 +91006,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '404': *6 '500': *100 x-github: @@ -91014,17 +91029,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *314 - - *315 - - *575 + - *312 + - *313 + - *573 responses: '200': description: Response content: application/json: - schema: *576 + schema: *574 examples: - default: *577 + default: *575 '404': *6 '500': *100 x-github: @@ -91052,8 +91067,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91073,9 +91088,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *578 + default: *576 '404': *6 '500': *100 put: @@ -91093,8 +91108,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91119,16 +91134,16 @@ paths: - branch - tag - push - enforcement: *253 + enforcement: *251 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *254 - conditions: *251 + items: *252 + conditions: *249 rules: description: An array of rules within the ruleset. type: array - items: *568 + items: *566 examples: default: value: @@ -91156,9 +91171,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *274 examples: - default: *578 + default: *576 '404': *6 '500': *100 delete: @@ -91176,8 +91191,8 @@ paths: category: repos subcategory: rules parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91200,8 +91215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 - name: ruleset_id @@ -91217,9 +91232,9 @@ paths: application/json: schema: type: array - items: *279 + items: *277 examples: - default: *579 + default: *577 '404': *6 '500': *100 x-github: @@ -91238,8 +91253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *314 - - *315 + - *312 + - *313 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91257,7 +91272,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *578 examples: default: value: @@ -91312,21 +91327,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 + - *278 + - *279 - *280 - *281 - - *282 - - *283 - *46 - *19 - *17 - - *581 - - *582 + - *579 + - *580 + - *282 + - *283 - *284 - *285 - - *286 - - *287 responses: '200': description: Response @@ -91334,7 +91349,7 @@ paths: application/json: schema: type: array - items: &586 + items: &584 type: object properties: number: *52 @@ -91350,8 +91365,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *583 - resolution: *584 + state: *581 + resolution: *582 resolved_at: type: - string @@ -91445,7 +91460,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *585 + - *583 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91590,16 +91605,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 - - *287 + - *312 + - *313 + - *412 + - *285 responses: '200': description: Response content: application/json: - schema: *586 + schema: *584 examples: default: value: @@ -91651,9 +91666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 requestBody: required: true content: @@ -91661,8 +91676,8 @@ paths: schema: type: object properties: - state: *583 - resolution: *584 + state: *581 + resolution: *582 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91681,7 +91696,7 @@ paths: description: Response content: application/json: - schema: *586 + schema: *584 examples: default: value: @@ -91756,9 +91771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *314 - - *315 - - *414 + - *312 + - *313 + - *412 - *19 - *17 responses: @@ -91769,7 +91784,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &739 + items: &737 type: object properties: type: @@ -91796,6 +91811,8 @@ paths: - commit details: oneOf: + - *585 + - *586 - *587 - *588 - *589 @@ -91807,8 +91824,6 @@ paths: - *595 - *596 - *597 - - *598 - - *599 examples: default: value: @@ -91894,8 +91909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -91903,14 +91918,14 @@ paths: schema: type: object properties: - reason: &601 + reason: &599 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *600 + placeholder_id: *598 required: - reason - placeholder_id @@ -91927,7 +91942,7 @@ paths: schema: type: object properties: - reason: *601 + reason: *599 expire_at: type: - string @@ -91971,8 +91986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91987,7 +92002,7 @@ paths: properties: incremental_scans: type: array - items: &602 + items: &600 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92015,15 +92030,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *602 + items: *600 backfill_scans: type: array - items: *602 + items: *600 custom_pattern_backfill_scans: type: array items: allOf: - - *602 + - *600 - type: object properties: pattern_name: @@ -92093,8 +92108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *314 - - *315 + - *312 + - *313 - *46 - name: sort description: The property to sort the results by. @@ -92138,9 +92153,9 @@ paths: application/json: schema: type: array - items: *603 + items: *601 examples: - default: *604 + default: *602 '400': *14 '404': *6 x-github: @@ -92163,8 +92178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -92244,7 +92259,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 required: - login - type @@ -92334,9 +92349,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: &606 + default: &604 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92569,8 +92584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -92683,7 +92698,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: default: value: @@ -92830,17 +92845,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '200': description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: *606 + default: *604 '403': *27 '404': *6 x-github: @@ -92864,9 +92879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 requestBody: required: true content: @@ -92946,7 +92961,7 @@ paths: login: type: string description: The username of the user credited. - type: *292 + type: *290 required: - login - type @@ -93037,10 +93052,10 @@ paths: description: Response content: application/json: - schema: *603 + schema: *601 examples: - default: *606 - add_credit: *606 + default: *604 + add_credit: *604 '403': *27 '404': *6 '422': @@ -93078,9 +93093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '202': *37 '400': *14 @@ -93107,17 +93122,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *314 - - *315 - - *605 + - *312 + - *313 + - *603 responses: '202': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 '400': *14 '422': *15 '403': *27 @@ -93143,8 +93158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -93240,8 +93255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93250,7 +93265,7 @@ paths: application/json: schema: type: array - items: &607 + items: &605 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93283,8 +93298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -93362,8 +93377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -93457,8 +93472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93612,8 +93627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93623,7 +93638,7 @@ paths: application/json: schema: type: array - items: *607 + items: *605 examples: default: value: @@ -93656,8 +93671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *314 - - *315 + - *312 + - *313 - name: sha in: path required: true @@ -93713,7 +93728,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *606 examples: default: value: @@ -93767,8 +93782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -93800,14 +93815,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &609 + schema: &607 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93880,8 +93895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: false content: @@ -93907,7 +93922,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: default: value: @@ -93934,8 +93949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -93955,8 +93970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -94038,8 +94053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94047,7 +94062,7 @@ paths: application/json: schema: type: array - items: &610 + items: &608 title: Tag protection description: Tag protection type: object @@ -94104,8 +94119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -94128,7 +94143,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *608 examples: default: value: @@ -94159,8 +94174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94197,8 +94212,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *314 - - *315 + - *312 + - *313 - name: ref in: path required: true @@ -94234,8 +94249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *314 - - *315 + - *312 + - *313 - *17 - *19 responses: @@ -94247,7 +94262,7 @@ paths: type: array items: *161 examples: - default: *215 + default: *213 headers: Link: *57 '404': *6 @@ -94267,8 +94282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *314 - - *315 + - *312 + - *313 - *19 - *17 responses: @@ -94276,7 +94291,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &609 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94288,7 +94303,7 @@ paths: required: - names examples: - default: &612 + default: &610 value: names: - octocat @@ -94311,8 +94326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -94343,9 +94358,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *609 examples: - default: *612 + default: *610 '404': *6 '422': *7 x-github: @@ -94366,9 +94381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *314 - - *315 - - &613 + - *312 + - *313 + - &611 name: per description: The time frame to display results for. in: query @@ -94399,7 +94414,7 @@ paths: - 128 clones: type: array - items: &614 + items: &612 title: Traffic type: object properties: @@ -94486,8 +94501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94581,8 +94596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response @@ -94645,9 +94660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *314 - - *315 - - *613 + - *312 + - *313 + - *611 responses: '200': description: Response @@ -94668,7 +94683,7 @@ paths: - 3782 views: type: array - items: *614 + items: *612 required: - uniques - count @@ -94745,8 +94760,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *314 - - *315 + - *312 + - *313 requestBody: required: true content: @@ -95020,8 +95035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -95044,8 +95059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -95067,8 +95082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -95094,8 +95109,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *314 - - *315 + - *312 + - *313 - name: ref in: path required: true @@ -95187,9 +95202,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95438,7 +95453,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &615 + text_matches: &613 title: Search Result Text Matches type: array items: @@ -95601,7 +95616,7 @@ paths: enum: - author-date - committer-date - - &616 + - &614 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 @@ -95670,7 +95685,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 comment_count: type: integer message: @@ -95689,7 +95704,7 @@ paths: url: type: string format: uri - verification: *492 + verification: *490 required: - author - committer @@ -95704,7 +95719,7 @@ paths: committer: anyOf: - type: 'null' - - *382 + - *380 parents: type: array items: @@ -95721,7 +95736,7 @@ paths: type: number node_id: type: string - text_matches: *615 + text_matches: *613 required: - sha - node_id @@ -95913,7 +95928,7 @@ paths: - interactions - created - updated - - *616 + - *614 - *17 - *19 - name: advanced_search @@ -96010,11 +96025,11 @@ paths: type: - string - 'null' - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: type: string state_reason: @@ -96028,7 +96043,7 @@ paths: milestone: anyOf: - type: 'null' - - *238 + - *236 comments: type: integer created_at: @@ -96042,7 +96057,7 @@ paths: - string - 'null' format: date-time - text_matches: *615 + text_matches: *613 pull_request: type: object properties: @@ -96091,7 +96106,7 @@ paths: timeline_url: type: string format: uri - type: *199 + type: *197 performed_via_github_app: anyOf: - type: 'null' @@ -96265,7 +96280,7 @@ paths: enum: - created - updated - - *616 + - *614 - *17 - *19 responses: @@ -96310,7 +96325,7 @@ paths: - 'null' score: type: number - text_matches: *615 + text_matches: *613 required: - id - node_id @@ -96395,7 +96410,7 @@ paths: - forks - help-wanted-issues - updated - - *616 + - *614 - *17 - *19 responses: @@ -96632,7 +96647,7 @@ paths: - admin - pull - push - text_matches: *615 + text_matches: *613 temp_clone_token: type: string allow_merge_commit: @@ -96940,7 +96955,7 @@ paths: - string - 'null' format: uri - text_matches: *615 + text_matches: *613 related: type: - array @@ -97133,7 +97148,7 @@ paths: - followers - repositories - joined - - *616 + - *614 - *17 - *19 responses: @@ -97243,7 +97258,7 @@ paths: type: - boolean - 'null' - text_matches: *615 + text_matches: *613 blog: type: - string @@ -97325,7 +97340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &620 + - &618 name: team_id description: The unique identifier of the team. in: path @@ -97337,9 +97352,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 x-github: githubCloudOnly: false @@ -97366,7 +97381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *620 + - *618 requestBody: required: true content: @@ -97430,16 +97445,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '201': description: Response content: application/json: - schema: *299 + schema: *297 examples: - default: *300 + default: *298 '404': *6 '422': *15 '403': *27 @@ -97467,7 +97482,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *620 + - *618 responses: '204': description: Response @@ -97498,7 +97513,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *620 + - *618 - *46 - *17 - *19 @@ -97509,9 +97524,9 @@ paths: application/json: schema: type: array - items: *301 + items: *299 examples: - default: *621 + default: *619 headers: Link: *57 x-github: @@ -97540,7 +97555,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *620 + - *618 requestBody: required: true content: @@ -97574,9 +97589,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: triggersNotification: true githubCloudOnly: false @@ -97603,16 +97618,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 responses: '200': description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *302 + default: *300 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97637,8 +97652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: false content: @@ -97661,9 +97676,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *299 examples: - default: *622 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97688,8 +97703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 responses: '204': description: Response @@ -97718,8 +97733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *620 - - *303 + - *618 + - *301 - *46 - *17 - *19 @@ -97730,9 +97745,9 @@ paths: application/json: schema: type: array - items: *304 + items: *302 examples: - default: *623 + default: *621 headers: Link: *57 x-github: @@ -97761,8 +97776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: true content: @@ -97784,9 +97799,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: triggersNotification: true githubCloudOnly: false @@ -97813,17 +97828,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 responses: '200': description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *305 + default: *303 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97848,9 +97863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 requestBody: required: true content: @@ -97872,9 +97887,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *302 examples: - default: *624 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97899,9 +97914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 responses: '204': description: Response @@ -97930,9 +97945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -97958,9 +97973,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -97989,9 +98004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *620 - - *303 - - *306 + - *618 + - *301 + - *304 requestBody: required: true content: @@ -98023,9 +98038,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98051,8 +98066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -98078,9 +98093,9 @@ paths: application/json: schema: type: array - items: *307 + items: *305 examples: - default: *309 + default: *307 headers: Link: *57 x-github: @@ -98109,8 +98124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *620 - - *303 + - *618 + - *301 requestBody: required: true content: @@ -98142,9 +98157,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *305 examples: - default: *308 + default: *306 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98168,7 +98183,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98178,9 +98193,9 @@ paths: application/json: schema: type: array - items: *196 + items: *194 examples: - default: *197 + default: *195 headers: Link: *57 x-github: @@ -98206,7 +98221,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *620 + - *618 - name: role description: Filters members returned by their role in the team. in: query @@ -98257,7 +98272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98294,7 +98309,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98334,7 +98349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98371,16 +98386,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 responses: '200': description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-user-is-a-team-maintainer: *625 + response-if-user-is-a-team-maintainer: *623 '404': *6 x-github: githubCloudOnly: false @@ -98413,7 +98428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 requestBody: required: false @@ -98439,9 +98454,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *309 examples: - response-if-users-membership-with-team-is-now-pending: *626 + response-if-users-membership-with-team-is-now-pending: *624 '403': description: Forbidden if team synchronization is set up '422': @@ -98475,7 +98490,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *620 + - *618 - *62 responses: '204': @@ -98504,7 +98519,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98514,9 +98529,9 @@ paths: application/json: schema: type: array - items: *312 + items: *310 examples: - default: *627 + default: *625 headers: Link: *57 '404': *6 @@ -98542,16 +98557,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *620 - - *313 + - *618 + - *311 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *628 + default: *626 '404': description: Not Found if project is not managed by this team x-github: @@ -98575,8 +98590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *620 - - *313 + - *618 + - *311 requestBody: required: false content: @@ -98643,8 +98658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *620 - - *313 + - *618 + - *311 responses: '204': description: Response @@ -98671,7 +98686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98683,7 +98698,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '404': *6 @@ -98713,15 +98728,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *629 + schema: *627 examples: alternative-response-with-extra-repository-information: value: @@ -98872,9 +98887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 requestBody: required: false content: @@ -98924,9 +98939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *620 - - *314 - - *315 + - *618 + - *312 + - *313 responses: '204': description: Response @@ -98951,7 +98966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *620 + - *618 - *17 - *19 responses: @@ -98963,7 +98978,7 @@ paths: type: array items: *161 examples: - response-if-child-teams-exist: *630 + response-if-child-teams-exist: *628 headers: Link: *57 '404': *6 @@ -98996,7 +99011,7 @@ paths: application/json: schema: oneOf: - - &632 + - &630 title: Private User description: Private User type: object @@ -99246,7 +99261,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *631 + - *629 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99406,7 +99421,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *630 examples: default: value: @@ -99609,9 +99624,9 @@ paths: type: integer codespaces: type: array - items: *204 + items: *202 examples: - default: *205 + default: *203 '304': *35 '500': *100 '401': *23 @@ -99750,17 +99765,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -99804,7 +99819,7 @@ paths: type: integer secrets: type: array - items: &633 + items: &631 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99846,7 +99861,7 @@ paths: - visibility - selected_repositories_url examples: - default: *436 + default: *434 headers: Link: *57 x-github: @@ -99924,7 +99939,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *631 examples: default: value: @@ -100070,7 +100085,7 @@ paths: type: array items: *131 examples: - default: *634 + default: *632 '401': *23 '403': *27 '404': *6 @@ -100214,15 +100229,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '304': *35 '500': *100 '401': *23 @@ -100248,7 +100263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 requestBody: required: false content: @@ -100278,9 +100293,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '401': *23 '403': *27 '404': *6 @@ -100302,7 +100317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '202': *37 '304': *35 @@ -100331,13 +100346,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '202': description: Response content: application/json: - schema: &635 + schema: &633 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100390,7 +100405,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &636 + default: &634 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100422,7 +100437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *206 + - *204 - name: export_id in: path required: true @@ -100435,9 +100450,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *633 examples: - default: *636 + default: *634 '404': *6 x-github: githubCloudOnly: false @@ -100458,7 +100473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *206 + - *204 responses: '200': description: Response @@ -100474,9 +100489,9 @@ paths: type: integer machines: type: array - items: *435 + items: *433 examples: - default: *637 + default: *635 '304': *35 '500': *100 '401': *23 @@ -100505,7 +100520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *206 + - *204 requestBody: required: true content: @@ -100561,11 +100576,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *322 + repository: *320 machine: anyOf: - type: 'null' - - *435 + - *433 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -101362,15 +101377,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '304': *35 '500': *100 '400': *14 @@ -101402,15 +101417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *206 + - *204 responses: '200': description: Response content: application/json: - schema: *204 + schema: *202 examples: - default: *434 + default: *432 '500': *100 '401': *23 '403': *27 @@ -101440,9 +101455,9 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: &649 + default: &647 value: - id: 197 name: hello_docker @@ -101543,7 +101558,7 @@ paths: application/json: schema: type: array - items: &638 + items: &636 title: Email description: Email type: object @@ -101613,9 +101628,9 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: - default: &651 + default: &649 value: - email: octocat@github.com verified: true @@ -101692,7 +101707,7 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: default: value: @@ -101950,7 +101965,7 @@ paths: application/json: schema: type: array - items: &639 + items: &637 title: GPG Key description: A unique encryption key type: object @@ -102095,7 +102110,7 @@ paths: - subkeys - revoked examples: - default: &665 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -102180,9 +102195,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: &640 + default: &638 value: id: 3 name: Octocat's GPG Key @@ -102239,7 +102254,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &641 + - &639 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102251,9 +102266,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: *640 + default: *638 '404': *6 '304': *35 '403': *27 @@ -102276,7 +102291,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *641 + - *639 responses: '204': description: Response @@ -102552,12 +102567,12 @@ paths: application/json: schema: anyOf: - - *194 + - *192 - type: object properties: {} additionalProperties: false examples: - default: *195 + default: *193 '204': description: Response when there are no restrictions x-github: @@ -102581,7 +102596,7 @@ paths: required: true content: application/json: - schema: *503 + schema: *501 examples: default: value: @@ -102592,7 +102607,7 @@ paths: description: Response content: application/json: - schema: *194 + schema: *192 examples: default: value: @@ -102673,7 +102688,7 @@ paths: - closed - all default: open - - *202 + - *200 - name: sort description: What to sort results by. in: query @@ -102698,7 +102713,7 @@ paths: type: array items: *68 examples: - default: *203 + default: *201 headers: Link: *57 '404': *6 @@ -102731,7 +102746,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Key description: Key type: object @@ -102834,9 +102849,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *640 examples: - default: &643 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102869,15 +102884,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *529 + - *527 responses: '200': description: Response content: application/json: - schema: *642 + schema: *640 examples: - default: *643 + default: *641 '404': *6 '304': *35 '403': *27 @@ -102900,7 +102915,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *529 + - *527 responses: '204': description: Response @@ -102933,7 +102948,7 @@ paths: application/json: schema: type: array - items: &644 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103012,7 +103027,7 @@ paths: - account - plan examples: - default: &645 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103074,9 +103089,9 @@ paths: application/json: schema: type: array - items: *644 + items: *642 examples: - default: *645 + default: *643 headers: Link: *57 '304': *35 @@ -103116,7 +103131,7 @@ paths: application/json: schema: type: array - items: *208 + items: *206 examples: default: value: @@ -103224,7 +103239,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: default: value: @@ -103307,7 +103322,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *206 examples: default: value: @@ -103375,7 +103390,7 @@ paths: application/json: schema: type: array - items: *210 + items: *208 examples: default: value: @@ -103637,7 +103652,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -103817,7 +103832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *211 + - *209 - name: exclude in: query required: false @@ -103830,7 +103845,7 @@ paths: description: Response content: application/json: - schema: *210 + schema: *208 examples: default: value: @@ -104024,7 +104039,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *211 + - *209 responses: '302': description: Response @@ -104050,7 +104065,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *211 + - *209 responses: '204': description: Response @@ -104079,8 +104094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *211 - - *646 + - *209 + - *644 responses: '204': description: Response @@ -104104,7 +104119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *211 + - *209 - *17 - *19 responses: @@ -104116,7 +104131,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '404': *6 @@ -104153,7 +104168,7 @@ paths: type: array items: *160 examples: - default: *647 + default: *645 headers: Link: *57 '304': *35 @@ -104195,7 +104210,7 @@ paths: - docker - nuget - container - - *648 + - *646 - *19 - *17 responses: @@ -104205,10 +104220,10 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 - '400': *650 + default: *647 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104228,16 +104243,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 responses: '200': description: Response content: application/json: - schema: *216 + schema: *214 examples: - default: &666 + default: &664 value: id: 40201 name: octo-name @@ -104350,8 +104365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 responses: '204': description: Response @@ -104381,8 +104396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 - name: token description: package token schema: @@ -104414,8 +104429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *218 - - *219 + - *216 + - *217 - *19 - *17 - name: state @@ -104435,7 +104450,7 @@ paths: application/json: schema: type: array - items: *220 + items: *218 examples: default: value: @@ -104484,15 +104499,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '200': description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -104528,9 +104543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '204': description: Response @@ -104560,9 +104575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 responses: '204': description: Response @@ -104620,7 +104635,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *230 examples: default: value: @@ -104692,9 +104707,9 @@ paths: application/json: schema: type: array - items: *638 + items: *636 examples: - default: *651 + default: *649 headers: Link: *57 '304': *35 @@ -104807,7 +104822,7 @@ paths: type: array items: *66 examples: - default: &658 + default: &656 summary: Default response value: - id: 1296269 @@ -105125,9 +105140,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *324 + default: *322 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105165,9 +105180,9 @@ paths: application/json: schema: type: array - items: *505 + items: *503 examples: - default: *652 + default: *650 headers: Link: *57 '304': *35 @@ -105190,7 +105205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *198 + - *196 responses: '204': description: Response @@ -105213,7 +105228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *198 + - *196 responses: '204': description: Response @@ -105246,7 +105261,7 @@ paths: application/json: schema: type: array - items: &653 + items: &651 title: Social account description: Social media account type: object @@ -105263,7 +105278,7 @@ paths: - provider - url examples: - default: &654 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -105326,9 +105341,9 @@ paths: application/json: schema: type: array - items: *653 + items: *651 examples: - default: *654 + default: *652 '422': *15 '304': *35 '404': *6 @@ -105416,7 +105431,7 @@ paths: application/json: schema: type: array - items: &655 + items: &653 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105436,7 +105451,7 @@ paths: - title - created_at examples: - default: &680 + default: &678 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105503,9 +105518,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *653 examples: - default: &656 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105536,7 +105551,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: - - &657 + - &655 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105548,9 +105563,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *653 examples: - default: *656 + default: *654 '404': *6 '304': *35 '403': *27 @@ -105573,7 +105588,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: - - *657 + - *655 responses: '204': description: Response @@ -105602,7 +105617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &681 + - &679 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 @@ -105627,11 +105642,11 @@ paths: type: array items: *66 examples: - default-response: *658 + default-response: *656 application/vnd.github.v3.star+json: schema: type: array - items: &682 + items: &680 title: Starred Repository description: Starred Repository type: object @@ -105787,8 +105802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response if this repository is starred by you @@ -105816,8 +105831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -105841,8 +105856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *314 - - *315 + - *312 + - *313 responses: '204': description: Response @@ -105877,7 +105892,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 '304': *35 @@ -105914,7 +105929,7 @@ paths: application/json: schema: type: array - items: *299 + items: *297 examples: default: value: @@ -106000,10 +106015,10 @@ paths: application/json: schema: oneOf: - - *632 - - *631 + - *630 + - *629 examples: - default-response: &660 + default-response: &658 summary: Default response value: login: octocat @@ -106038,7 +106053,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &661 + response-with-git-hub-plan-information: &659 summary: Response with GitHub plan information value: login: octocat @@ -106098,7 +106113,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *659 + - *657 - *17 responses: '200': @@ -106147,11 +106162,11 @@ paths: application/json: schema: oneOf: - - *632 - - *631 + - *630 + - *629 examples: - default-response: *660 - response-with-git-hub-plan-information: *661 + default-response: *658 + response-with-git-hub-plan-information: *659 '404': *6 x-github: githubCloudOnly: false @@ -106200,8 +106215,8 @@ paths: required: - subject_digests examples: - default: *662 - withPredicateType: *663 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -106255,7 +106270,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *664 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106459,7 +106474,7 @@ paths: initiator: type: string examples: - default: *378 + default: *376 '201': description: Response content: @@ -106498,9 +106513,9 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 + default: *647 '403': *27 '401': *23 x-github: @@ -106884,9 +106899,9 @@ paths: application/json: schema: type: array - items: *639 + items: *637 examples: - default: *665 + default: *663 headers: Link: *57 x-github: @@ -106990,7 +107005,7 @@ paths: application/json: schema: *20 examples: - default: *502 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107076,7 +107091,7 @@ paths: type: array items: *160 examples: - default: *647 + default: *645 headers: Link: *57 x-github: @@ -107115,7 +107130,7 @@ paths: - docker - nuget - container - - *648 + - *646 - *62 - *19 - *17 @@ -107126,12 +107141,12 @@ paths: application/json: schema: type: array - items: *216 + items: *214 examples: - default: *649 + default: *647 '403': *27 '401': *23 - '400': *650 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107151,17 +107166,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '200': description: Response content: application/json: - schema: *216 + schema: *214 examples: - default: *666 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107182,8 +107197,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '204': @@ -107216,8 +107231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - name: token description: package token @@ -107250,8 +107265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 responses: '200': @@ -107260,7 +107275,7 @@ paths: application/json: schema: type: array - items: *220 + items: *218 examples: default: value: @@ -107318,16 +107333,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *218 + - *216 + - *217 - *219 - - *221 - *62 responses: '200': description: Response content: application/json: - schema: *220 + schema: *218 examples: default: value: @@ -107362,10 +107377,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - - *221 + - *219 responses: '204': description: Response @@ -107397,10 +107412,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *218 - - *219 + - *216 + - *217 - *62 - - *221 + - *219 responses: '204': description: Response @@ -107447,7 +107462,7 @@ paths: application/json: schema: type: array - items: *232 + items: *230 examples: default: value: @@ -107522,9 +107537,9 @@ paths: application/json: schema: type: array - items: *233 + items: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -107546,16 +107561,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *235 + - *233 - *62 responses: '200': description: Response content: application/json: - schema: *233 + schema: *231 examples: - default: *234 + default: *232 headers: Link: *57 '304': *35 @@ -107577,7 +107592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *235 + - *233 - *62 - *17 - *38 @@ -107589,9 +107604,9 @@ paths: application/json: schema: type: array - items: *236 + items: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -107613,17 +107628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *235 - - *667 + - *233 + - *665 - *62 responses: '200': description: Response content: application/json: - schema: *236 + schema: *234 examples: - default: *237 + default: *235 headers: Link: *57 '304': *35 @@ -107646,7 +107661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *235 + - *233 - *62 - *38 - *39 @@ -107659,8 +107674,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -107668,8 +107685,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -107677,9 +107692,9 @@ paths: application/json: schema: type: array - items: *242 + items: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -107701,7 +107716,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *62 - - *235 + - *233 requestBody: required: true description: Details of the item to add to the project. @@ -107738,10 +107753,10 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - issue: *241 - pull_request: *241 + issue: *239 + pull_request: *239 '304': *35 '403': *27 '401': *23 @@ -107761,9 +107776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *235 + - *233 - *62 - - *244 + - *242 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107781,9 +107796,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - default: *243 + default: *241 headers: Link: *57 '304': *35 @@ -107804,9 +107819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *235 + - *233 - *62 - - *244 + - *242 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107879,13 +107894,13 @@ paths: description: Response content: application/json: - schema: *242 + schema: *240 examples: - text_field: *243 - number_field: *243 - date_field: *243 - single_select_field: *243 - iteration_field: *243 + text_field: *241 + number_field: *241 + date_field: *241 + single_select_field: *241 + iteration_field: *241 '401': *23 '403': *27 '404': *6 @@ -107905,9 +107920,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *235 + - *233 - *62 - - *244 + - *242 responses: '204': description: Response @@ -108127,7 +108142,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -108157,9 +108172,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *670 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108187,9 +108202,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: *672 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108198,7 +108213,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -108208,10 +108226,10 @@ paths: parameters: - *62 - *101 - - *673 + - *671 - *102 - - *674 - - *675 + - *672 + - *673 responses: '200': description: Response when getting a billing premium request usage report @@ -108347,9 +108365,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *674 examples: - default: *677 + default: *675 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108371,9 +108389,9 @@ paths: parameters: - *62 - *101 - - *678 + - *676 - *102 - - *679 + - *677 responses: '200': description: Response when getting a billing usage report @@ -108472,9 +108490,9 @@ paths: application/json: schema: type: array - items: *653 + items: *651 examples: - default: *654 + default: *652 headers: Link: *57 x-github: @@ -108504,9 +108522,9 @@ paths: application/json: schema: type: array - items: *655 + items: *653 examples: - default: *680 + default: *678 headers: Link: *57 x-github: @@ -108531,7 +108549,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *62 - - *681 + - *679 - *46 - *17 - *19 @@ -108543,11 +108561,11 @@ paths: schema: anyOf: - type: array - items: *682 + items: *680 - type: array items: *66 examples: - default-response: *658 + default-response: *656 headers: Link: *57 x-github: @@ -108578,7 +108596,7 @@ paths: type: array items: *131 examples: - default: *222 + default: *220 headers: Link: *57 x-github: @@ -108707,7 +108725,7 @@ webhooks: type: string enum: - disabled - enterprise: &683 + enterprise: &681 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108776,7 +108794,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &684 + installation: &682 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108797,7 +108815,7 @@ webhooks: required: - id - node_id - organization: &685 + organization: &683 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108870,7 +108888,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &686 + repository: &684 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109783,10 +109801,10 @@ webhooks: type: string enum: - enabled - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -109862,11 +109880,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: &687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: &685 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) @@ -110089,11 +110107,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: *687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: *685 sender: *4 required: - action @@ -110281,11 +110299,11 @@ webhooks: - everyone required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - rule: *687 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + rule: *685 sender: *4 required: - action @@ -110369,7 +110387,7 @@ webhooks: type: string enum: - completed - check_run: &689 + check_run: &687 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110479,7 +110497,7 @@ webhooks: - examples: - neutral - deployment: *688 + deployment: *686 details_url: type: string examples: @@ -110577,10 +110595,10 @@ webhooks: - output - app - pull_requests - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -110973,11 +110991,11 @@ webhooks: type: string enum: - created - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -111373,11 +111391,11 @@ webhooks: type: string enum: - requested_action - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 requested_action: description: The action requested by the user. type: object @@ -111782,11 +111800,11 @@ webhooks: type: string enum: - rerequested - check_run: *689 - installation: *684 - enterprise: *683 - organization: *685 - repository: *686 + check_run: *687 + installation: *682 + enterprise: *681 + organization: *683 + repository: *684 sender: *4 required: - check_run @@ -112778,10 +112796,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -113466,10 +113484,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -114148,10 +114166,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -114320,7 +114338,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114472,20 +114490,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &690 + commit_oid: &688 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: *683 - installation: *684 - organization: *685 - ref: &691 + enterprise: *681 + installation: *682 + organization: *683 + ref: &689 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: *686 + repository: *684 sender: *4 required: - action @@ -114652,7 +114670,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114893,12 +114911,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -114996,7 +115014,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115181,12 +115199,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -115355,7 +115373,7 @@ webhooks: required: - login - id - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115532,12 +115550,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -115640,7 +115658,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115820,9 +115838,9 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115830,7 +115848,7 @@ webhooks: type: - string - 'null' - repository: *686 + repository: *684 sender: *4 required: - action @@ -115929,7 +115947,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *409 + dismissed_comment: *407 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116076,12 +116094,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *690 - enterprise: *683 - installation: *684 - organization: *685 - ref: *691 - repository: *686 + commit_oid: *688 + enterprise: *681 + installation: *682 + organization: *683 + ref: *689 + repository: *684 sender: *4 required: - action @@ -116343,10 +116361,10 @@ webhooks: - updated_at - author_association - body - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -116427,18 +116445,18 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *685 - pusher_type: &692 + organization: *683 + pusher_type: &690 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &693 + ref: &691 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116448,7 +116466,7 @@ webhooks: enum: - tag - branch - repository: *686 + repository: *684 sender: *4 required: - ref @@ -116530,10 +116548,10 @@ webhooks: type: string enum: - created - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116618,9 +116636,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116697,10 +116715,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116777,10 +116795,10 @@ webhooks: type: string enum: - updated - definition: *245 - enterprise: *683 - installation: *684 - organization: *685 + definition: *243 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -116857,19 +116875,19 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - repository: *686 - organization: *685 + enterprise: *681 + installation: *682 + repository: *684 + organization: *683 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *249 + items: *247 old_property_values: type: array description: The old custom property values for the repository. - items: *249 + items: *247 required: - action - repository @@ -116945,18 +116963,18 @@ webhooks: title: delete event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - pusher_type: *692 - ref: *693 + enterprise: *681 + installation: *682 + organization: *683 + pusher_type: *690 + ref: *691 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *686 + repository: *684 sender: *4 required: - ref @@ -117040,11 +117058,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117128,11 +117146,11 @@ webhooks: type: string enum: - auto_reopened - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117216,11 +117234,11 @@ webhooks: type: string enum: - created - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117302,11 +117320,11 @@ webhooks: type: string enum: - dismissed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117388,11 +117406,11 @@ webhooks: type: string enum: - fixed - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117475,11 +117493,11 @@ webhooks: type: string enum: - reintroduced - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117561,11 +117579,11 @@ webhooks: type: string enum: - reopened - alert: *461 - installation: *684 - organization: *685 - enterprise: *683 - repository: *686 + alert: *459 + installation: *682 + organization: *683 + enterprise: *681 + repository: *684 sender: *4 required: - action @@ -117642,9 +117660,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - key: &694 + enterprise: *681 + installation: *682 + key: &692 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117682,8 +117700,8 @@ webhooks: - verified - created_at - read_only - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -117760,11 +117778,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - key: *694 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + key: *692 + organization: *683 + repository: *684 sender: *4 required: - action @@ -118336,12 +118354,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: &698 + workflow: &696 title: Workflow type: - object @@ -119079,13 +119097,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *467 + deployment: *465 pull_requests: type: array - items: *547 - repository: *686 - organization: *685 - installation: *684 + items: *545 + repository: *684 + organization: *683 + installation: *682 sender: *4 responses: '200': @@ -119156,7 +119174,7 @@ webhooks: type: string enum: - approved - approver: &695 + approver: &693 type: object properties: avatar_url: @@ -119199,11 +119217,11 @@ webhooks: type: string comment: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - reviewers: &696 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + reviewers: &694 type: array items: type: object @@ -119284,7 +119302,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &697 + workflow_job_run: &695 type: object properties: conclusion: @@ -120030,18 +120048,18 @@ webhooks: type: string enum: - rejected - approver: *695 + approver: *693 comment: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - reviewers: *696 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + reviewers: *694 sender: *4 since: type: string - workflow_job_run: *697 + workflow_job_run: *695 workflow_job_runs: type: array items: @@ -120758,13 +120776,13 @@ webhooks: type: string enum: - requested - enterprise: *683 + enterprise: *681 environment: type: string - installation: *684 - organization: *685 - repository: *686 - requestor: &703 + installation: *682 + organization: *683 + repository: *684 + requestor: &701 title: User type: - object @@ -122707,12 +122725,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Deployment Workflow Run type: @@ -123403,7 +123421,7 @@ webhooks: type: string enum: - answered - answer: &701 + answer: &699 type: object properties: author_association: @@ -123563,11 +123581,11 @@ webhooks: - created_at - updated_at - body - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123694,11 +123712,11 @@ webhooks: - from required: - category - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123781,11 +123799,11 @@ webhooks: type: string enum: - closed - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -123867,7 +123885,7 @@ webhooks: type: string enum: - created - comment: &700 + comment: &698 type: object properties: author_association: @@ -124027,11 +124045,11 @@ webhooks: - updated_at - body - reactions - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124114,12 +124132,12 @@ webhooks: type: string enum: - deleted - comment: *700 - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + comment: *698 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124214,12 +124232,12 @@ webhooks: - from required: - body - comment: *700 - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + comment: *698 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124303,11 +124321,11 @@ webhooks: type: string enum: - created - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124389,11 +124407,11 @@ webhooks: type: string enum: - deleted - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124493,11 +124511,11 @@ webhooks: type: string required: - from - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124579,10 +124597,10 @@ webhooks: type: string enum: - labeled - discussion: *699 - enterprise: *683 - installation: *684 - label: &702 + discussion: *697 + enterprise: *681 + installation: *682 + label: &700 title: Label type: object properties: @@ -124615,8 +124633,8 @@ webhooks: - color - default - description - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124699,11 +124717,11 @@ webhooks: type: string enum: - locked - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124785,11 +124803,11 @@ webhooks: type: string enum: - pinned - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124871,11 +124889,11 @@ webhooks: type: string enum: - reopened - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -124960,16 +124978,16 @@ webhooks: changes: type: object properties: - new_discussion: *699 - new_repository: *686 + new_discussion: *697 + new_repository: *684 required: - new_discussion - new_repository - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125052,10 +125070,10 @@ webhooks: type: string enum: - unanswered - discussion: *699 - old_answer: *701 - organization: *685 - repository: *686 + discussion: *697 + old_answer: *699 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125137,12 +125155,12 @@ webhooks: type: string enum: - unlabeled - discussion: *699 - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125225,11 +125243,11 @@ webhooks: type: string enum: - unlocked - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125311,11 +125329,11 @@ webhooks: type: string enum: - unpinned - discussion: *699 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + discussion: *697 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -125388,7 +125406,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *683 + enterprise: *681 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126066,9 +126084,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - forkee @@ -126214,9 +126232,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pages: description: The pages that were updated. type: array @@ -126254,7 +126272,7 @@ webhooks: - action - sha - html_url - repository: *686 + repository: *684 sender: *4 required: - pages @@ -126330,10 +126348,10 @@ webhooks: type: string enum: - created - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: &704 + organization: *683 + repositories: &702 description: An array of repository objects that the installation can access. type: array @@ -126359,8 +126377,8 @@ webhooks: - name - full_name - private - repository: *686 - requester: *703 + repository: *684 + requester: *701 sender: *4 required: - action @@ -126435,11 +126453,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -126516,11 +126534,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -126597,10 +126615,10 @@ webhooks: type: string enum: - added - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories_added: &705 + organization: *683 + repositories_added: &703 description: An array of repository objects, which were added to the installation. type: array @@ -126646,15 +126664,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *686 - repository_selection: &706 + repository: *684 + repository_selection: &704 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *703 + requester: *701 sender: *4 required: - action @@ -126733,10 +126751,10 @@ webhooks: type: string enum: - removed - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories_added: *705 + organization: *683 + repositories_added: *703 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126763,9 +126781,9 @@ webhooks: - name - full_name - private - repository: *686 - repository_selection: *706 - requester: *703 + repository: *684 + repository_selection: *704 + requester: *701 sender: *4 required: - action @@ -126844,11 +126862,11 @@ webhooks: type: string enum: - suspend - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -127030,10 +127048,10 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 target_type: type: string @@ -127112,11 +127130,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *683 + enterprise: *681 installation: *20 - organization: *685 - repositories: *704 - repository: *686 + organization: *683 + repositories: *702 + repository: *684 requester: type: - 'null' @@ -127364,8 +127382,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128182,8 +128200,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128200,7 +128218,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -128544,8 +128562,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -128625,7 +128643,7 @@ webhooks: type: string enum: - deleted - comment: &707 + comment: &705 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128792,8 +128810,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129606,8 +129624,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129624,7 +129642,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -129970,8 +129988,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -130051,7 +130069,7 @@ webhooks: type: string enum: - edited - changes: &731 + changes: &729 description: The changes to the comment. type: object properties: @@ -130063,9 +130081,9 @@ webhooks: type: string required: - from - comment: *707 - enterprise: *683 - installation: *684 + comment: *705 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130881,8 +130899,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130899,7 +130917,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -131243,8 +131261,8 @@ webhooks: - state - locked - assignee - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131334,9 +131352,9 @@ webhooks: type: number blocking_issue: *68 blocking_issue_repo: *66 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131430,9 +131448,9 @@ webhooks: type: number blocking_issue: *68 blocking_issue_repo: *66 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131525,9 +131543,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131621,9 +131639,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -131708,10 +131726,10 @@ webhooks: type: string enum: - assigned - assignee: *703 - enterprise: *683 - installation: *684 - issue: &710 + assignee: *701 + enterprise: *681 + installation: *682 + issue: &708 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132523,11 +132541,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132544,7 +132562,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -132647,8 +132665,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -132728,8 +132746,8 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133546,11 +133564,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133567,7 +133585,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -133813,8 +133831,8 @@ webhooks: required: - state - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -133893,8 +133911,8 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134702,11 +134720,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134723,7 +134741,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -134825,8 +134843,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -134905,8 +134923,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135737,11 +135755,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135758,7 +135776,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -135839,7 +135857,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &708 + milestone: &706 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135982,8 +136000,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -136082,8 +136100,8 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136895,11 +136913,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136913,7 +136931,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -137019,9 +137037,9 @@ webhooks: - active_lock_reason - body - reactions - label: *702 - organization: *685 - repository: *686 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -137101,8 +137119,8 @@ webhooks: type: string enum: - labeled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137913,11 +137931,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137931,7 +137949,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -138037,9 +138055,9 @@ webhooks: - active_lock_reason - body - reactions - label: *702 - organization: *685 - repository: *686 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -138119,8 +138137,8 @@ webhooks: type: string enum: - locked - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138956,11 +138974,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138974,7 +138992,7 @@ webhooks: timeline_url: type: string format: uri - type: *199 + type: *197 title: description: Title of the issue type: string @@ -139057,8 +139075,8 @@ webhooks: format: uri user_view_type: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -139137,8 +139155,8 @@ webhooks: type: string enum: - milestoned - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139968,11 +139986,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139989,7 +140007,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -140069,9 +140087,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *708 - organization: *685 - repository: *686 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -140963,11 +140981,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141063,7 +141081,7 @@ webhooks: required: - login - id - type: *199 + type: *197 required: - id - number @@ -141544,8 +141562,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142357,11 +142375,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142378,7 +142396,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -142480,8 +142498,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -142561,9 +142579,9 @@ webhooks: type: string enum: - pinned - enterprise: *683 - installation: *684 - issue: &709 + enterprise: *681 + installation: *682 + issue: &707 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143369,11 +143387,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143390,7 +143408,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -143492,8 +143510,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -143572,8 +143590,8 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144407,11 +144425,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144508,9 +144526,9 @@ webhooks: format: uri user_view_type: type: string - type: *199 - organization: *685 - repository: *686 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -145399,11 +145417,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145420,7 +145438,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -146002,11 +146020,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *683 - installation: *684 - issue: *709 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *707 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146086,12 +146104,12 @@ webhooks: type: string enum: - typed - enterprise: *683 - installation: *684 - issue: *710 - type: *199 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146172,7 +146190,7 @@ webhooks: type: string enum: - unassigned - assignee: &734 + assignee: &732 title: User type: - object @@ -146244,11 +146262,11 @@ webhooks: required: - login - id - enterprise: *683 - installation: *684 - issue: *710 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146327,12 +146345,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *683 - installation: *684 - issue: *710 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -146412,8 +146430,8 @@ webhooks: type: string enum: - unlocked - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147247,11 +147265,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *617 - issue_dependencies_summary: *618 + sub_issues_summary: *615 + issue_dependencies_summary: *616 issue_field_values: type: array - items: *619 + items: *617 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147268,7 +147286,7 @@ webhooks: title: description: Title of the issue type: string - type: *199 + type: *197 updated_at: type: string format: date-time @@ -147348,8 +147366,8 @@ webhooks: format: uri user_view_type: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147429,11 +147447,11 @@ webhooks: type: string enum: - unpinned - enterprise: *683 - installation: *684 - issue: *709 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *707 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147512,12 +147530,12 @@ webhooks: type: string enum: - untyped - enterprise: *683 - installation: *684 - issue: *710 - type: *199 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + issue: *708 + type: *197 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147597,11 +147615,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147679,11 +147697,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147793,11 +147811,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - label: *702 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + label: *700 + organization: *683 + repository: *684 sender: *4 required: - action @@ -147879,9 +147897,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: &711 + enterprise: *681 + installation: *682 + marketplace_purchase: &709 title: Marketplace Purchase type: object required: @@ -147969,8 +147987,8 @@ webhooks: type: integer unit_count: type: integer - organization: *685 - previous_marketplace_purchase: &712 + organization: *683 + previous_marketplace_purchase: &710 title: Marketplace Purchase type: object properties: @@ -148054,7 +148072,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148134,10 +148152,10 @@ webhooks: - changed effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148225,7 +148243,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148307,10 +148325,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148396,7 +148414,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *686 + repository: *684 sender: *4 required: - action @@ -148477,8 +148495,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 marketplace_purchase: title: Marketplace Purchase type: object @@ -148564,9 +148582,9 @@ webhooks: type: integer unit_count: type: integer - organization: *685 - previous_marketplace_purchase: *712 - repository: *686 + organization: *683 + previous_marketplace_purchase: *710 + repository: *684 sender: *4 required: - action @@ -148646,12 +148664,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *683 - installation: *684 - marketplace_purchase: *711 - organization: *685 - previous_marketplace_purchase: *712 - repository: *686 + enterprise: *681 + installation: *682 + marketplace_purchase: *709 + organization: *683 + previous_marketplace_purchase: *710 + repository: *684 sender: *4 required: - action @@ -148753,11 +148771,11 @@ webhooks: type: string required: - to - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -148859,11 +148877,11 @@ webhooks: type: - string - 'null' - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -148942,11 +148960,11 @@ webhooks: type: string enum: - removed - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149024,11 +149042,11 @@ webhooks: type: string enum: - added - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149106,7 +149124,7 @@ webhooks: required: - login - id - team: &713 + team: &711 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149336,11 +149354,11 @@ webhooks: type: string enum: - removed - enterprise: *683 - installation: *684 - member: *703 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + member: *701 + organization: *683 + repository: *684 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149419,7 +149437,7 @@ webhooks: required: - login - id - team: *713 + team: *711 required: - action - scope @@ -149501,8 +149519,8 @@ webhooks: type: string enum: - checks_requested - installation: *684 - merge_group: &714 + installation: *682 + merge_group: &712 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149521,15 +149539,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *398 + head_commit: *396 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149615,10 +149633,10 @@ webhooks: - merged - invalidated - dequeued - installation: *684 - merge_group: *714 - organization: *685 - repository: *686 + installation: *682 + merge_group: *712 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149691,7 +149709,7 @@ webhooks: type: string enum: - deleted - enterprise: *683 + enterprise: *681 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149800,12 +149818,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *684 - organization: *685 + installation: *682 + organization: *683 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -149885,11 +149903,11 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -149968,9 +149986,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - milestone: &715 + enterprise: *681 + installation: *682 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150112,8 +150130,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150192,11 +150210,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150306,11 +150324,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - milestone: *708 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *706 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150390,11 +150408,11 @@ webhooks: type: string enum: - opened - enterprise: *683 - installation: *684 - milestone: *715 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + milestone: *713 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150473,11 +150491,11 @@ webhooks: type: string enum: - blocked - blocked_user: *703 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + blocked_user: *701 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150556,11 +150574,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *703 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + blocked_user: *701 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150639,9 +150657,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - membership: &716 + enterprise: *681 + installation: *682 + membership: &714 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150751,8 +150769,8 @@ webhooks: - role - organization_url - user - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150830,11 +150848,11 @@ webhooks: type: string enum: - member_added - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -150913,8 +150931,8 @@ webhooks: type: string enum: - member_invited - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151036,10 +151054,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 - user: *703 + user: *701 required: - action - invitation @@ -151117,11 +151135,11 @@ webhooks: type: string enum: - member_removed - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -151208,11 +151226,11 @@ webhooks: properties: from: type: string - enterprise: *683 - installation: *684 - membership: *716 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + membership: *714 + organization: *683 + repository: *684 sender: *4 required: - action @@ -151288,9 +151306,9 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 package: description: Information about the package. type: object @@ -151813,7 +151831,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &717 + items: &715 title: Ruby Gems metadata type: object properties: @@ -151910,7 +151928,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -151986,9 +152004,9 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 package: description: Information about the package. type: object @@ -152350,7 +152368,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *717 + items: *715 source_url: type: string format: uri @@ -152421,7 +152439,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -152602,12 +152620,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *683 + enterprise: *681 id: type: integer - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - id @@ -152684,7 +152702,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &718 + personal_access_token_request: &716 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152834,10 +152852,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *683 - organization: *685 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -152914,11 +152932,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *718 - enterprise: *683 - organization: *685 + personal_access_token_request: *716 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -152994,11 +153012,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *718 - enterprise: *683 - organization: *685 + personal_access_token_request: *716 + enterprise: *681 + organization: *683 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -153073,11 +153091,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *718 - organization: *685 - enterprise: *683 + personal_access_token_request: *716 + organization: *683 + enterprise: *681 sender: *4 - installation: *684 + installation: *682 required: - action - personal_access_token_request @@ -153182,7 +153200,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *719 + last_response: *717 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153214,8 +153232,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 zen: description: Random string of GitHub zen. @@ -153460,10 +153478,10 @@ webhooks: - from required: - note - enterprise: *683 - installation: *684 - organization: *685 - project_card: &720 + enterprise: *681 + installation: *682 + organization: *683 + project_card: &718 title: Project Card type: object properties: @@ -153586,7 +153604,7 @@ webhooks: - creator - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -153667,11 +153685,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project_card: *720 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_card: *718 + repository: *684 sender: *4 required: - action @@ -153751,9 +153769,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 project_card: title: Project Card type: object @@ -153883,7 +153901,7 @@ webhooks: repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -153977,11 +153995,11 @@ webhooks: - from required: - note - enterprise: *683 - installation: *684 - organization: *685 - project_card: *720 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_card: *718 + repository: *684 sender: *4 required: - action @@ -154075,9 +154093,9 @@ webhooks: - from required: - column_id - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 project_card: allOf: - title: Project Card @@ -154274,7 +154292,7 @@ webhooks: type: string required: - after_id - repository: *686 + repository: *684 sender: *4 required: - action @@ -154354,10 +154372,10 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - organization: *685 - project: &722 + enterprise: *681 + installation: *682 + organization: *683 + project: &720 title: Project type: object properties: @@ -154484,7 +154502,7 @@ webhooks: - creator - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -154564,10 +154582,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project_column: &721 + enterprise: *681 + installation: *682 + organization: *683 + project_column: &719 title: Project Column type: object properties: @@ -154607,7 +154625,7 @@ webhooks: - name - created_at - updated_at - repository: *686 + repository: *684 sender: *4 required: - action @@ -154686,14 +154704,14 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -154782,11 +154800,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 + repository: *684 sender: *4 required: - action @@ -154866,11 +154884,11 @@ webhooks: type: string enum: - moved - enterprise: *683 - installation: *684 - organization: *685 - project_column: *721 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project_column: *719 + repository: *684 sender: *4 required: - action @@ -154950,11 +154968,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155034,14 +155052,14 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - project: *722 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 repository: anyOf: - type: 'null' - - *686 + - *684 sender: *4 required: - action @@ -155142,11 +155160,11 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155225,11 +155243,11 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 - organization: *685 - project: *722 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + project: *720 + repository: *684 sender: *4 required: - action @@ -155310,9 +155328,9 @@ webhooks: type: string enum: - closed - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155393,9 +155411,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155476,9 +155494,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155599,9 +155617,9 @@ webhooks: type: string to: type: string - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -155684,7 +155702,7 @@ webhooks: type: string enum: - archived - changes: &726 + changes: &724 type: object properties: archived_at: @@ -155700,9 +155718,9 @@ webhooks: - string - 'null' format: date-time - installation: *684 - organization: *685 - projects_v2_item: &723 + installation: *682 + organization: *683 + projects_v2_item: &721 title: Projects v2 Item description: An item belonging to a project type: object @@ -155720,7 +155738,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *240 + content_type: *238 creator: *4 created_at: type: string @@ -155842,9 +155860,9 @@ webhooks: - 'null' to: type: string - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -155926,9 +155944,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156009,9 +156027,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156116,7 +156134,7 @@ webhooks: oneOf: - type: string - type: integer - - &724 + - &722 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156140,7 +156158,7 @@ webhooks: required: - id - name - - &725 + - &723 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156180,8 +156198,8 @@ webhooks: oneOf: - type: string - type: integer - - *724 - - *725 + - *722 + - *723 type: - 'null' - string @@ -156204,9 +156222,9 @@ webhooks: - 'null' required: - body - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156303,9 +156321,9 @@ webhooks: type: - string - 'null' - installation: *684 - organization: *685 - projects_v2_item: *723 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156388,10 +156406,10 @@ webhooks: type: string enum: - restored - changes: *726 - installation: *684 - organization: *685 - projects_v2_item: *723 + changes: *724 + installation: *682 + organization: *683 + projects_v2_item: *721 sender: *4 required: - action @@ -156473,9 +156491,9 @@ webhooks: type: string enum: - reopened - installation: *684 - organization: *685 - projects_v2: *233 + installation: *682 + organization: *683 + projects_v2: *231 sender: *4 required: - action @@ -156556,9 +156574,9 @@ webhooks: type: string enum: - created - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156639,9 +156657,9 @@ webhooks: type: string enum: - deleted - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156787,9 +156805,9 @@ webhooks: - string - 'null' format: date - installation: *684 - organization: *685 - projects_v2_status_update: *727 + installation: *682 + organization: *683 + projects_v2_status_update: *725 sender: *4 required: - action @@ -156860,10 +156878,10 @@ webhooks: title: public event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - repository @@ -156940,13 +156958,13 @@ webhooks: type: string enum: - assigned - assignee: *703 - enterprise: *683 - installation: *684 - number: &728 + assignee: *701 + enterprise: *681 + installation: *682 + number: &726 description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -159295,7 +159313,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -159377,11 +159395,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -161723,7 +161741,7 @@ webhooks: - draft reason: type: string - repository: *686 + repository: *684 sender: *4 required: - action @@ -161805,11 +161823,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -164151,7 +164169,7 @@ webhooks: - draft reason: type: string - repository: *686 + repository: *684 sender: *4 required: - action @@ -164233,13 +164251,13 @@ webhooks: type: string enum: - closed - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: &729 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: &727 allOf: - - *547 + - *545 - type: object properties: allow_auto_merge: @@ -164301,7 +164319,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *686 + repository: *684 sender: *4 required: - action @@ -164382,12 +164400,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -164467,11 +164485,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *683 - milestone: *238 - number: *728 - organization: *685 - pull_request: &730 + enterprise: *681 + milestone: *236 + number: *726 + organization: *683 + pull_request: &728 title: Pull Request type: object properties: @@ -166798,7 +166816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -166877,11 +166895,11 @@ webhooks: type: string enum: - dequeued - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -169227,7 +169245,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *686 + repository: *684 sender: *4 required: - action @@ -169351,12 +169369,12 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -169436,11 +169454,11 @@ webhooks: type: string enum: - enqueued - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -171771,7 +171789,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -171851,11 +171869,11 @@ webhooks: type: string enum: - labeled - enterprise: *683 - installation: *684 - label: *702 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + label: *700 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -174203,7 +174221,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -174284,10 +174302,10 @@ webhooks: type: string enum: - locked - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -176633,7 +176651,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -176713,12 +176731,12 @@ webhooks: type: string enum: - milestoned - enterprise: *683 - milestone: *238 - number: *728 - organization: *685 - pull_request: *730 - repository: *686 + enterprise: *681 + milestone: *236 + number: *726 + organization: *683 + pull_request: *728 + repository: *684 sender: *4 required: - action @@ -176797,12 +176815,12 @@ webhooks: type: string enum: - opened - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -176883,12 +176901,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -176968,12 +176986,12 @@ webhooks: type: string enum: - reopened - enterprise: *683 - installation: *684 - number: *728 - organization: *685 - pull_request: *729 - repository: *686 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 + pull_request: *727 + repository: *684 sender: *4 required: - action @@ -177348,9 +177366,9 @@ webhooks: - start_side - side - reactions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -179580,7 +179598,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -179660,7 +179678,7 @@ webhooks: type: string enum: - deleted - comment: &732 + comment: &730 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179953,9 +179971,9 @@ webhooks: - start_side - side - reactions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -182173,7 +182191,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -182253,11 +182271,11 @@ webhooks: type: string enum: - edited - changes: *731 - comment: *732 - enterprise: *683 - installation: *684 - organization: *685 + changes: *729 + comment: *730 + enterprise: *681 + installation: *682 + organization: *683 pull_request: type: object properties: @@ -184478,7 +184496,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *686 + repository: *684 sender: *4 required: - action @@ -184559,9 +184577,9 @@ webhooks: type: string enum: - dismissed - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -186794,7 +186812,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 review: description: The review that was affected. type: object @@ -187045,9 +187063,9 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -189161,8 +189179,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 - review: &733 + repository: *684 + review: &731 description: The review that was affected. type: object properties: @@ -189400,12 +189418,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -191752,7 +191770,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_reviewer: title: User type: @@ -191838,12 +191856,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -194197,7 +194215,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194392,12 +194410,12 @@ webhooks: type: string enum: - review_requested - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -196746,7 +196764,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_reviewer: title: User type: @@ -196833,12 +196851,12 @@ webhooks: type: string enum: - review_requested - enterprise: *683 - installation: *684 + enterprise: *681 + installation: *682 number: description: The pull request number. type: integer - organization: *685 + organization: *683 pull_request: title: Pull Request type: object @@ -199178,7 +199196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199362,9 +199380,9 @@ webhooks: type: string enum: - submitted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -201600,8 +201618,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 - review: *733 + repository: *684 + review: *731 sender: *4 required: - action @@ -201681,9 +201699,9 @@ webhooks: type: string enum: - resolved - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -203814,7 +203832,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 sender: *4 thread: type: object @@ -204211,9 +204229,9 @@ webhooks: type: string enum: - unresolved - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 pull_request: title: Simple Pull Request type: object @@ -206327,7 +206345,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *686 + repository: *684 sender: *4 thread: type: object @@ -206726,10 +206744,10 @@ webhooks: type: string before: type: string - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -209064,7 +209082,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -209146,11 +209164,11 @@ webhooks: type: string enum: - unassigned - assignee: *734 - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + assignee: *732 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -211500,7 +211518,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -211579,11 +211597,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *683 - installation: *684 - label: *702 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + label: *700 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -213922,7 +213940,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -214003,10 +214021,10 @@ webhooks: type: string enum: - unlocked - enterprise: *683 - installation: *684 - number: *728 - organization: *685 + enterprise: *681 + installation: *682 + number: *726 + organization: *683 pull_request: title: Pull Request type: object @@ -216335,7 +216353,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *686 + repository: *684 sender: *4 required: - action @@ -216538,7 +216556,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *683 + enterprise: *681 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216633,8 +216651,8 @@ webhooks: - url - author - committer - installation: *684 - organization: *685 + installation: *682 + organization: *683 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217222,9 +217240,9 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 registry_package: type: object properties: @@ -217701,7 +217719,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *717 + items: *715 summary: type: string tag_name: @@ -217757,7 +217775,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -217835,9 +217853,9 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 registry_package: type: object properties: @@ -218149,7 +218167,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *717 + items: *715 summary: type: string tag_name: @@ -218199,7 +218217,7 @@ webhooks: - owner - package_version - registry - repository: *686 + repository: *684 sender: *4 required: - action @@ -218276,10 +218294,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - release: &735 + enterprise: *681 + installation: *682 + organization: *683 + release: &733 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218610,7 +218628,7 @@ webhooks: - updated_at - zipball_url - body - repository: *686 + repository: *684 sender: *4 required: - action @@ -218687,11 +218705,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -218808,11 +218826,11 @@ webhooks: type: boolean required: - to - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -218890,9 +218908,9 @@ webhooks: type: string enum: - prereleased - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219228,7 +219246,7 @@ webhooks: - string - 'null' format: uri - repository: *686 + repository: *684 sender: *4 required: - action @@ -219304,10 +219322,10 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - release: &736 + enterprise: *681 + installation: *682 + organization: *683 + release: &734 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219640,7 +219658,7 @@ webhooks: - string - 'null' format: uri - repository: *686 + repository: *684 sender: *4 required: - action @@ -219716,11 +219734,11 @@ webhooks: type: string enum: - released - enterprise: *683 - installation: *684 - organization: *685 - release: *735 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *733 + repository: *684 sender: *4 required: - action @@ -219796,11 +219814,11 @@ webhooks: type: string enum: - unpublished - enterprise: *683 - installation: *684 - organization: *685 - release: *736 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + release: *734 + repository: *684 sender: *4 required: - action @@ -219876,11 +219894,11 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_advisory: *603 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_advisory: *601 sender: *4 required: - action @@ -219956,11 +219974,11 @@ webhooks: type: string enum: - reported - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_advisory: *603 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_advisory: *601 sender: *4 required: - action @@ -220036,10 +220054,10 @@ webhooks: type: string enum: - archived - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220116,10 +220134,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220197,10 +220215,10 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220285,10 +220303,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220403,10 +220421,10 @@ webhooks: - 'null' items: type: string - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220478,10 +220496,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 status: type: string @@ -220562,10 +220580,10 @@ webhooks: type: string enum: - privatized - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220642,10 +220660,10 @@ webhooks: type: string enum: - publicized - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220739,10 +220757,10 @@ webhooks: - name required: - repository - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -220822,11 +220840,11 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 sender: *4 required: - action @@ -220904,11 +220922,11 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 sender: *4 required: - action @@ -220986,11 +221004,11 @@ webhooks: type: string enum: - edited - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - repository_ruleset: *276 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + repository_ruleset: *274 changes: type: object properties: @@ -221009,16 +221027,16 @@ webhooks: properties: added: type: array - items: *251 + items: *249 deleted: type: array - items: *251 + items: *249 updated: type: array items: type: object properties: - condition: *251 + condition: *249 changes: type: object properties: @@ -221051,16 +221069,16 @@ webhooks: properties: added: type: array - items: *568 + items: *566 deleted: type: array - items: *568 + items: *566 updated: type: array items: type: object properties: - rule: *568 + rule: *566 changes: type: object properties: @@ -221297,10 +221315,10 @@ webhooks: - from required: - owner - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221378,10 +221396,10 @@ webhooks: type: string enum: - unarchived - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221459,7 +221477,7 @@ webhooks: type: string enum: - create - alert: &737 + alert: &735 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221583,10 +221601,10 @@ webhooks: type: string enum: - open - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221796,10 +221814,10 @@ webhooks: type: string enum: - dismissed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -221877,11 +221895,11 @@ webhooks: type: string enum: - reopen - alert: *737 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *735 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222083,10 +222101,10 @@ webhooks: enum: - fixed - open - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222164,7 +222182,7 @@ webhooks: type: string enum: - created - alert: &738 + alert: &736 type: object properties: number: *52 @@ -222278,10 +222296,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222362,11 +222380,11 @@ webhooks: type: string enum: - created - alert: *738 - installation: *684 - location: *739 - organization: *685 - repository: *686 + alert: *736 + installation: *682 + location: *737 + organization: *683 + repository: *684 sender: *4 required: - location @@ -222604,11 +222622,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222686,11 +222704,11 @@ webhooks: type: string enum: - reopened - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222768,11 +222786,11 @@ webhooks: type: string enum: - resolved - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222850,11 +222868,11 @@ webhooks: type: string enum: - validated - alert: *738 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + alert: *736 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -222984,10 +223002,10 @@ webhooks: - organization - enterprise - - repository: *686 - enterprise: *683 - installation: *684 - organization: *685 + repository: *684 + enterprise: *681 + installation: *682 + organization: *683 sender: *4 required: - action @@ -223065,11 +223083,11 @@ webhooks: type: string enum: - published - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - security_advisory: &740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + security_advisory: &738 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223255,11 +223273,11 @@ webhooks: type: string enum: - updated - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 - security_advisory: *740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 + security_advisory: *738 sender: *4 required: - action @@ -223332,10 +223350,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223521,11 +223539,11 @@ webhooks: from: type: object properties: - security_and_analysis: *250 - enterprise: *683 - installation: *684 - organization: *685 - repository: *322 + security_and_analysis: *248 + enterprise: *681 + installation: *682 + organization: *683 + repository: *320 sender: *4 required: - changes @@ -223603,12 +223621,12 @@ webhooks: type: string enum: - cancelled - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: &741 + sponsorship: &739 type: object properties: created_at: @@ -223913,12 +223931,12 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - sponsorship @@ -224006,12 +224024,12 @@ webhooks: type: string required: - from - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224088,17 +224106,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &742 + effective_date: &740 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: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - sponsorship @@ -224172,7 +224190,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &743 + changes: &741 type: object properties: tier: @@ -224216,13 +224234,13 @@ webhooks: - from required: - tier - effective_date: *742 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + effective_date: *740 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224299,13 +224317,13 @@ webhooks: type: string enum: - tier_changed - changes: *743 - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + changes: *741 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - sponsorship: *741 + sponsorship: *739 required: - action - changes @@ -224379,10 +224397,10 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224466,10 +224484,10 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224903,15 +224921,15 @@ webhooks: type: - string - 'null' - enterprise: *683 + enterprise: *681 id: description: The unique identifier of the status. type: integer - installation: *684 + installation: *682 name: type: string - organization: *685 - repository: *686 + organization: *683 + repository: *684 sender: *4 sha: description: The Commit SHA. @@ -225027,9 +225045,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225119,9 +225137,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225211,9 +225229,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225303,9 +225321,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *68 - installation: *684 - organization: *685 - repository: *686 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -225382,12 +225400,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - team: &744 + team: &742 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225617,9 +225635,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -226089,7 +226107,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -226165,9 +226183,9 @@ webhooks: type: string enum: - created - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -226637,7 +226655,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -226714,9 +226732,9 @@ webhooks: type: string enum: - deleted - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -227186,7 +227204,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -227330,9 +227348,9 @@ webhooks: - from required: - permissions - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -227802,7 +227820,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - changes @@ -227880,9 +227898,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *683 - installation: *684 - organization: *685 + enterprise: *681 + installation: *682 + organization: *683 repository: title: Repository description: A git repository @@ -228352,7 +228370,7 @@ webhooks: - topics - visibility sender: *4 - team: *744 + team: *742 required: - action - team @@ -228428,10 +228446,10 @@ webhooks: type: string enum: - started - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 required: - action @@ -228504,17 +228522,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *683 + enterprise: *681 inputs: type: - object - 'null' additionalProperties: true - installation: *684 - organization: *685 + installation: *682 + organization: *683 ref: type: string - repository: *686 + repository: *684 sender: *4 workflow: type: string @@ -228596,10 +228614,10 @@ webhooks: type: string enum: - completed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: allOf: @@ -228855,7 +228873,7 @@ webhooks: type: string required: - conclusion - deployment: *467 + deployment: *465 required: - action - repository @@ -228934,10 +228952,10 @@ webhooks: type: string enum: - in_progress - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: allOf: @@ -229219,7 +229237,7 @@ webhooks: required: - status - steps - deployment: *467 + deployment: *465 required: - action - repository @@ -229298,10 +229316,10 @@ webhooks: type: string enum: - queued - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: type: object @@ -229447,7 +229465,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *467 + deployment: *465 required: - action - repository @@ -229526,10 +229544,10 @@ webhooks: type: string enum: - waiting - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 workflow_job: type: object @@ -229676,7 +229694,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *467 + deployment: *465 required: - action - repository @@ -229756,12 +229774,12 @@ webhooks: type: string enum: - completed - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -230780,12 +230798,12 @@ webhooks: type: string enum: - in_progress - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -231789,12 +231807,12 @@ webhooks: type: string enum: - requested - enterprise: *683 - installation: *684 - organization: *685 - repository: *686 + enterprise: *681 + installation: *682 + organization: *683 + repository: *684 sender: *4 - workflow: *698 + workflow: *696 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 8d97d0fbd..e072942f4 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -45251,29 +45251,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -62886,7 +62863,7 @@ "/enterprises/{enterprise}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an enterprise", - "description": "Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise.", + "description": "Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -114540,7 +114517,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -135677,6 +135654,110 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "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 results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "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 results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -158163,29 +158244,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -217689,7 +217747,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -217697,10 +217755,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -405202,16 +405257,6 @@ "default": "desc" } }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -405239,29 +405284,6 @@ "schema": { "type": "string" } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { @@ -805632,7 +805654,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -805640,10 +805662,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -843270,7 +843289,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index f0616924a..881c4ce2d 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -913,7 +913,7 @@ paths: - subscriptions_url - type - url - type: &397 + type: &395 type: string description: The type of credit the user is receiving. enum: @@ -1079,7 +1079,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: - - &713 + - &711 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1664,7 +1664,7 @@ paths: schema: type: integer default: 30 - - &309 + - &307 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1680,7 +1680,7 @@ paths: application/json: schema: type: array - items: &310 + items: &308 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1776,7 +1776,7 @@ paths: - installation_id - repository_id examples: - default: &311 + default: &309 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &723 + schema: &721 title: Scim Error description: Scim Error type: object @@ -1911,7 +1911,7 @@ paths: description: Response content: application/json: - schema: &312 + schema: &310 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2046,7 +2046,7 @@ paths: - request - response examples: - default: &313 + default: &311 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8718,7 +8718,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &724 + '401': &722 description: Authorization failure '404': *6 x-github: @@ -12983,7 +12983,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &509 + instances_url: &507 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13019,7 +13019,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &510 + dismissed_reason: &508 type: - string - 'null' @@ -13030,14 +13030,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &511 + dismissed_comment: &509 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &512 + rule: &510 type: object properties: id: @@ -13098,7 +13098,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &513 + tool: &511 type: object properties: name: *100 @@ -13109,15 +13109,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *101 - most_recent_instance: &514 + most_recent_instance: &512 type: object properties: - ref: &507 + ref: &505 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &524 + analysis_key: &522 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13128,7 +13128,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &525 + category: &523 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -15533,7 +15533,7 @@ paths: parent: anyOf: - type: 'null' - - &344 + - &342 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -16719,7 +16719,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &560 + - &558 name: has in: query description: |- @@ -16761,31 +16761,6 @@ paths: - *99 - *97 - *98 - - &301 - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - - &302 - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - *17 responses: '200': @@ -16794,7 +16769,7 @@ paths: application/json: schema: type: array - items: &303 + items: &301 type: object description: A Dependabot alert. properties: @@ -16861,7 +16836,7 @@ paths: - direct - transitive - - security_advisory: &561 + security_advisory: &559 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17097,7 +17072,7 @@ paths: dismissal. maxLength: 280 fixed_at: *119 - auto_dismissed_at: &562 + auto_dismissed_at: &560 type: - string - 'null' @@ -17124,7 +17099,7 @@ paths: - repository additionalProperties: false examples: - default: &304 + default: &302 value: - number: 2 state: dismissed @@ -17653,7 +17628,7 @@ paths: - name - created_on examples: - default: &407 + default: &405 value: total_count: 2 network_configurations: @@ -17876,7 +17851,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &408 + - &406 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17888,7 +17863,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &407 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17927,7 +17902,7 @@ paths: - subnet_id - region examples: - default: &410 + default: &408 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -18233,7 +18208,7 @@ paths: required: true content: application/json: - schema: &375 + schema: &373 title: Custom Property Set Payload description: Custom property set payload type: object @@ -19307,7 +19282,7 @@ paths: conditions: anyOf: - *132 - - &380 + - &378 title: Organization ruleset conditions type: object description: |- @@ -19357,7 +19332,7 @@ paths: - object rules: type: array - items: &679 + items: &677 title: Repository Rule type: object description: A repository rule. @@ -19366,7 +19341,7 @@ paths: - *139 - *140 - *141 - - &676 + - &674 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -19460,7 +19435,7 @@ paths: - *155 - *156 - *157 - - &677 + - &675 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. @@ -19716,7 +19691,7 @@ paths: type: string format: date-time examples: - default: &383 + default: &381 value: - version_id: 3 actor: @@ -19769,7 +19744,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &382 allOf: - *162 - type: object @@ -19824,7 +19799,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &385 + - &383 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19835,7 +19810,7 @@ paths: enum: - open - resolved - - &386 + - &384 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19845,7 +19820,7 @@ paths: required: false schema: type: string - - &387 + - &385 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19854,7 +19829,7 @@ paths: required: false schema: type: string - - &388 + - &386 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. @@ -19870,7 +19845,7 @@ paths: - *17 - *97 - *98 - - &389 + - &387 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19879,7 +19854,7 @@ paths: required: false schema: type: string - - &390 + - &388 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19888,7 +19863,7 @@ paths: schema: type: boolean default: false - - &391 + - &389 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19897,7 +19872,7 @@ paths: schema: type: boolean default: false - - &392 + - &390 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19913,7 +19888,7 @@ paths: application/json: schema: type: array - items: &393 + items: &391 type: object properties: number: *109 @@ -19929,14 +19904,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &691 + state: &689 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: &692 + resolution: &690 type: - string - 'null' @@ -20043,14 +20018,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &693 + - &691 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &695 + - &693 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -20107,7 +20082,7 @@ paths: - blob_url - commit_sha - commit_url - - &696 + - &694 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. @@ -20168,7 +20143,7 @@ paths: - page_url - commit_sha - commit_url - - &697 + - &695 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -20183,7 +20158,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &698 + - &696 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -20198,7 +20173,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &699 + - &697 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -20213,7 +20188,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &700 + - &698 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -20228,7 +20203,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &701 + - &699 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -20243,7 +20218,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &702 + - &700 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -20258,7 +20233,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &703 + - &701 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. @@ -20273,7 +20248,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &704 + - &702 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. @@ -20288,7 +20263,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &705 + - &703 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. @@ -20303,7 +20278,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &706 + - &704 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. @@ -20318,7 +20293,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &707 + - &705 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 @@ -20343,7 +20318,7 @@ paths: - type: 'null' - *4 examples: - default: &394 + default: &392 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -20552,7 +20527,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &393 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -20639,7 +20614,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *164 examples: - default: &396 + default: &394 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -20783,7 +20758,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &396 type: object properties: total_minutes_used: @@ -20853,7 +20828,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &399 + default: &397 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20884,7 +20859,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &400 + - &398 name: advanced_security_product in: query description: | @@ -20904,7 +20879,7 @@ paths: description: Success content: application/json: - schema: &401 + schema: &399 type: object properties: total_advanced_security_committers: @@ -20967,7 +20942,7 @@ paths: required: - repositories examples: - default: &402 + default: &400 value: total_advanced_security_committers: 2 total_count: 2 @@ -21581,7 +21556,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &401 type: object properties: total_gigabytes_bandwidth_used: @@ -21599,7 +21574,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &404 + default: &402 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -21612,8 +21587,10 @@ paths: "/enterprises/{enterprise}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an enterprise - description: Gets a report of premium request usage for an enterprise. To use - this endpoint, you must be an administrator or billing manager of the enterprise. + description: |- + Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-ghe @@ -21840,7 +21817,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &403 type: object properties: days_left_in_billing_cycle: @@ -21858,7 +21835,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &406 + default: &404 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -22744,7 +22721,7 @@ paths: properties: action: type: string - discussion: &829 + discussion: &827 title: Discussion description: A Discussion in a repository. type: object @@ -23247,7 +23224,7 @@ paths: milestone: anyOf: - type: 'null' - - &368 + - &366 title: Milestone description: A collection of related issues and pull requests. @@ -23419,7 +23396,7 @@ paths: timeline_url: type: string format: uri - type: &331 + type: &329 title: Issue Type description: The type of issue. type: @@ -23530,7 +23507,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &751 + sub_issues_summary: &749 title: Sub-issues Summary type: object properties: @@ -23551,7 +23528,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &752 + issue_dependencies_summary: &750 title: Issue Dependencies Summary type: object properties: @@ -23570,7 +23547,7 @@ paths: - total_blocking issue_field_values: type: array - items: &753 + items: &751 title: Issue Field Value description: A value assigned to an issue field type: object @@ -23683,7 +23660,7 @@ paths: action: type: string issue: *183 - comment: &617 + comment: &615 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -24406,7 +24383,7 @@ paths: type: string release: allOf: - - &669 + - &667 title: Release description: A release. type: object @@ -24488,7 +24465,7 @@ paths: author: *4 assets: type: array - items: &670 + items: &668 title: Release Asset description: Data related to a release. type: object @@ -25079,7 +25056,7 @@ paths: url: type: string format: uri - user: &765 + user: &763 title: Public User description: Public User type: object @@ -26974,7 +26951,7 @@ paths: - closed - all default: open - - &334 + - &332 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -27025,7 +27002,7 @@ paths: type: array items: *183 examples: - default: &335 + default: &333 value: - id: 1 node_id: MDU6SXNzdWUx @@ -28437,14 +28414,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &430 + - &428 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &431 + - &429 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -28506,7 +28483,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &444 + '301': &442 description: Moved permanently content: application/json: @@ -28528,7 +28505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &645 + - &643 name: all description: If `true`, show notifications marked as read. in: query @@ -28536,7 +28513,7 @@ paths: schema: type: boolean default: false - - &646 + - &644 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -28546,7 +28523,7 @@ paths: type: boolean default: false - *189 - - &647 + - &645 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: @@ -28917,7 +28894,7 @@ paths: type: boolean examples: - false - security_and_analysis: &377 + security_and_analysis: &375 type: - object - 'null' @@ -29090,7 +29067,7 @@ paths: - url - subscription_url examples: - default: &648 + default: &646 value: - id: '1' repository: @@ -29643,7 +29620,7 @@ paths: type: array items: *62 examples: - default: &781 + default: &779 value: - login: github id: 1 @@ -30058,9 +30035,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -31097,7 +31075,7 @@ paths: type: integer repository_cache_usages: type: array - items: &449 + items: &447 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -33020,7 +32998,7 @@ paths: type: array items: *246 examples: - default: &768 + default: &766 value: total_count: 1 repositories: @@ -34064,7 +34042,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &467 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -34099,7 +34077,7 @@ paths: - key_id - key examples: - default: &470 + default: &468 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34512,7 +34490,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *76 - - &454 + - &452 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -35325,12 +35303,12 @@ paths: required: - subject_digests examples: - default: &796 + default: &794 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &797 + withPredicateType: &795 value: subject_digests: - sha256:abc123 @@ -35389,7 +35367,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &798 + default: &796 value: attestations_subject_digests: - sha256:abc: @@ -35582,6 +35560,57 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestation-repositories + parameters: + - *17 + - *97 + - *98 + - *76 + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + value: + - id: 123 + name: foo + - id: 456 + name: bar + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -35685,7 +35714,7 @@ paths: initiator: type: string examples: - default: &483 + default: &481 value: attestations: - bundle: @@ -36601,7 +36630,7 @@ paths: be returned. in: query required: false - schema: &508 + schema: &506 type: string description: Severity of a code scanning alert. enum: @@ -37617,7 +37646,7 @@ paths: type: integer codespaces: type: array - items: &336 + items: &334 type: object title: Codespace description: A codespace. @@ -37652,7 +37681,7 @@ paths: machine: anyOf: - type: 'null' - - &537 + - &535 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -37939,7 +37968,7 @@ paths: - pulls_url - recent_folders examples: - default: &337 + default: &335 value: total_count: 3 codespaces: @@ -38604,7 +38633,7 @@ paths: - updated_at - visibility examples: - default: &538 + default: &536 value: total_count: 2 secrets: @@ -38642,7 +38671,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &537 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -38677,7 +38706,7 @@ paths: - key_id - key examples: - default: &540 + default: &538 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38709,7 +38738,7 @@ paths: application/json: schema: *288 examples: - default: &542 + default: &540 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -40311,8 +40340,6 @@ paths: - *99 - *97 - *98 - - *301 - - *302 - *17 responses: '200': @@ -40321,9 +40348,9 @@ paths: application/json: schema: type: array - items: *303 + items: *301 examples: - default: *304 + default: *302 '304': *35 '400': *14 '403': *27 @@ -40367,7 +40394,7 @@ paths: type: integer secrets: type: array - items: &305 + items: &303 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -40446,7 +40473,7 @@ paths: description: Response content: application/json: - schema: &565 + schema: &563 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -40465,7 +40492,7 @@ paths: - key_id - key examples: - default: &566 + default: &564 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -40495,7 +40522,7 @@ paths: description: Response content: application/json: - schema: *305 + schema: *303 examples: default: value: @@ -40795,7 +40822,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *76 - - &574 + - &572 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -40803,7 +40830,7 @@ paths: required: false schema: type: string - - &575 + - &573 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -40811,7 +40838,7 @@ paths: required: false schema: type: string - - &576 + - &574 name: time_period description: |- The time period to filter by. @@ -40827,7 +40854,7 @@ paths: - week - month default: month - - &577 + - &575 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -40852,7 +40879,7 @@ paths: application/json: schema: type: array - items: &578 + items: &576 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -41015,7 +41042,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &579 + default: &577 value: - id: 21 number: 42 @@ -41106,7 +41133,7 @@ paths: - *92 - *93 - *94 - - &580 + - &578 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -41132,7 +41159,7 @@ paths: application/json: schema: type: array - items: &581 + items: &579 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -41259,7 +41286,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &582 + default: &580 value: - id: 21 number: 42 @@ -41347,7 +41374,7 @@ paths: application/json: schema: type: array - items: &346 + items: &344 title: Package description: A software package type: object @@ -41418,7 +41445,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &345 value: - id: 197 name: hello_docker @@ -41605,7 +41632,7 @@ paths: description: Response content: application/json: - schema: &425 + schema: &423 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -41695,7 +41722,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &426 + default: &424 value: group_id: '123' group_name: Octocat admins @@ -41750,7 +41777,7 @@ paths: description: Response content: application/json: - schema: &423 + schema: &421 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -41790,7 +41817,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &424 + default: &422 value: groups: - group_id: '123' @@ -41834,7 +41861,7 @@ paths: application/json: schema: type: array - items: &328 + items: &326 title: Organization Invitation description: Organization Invitation type: object @@ -41888,7 +41915,7 @@ paths: - invitation_teams_url - node_id examples: - default: &329 + default: &327 value: - id: 1 login: monalisa @@ -41955,7 +41982,7 @@ paths: application/json: schema: type: array - items: &378 + items: &376 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -41969,7 +41996,7 @@ paths: - name - description examples: - default: &379 + default: &377 value: - name: add_assignee description: Assign or remove a user @@ -42010,7 +42037,7 @@ paths: application/json: schema: type: array - items: &306 + items: &304 title: Org Hook description: Org Hook type: object @@ -42193,9 +42220,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: - default: &307 + default: &305 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -42240,7 +42267,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *76 - - &308 + - &306 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -42253,9 +42280,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: - default: *307 + default: *305 '404': *6 x-github: githubCloudOnly: false @@ -42277,7 +42304,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *76 - - *308 + - *306 requestBody: required: false content: @@ -42323,7 +42350,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: default: value: @@ -42363,7 +42390,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *76 - - *308 + - *306 responses: '204': description: Response @@ -42389,7 +42416,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *76 - - *308 + - *306 responses: '200': description: Response @@ -42418,7 +42445,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *76 - - *308 + - *306 requestBody: required: false content: @@ -42467,9 +42494,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *17 - - *309 + - *307 responses: '200': description: Response @@ -42477,9 +42504,9 @@ paths: application/json: schema: type: array - items: *310 + items: *308 examples: - default: *311 + default: *309 '400': *14 '422': *15 x-github: @@ -42503,16 +42530,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *16 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *313 + default: *311 '400': *14 '422': *15 x-github: @@ -42536,7 +42563,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *16 responses: '202': *37 @@ -42563,7 +42590,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *76 - - *308 + - *306 responses: '204': description: Response @@ -42586,7 +42613,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *76 - - &318 + - &316 name: actor_type in: path description: The type of the actor @@ -42599,14 +42626,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &319 + - &317 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &314 + - &312 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -42614,7 +42641,7 @@ paths: required: true schema: type: string - - &315 + - &313 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42709,12 +42736,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *76 - - *314 - - *315 + - *312 + - *313 - *19 - *17 - *99 - - &324 + - &322 name: sort description: The property to sort the results by. in: query @@ -42794,14 +42821,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *76 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &316 + schema: &314 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -42817,7 +42844,7 @@ paths: type: integer format: int64 examples: - default: &317 + default: &315 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -42838,23 +42865,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *76 - - &320 + - &318 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *316 + schema: *314 examples: - default: *317 + default: *315 x-github: enabledForGitHubApps: true category: orgs @@ -42873,18 +42900,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *76 - - *314 - - *315 - - *318 - - *319 + - *312 + - *313 + - *316 + - *317 responses: '200': description: Response content: application/json: - schema: *316 + schema: *314 examples: - default: *317 + default: *315 x-github: enabledForGitHubApps: true category: orgs @@ -42902,9 +42929,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *76 - - *314 - - *315 - - &321 + - *312 + - *313 + - &319 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -42917,7 +42944,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &320 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -42933,7 +42960,7 @@ paths: type: integer format: int64 examples: - default: &323 + default: &321 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -42970,18 +42997,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *76 - - *320 - - *314 - - *315 - - *321 + - *318 + - *312 + - *313 + - *319 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *323 + default: *321 x-github: enabledForGitHubApps: true category: orgs @@ -42999,19 +43026,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *76 - - *318 + - *316 + - *317 + - *312 + - *313 - *319 - - *314 - - *315 - - *321 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *323 + default: *321 x-github: enabledForGitHubApps: true category: orgs @@ -43029,13 +43056,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *76 - - *320 - - *314 - - *315 + - *318 + - *312 + - *313 - *19 - *17 - *99 - - *324 + - *322 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -43119,7 +43146,7 @@ paths: application/json: schema: *20 examples: - default: &613 + default: &611 value: id: 1 account: @@ -43285,12 +43312,12 @@ paths: application/json: schema: anyOf: - - &326 + - &324 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &325 + limit: &323 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -43318,7 +43345,7 @@ paths: properties: {} additionalProperties: false examples: - default: &327 + default: &325 value: limit: collaborators_only origin: organization @@ -43347,13 +43374,13 @@ paths: required: true content: application/json: - schema: &614 + schema: &612 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *325 + limit: *323 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -43378,9 +43405,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: - default: *327 + default: *325 '422': *15 x-github: githubCloudOnly: false @@ -43458,9 +43485,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 '404': *6 @@ -43538,7 +43565,7 @@ paths: description: Response content: application/json: - schema: *328 + schema: *326 examples: default: value: @@ -43595,7 +43622,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *76 - - &330 + - &328 name: invitation_id description: The unique identifier of the invitation. in: path @@ -43629,7 +43656,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *76 - - *330 + - *328 - *17 - *19 responses: @@ -43641,7 +43668,7 @@ paths: type: array items: *273 examples: - default: &345 + default: &343 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -43684,7 +43711,7 @@ paths: application/json: schema: type: array - items: *331 + items: *329 examples: default: value: @@ -43772,9 +43799,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *329 examples: - default: &332 + default: &330 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -43807,7 +43834,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *76 - - &333 + - &331 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -43863,9 +43890,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *329 examples: - default: *332 + default: *330 '404': *6 '422': *7 x-github: @@ -43890,7 +43917,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *76 - - *333 + - *331 responses: '204': description: Response @@ -43953,7 +43980,7 @@ paths: - closed - all default: open - - *334 + - *332 - name: type description: Can be the name of an issue type. in: query @@ -43984,7 +44011,7 @@ paths: type: array items: *183 examples: - default: *335 + default: *333 headers: Link: *41 '404': *6 @@ -44143,9 +44170,9 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: - default: *337 + default: *335 '304': *35 '500': *38 '401': *23 @@ -44172,7 +44199,7 @@ paths: parameters: - *76 - *178 - - &338 + - &336 name: codespace_name in: path required: true @@ -44207,15 +44234,15 @@ paths: parameters: - *76 - *178 - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: &536 + default: &534 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -44471,7 +44498,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &337 title: Org Membership description: Org Membership type: object @@ -44540,7 +44567,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &340 + response-if-user-has-an-active-admin-membership-with-organization: &338 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -44637,9 +44664,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: - response-if-user-already-had-membership-with-organization: *340 + response-if-user-already-had-membership-with-organization: *338 '422': *15 '403': *27 x-github: @@ -44711,7 +44738,7 @@ paths: application/json: schema: type: array - items: &341 + items: &339 title: Migration description: A migration. type: object @@ -45049,7 +45076,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -45228,7 +45255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *76 - - &342 + - &340 name: migration_id description: The unique identifier of the migration. in: path @@ -45256,7 +45283,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -45426,7 +45453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *76 - - *342 + - *340 responses: '302': description: Response @@ -45448,7 +45475,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *76 - - *342 + - *340 responses: '204': description: Response @@ -45472,8 +45499,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *76 - - *342 - - &780 + - *340 + - &778 name: repo_name description: repo_name parameter in: path @@ -45501,7 +45528,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *76 - - *342 + - *340 - *17 - *19 responses: @@ -45513,7 +45540,7 @@ paths: type: array items: *246 examples: - default: &352 + default: &350 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45722,7 +45749,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &343 + items: &341 title: Organization Role description: Organization roles type: object @@ -45931,7 +45958,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46161,7 +46188,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46258,7 +46285,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46417,7 +46444,7 @@ paths: parent: anyOf: - type: 'null' - - *344 + - *342 type: description: The ownership type of the team type: string @@ -46450,7 +46477,7 @@ paths: - type - parent examples: - default: *345 + default: *343 headers: Link: *41 '404': @@ -46509,7 +46536,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *344 + items: *342 name: type: - string @@ -46819,7 +46846,7 @@ paths: - nuget - container - *76 - - &782 + - &780 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -46855,12 +46882,12 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *347 + default: *345 '403': *27 '401': *23 - '400': &784 + '400': &782 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46882,7 +46909,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &348 + - &346 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -46900,7 +46927,7 @@ paths: - docker - nuget - container - - &349 + - &347 name: package_name description: The name of the package. in: path @@ -46913,7 +46940,7 @@ paths: description: Response content: application/json: - schema: *346 + schema: *344 examples: default: value: @@ -46965,8 +46992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 responses: '204': @@ -46999,8 +47026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - name: token description: package token @@ -47033,8 +47060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - *19 - *17 @@ -47055,7 +47082,7 @@ paths: application/json: schema: type: array - items: &350 + items: &348 title: Package Version description: A version of a software package type: object @@ -47190,10 +47217,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - &351 + - &349 name: package_version_id description: Unique identifier of the package version. in: path @@ -47205,7 +47232,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -47241,10 +47268,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - *351 + - *349 responses: '204': description: Response @@ -47276,10 +47303,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - *351 + - *349 responses: '204': description: Response @@ -47309,7 +47336,7 @@ paths: - *76 - *17 - *19 - - &353 + - &351 name: sort description: The property by which to sort the results. in: query @@ -47320,7 +47347,7 @@ paths: - created_at default: created_at - *99 - - &354 + - &352 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -47332,7 +47359,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &355 + - &353 name: repository description: The name of the repository to use to filter the results. in: query @@ -47341,7 +47368,7 @@ paths: type: string examples: - Hello-World - - &356 + - &354 name: permission description: The permission to use to filter the results. in: query @@ -47350,7 +47377,7 @@ paths: type: string examples: - issues_read - - &357 + - &355 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -47360,7 +47387,7 @@ paths: schema: type: string format: date-time - - &358 + - &356 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -47370,7 +47397,7 @@ paths: schema: type: string format: date-time - - &359 + - &357 name: token_id description: The ID of the token in: query @@ -47689,7 +47716,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -47715,14 +47742,14 @@ paths: - *76 - *17 - *19 - - *353 + - *351 - *99 + - *352 + - *353 - *354 - *355 - *356 - *357 - - *358 - - *359 responses: '500': *38 '422': *15 @@ -48006,7 +48033,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -48048,7 +48075,7 @@ paths: type: integer configurations: type: array - items: &360 + items: &358 title: Organization private registry description: Private registry configuration for an organization type: object @@ -48307,7 +48334,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &361 + org-private-registry-with-selected-visibility: &359 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -48405,9 +48432,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *360 + schema: *358 examples: - default: *361 + default: *359 '404': *6 x-github: githubCloudOnly: false @@ -48572,7 +48599,7 @@ paths: application/json: schema: type: array - items: &362 + items: &360 title: Project description: Projects are a way to organize columns and cards of work. @@ -48754,7 +48781,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: default: value: @@ -48792,7 +48819,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &441 + '410': &439 description: Gone content: application/json: @@ -48835,7 +48862,7 @@ paths: application/json: schema: type: array - items: &363 + items: &361 title: Projects v2 Project description: A projects v2 project type: object @@ -48909,7 +48936,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &857 + - &855 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -48994,7 +49021,7 @@ paths: - deleted_at - deleted_by examples: - default: &364 + default: &362 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -49097,7 +49124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &365 + - &363 name: project_number description: The project's number. in: path @@ -49110,9 +49137,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -49134,7 +49161,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *365 + - *363 - *76 - *17 - *97 @@ -49146,7 +49173,7 @@ paths: application/json: schema: type: array - items: &366 + items: &364 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -49296,7 +49323,7 @@ paths: - updated_at - project_url examples: - default: &367 + default: &365 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -49339,8 +49366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *365 - - &801 + - *363 + - &799 name: field_id description: The unique identifier of the field. in: path @@ -49353,9 +49380,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -49378,7 +49405,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *365 + - *363 - *76 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -49388,8 +49415,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -49397,8 +49426,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - *97 - *98 - *17 @@ -49409,7 +49436,7 @@ paths: application/json: schema: type: array - items: &372 + items: &370 title: Projects v2 Item description: An item belonging to a project type: object @@ -49426,7 +49453,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &370 + content_type: &368 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -49483,7 +49510,7 @@ paths: - updated_at - archived_at examples: - default: &373 + default: &371 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -50178,7 +50205,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *76 - - *365 + - *363 requestBody: required: true description: Details of the item to add to the project. @@ -50215,7 +50242,7 @@ paths: description: Response content: application/json: - schema: &802 + schema: &800 title: Projects v2 Item description: An item belonging to a project type: object @@ -50229,7 +50256,7 @@ paths: content: oneOf: - *183 - - &549 + - &547 title: Pull Request Simple description: Pull Request Simple type: object @@ -50349,7 +50376,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 active_lock_reason: type: - string @@ -50448,7 +50475,7 @@ paths: _links: type: object properties: - comments: &369 + comments: &367 title: Link description: Hypermedia Link type: object @@ -50457,13 +50484,13 @@ paths: type: string required: - href - commits: *369 - statuses: *369 - html: *369 - issue: *369 - review_comments: *369 - review_comment: *369 - self: *369 + commits: *367 + statuses: *367 + html: *367 + issue: *367 + review_comments: *367 + review_comment: *367 + self: *367 required: - comments - commits @@ -50474,7 +50501,7 @@ paths: - review_comment - self author_association: *184 - auto_merge: &655 + auto_merge: &653 title: Auto merge description: The status of auto merging a pull request. type: @@ -50576,7 +50603,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *370 + content_type: *368 creator: *4 created_at: type: string @@ -50613,7 +50640,7 @@ paths: - updated_at - archived_at examples: - issue: &371 + issue: &369 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -50668,7 +50695,7 @@ paths: archived_at: project_url: https://api.github.com/users/octocat/projectsV2/1 item_url: https://api.github.com/users/octocat/projectsV2/items/17 - pull_request: *371 + pull_request: *369 '304': *35 '403': *27 '401': *23 @@ -50688,9 +50715,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *365 + - *363 - *76 - - &374 + - &372 name: item_id description: The unique identifier of the project item. in: path @@ -50714,9 +50741,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -50737,9 +50764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *365 + - *363 - *76 - - *374 + - *372 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -50812,13 +50839,13 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - text_field: *373 - number_field: *373 - date_field: *373 - single_select_field: *373 - iteration_field: *373 + text_field: *371 + number_field: *371 + date_field: *371 + single_select_field: *371 + iteration_field: *371 '401': *23 '403': *27 '404': *6 @@ -50838,9 +50865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *365 + - *363 - *76 - - *374 + - *372 responses: '204': description: Response @@ -51003,7 +51030,7 @@ paths: required: true content: application/json: - schema: *375 + schema: *373 examples: default: value: @@ -51109,7 +51136,7 @@ paths: - octocat/Hello-World properties: type: array - items: &376 + items: &374 title: Custom Property Value description: Custom property name and associated value type: object @@ -51199,7 +51226,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *376 + items: *374 required: - repository_names - properties @@ -51392,7 +51419,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -51596,7 +51623,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &441 title: Full Repository description: Full Repository type: object @@ -52061,7 +52088,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &554 + code_of_conduct: &552 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -52091,7 +52118,7 @@ paths: - key - name - html_url - security_and_analysis: *377 + security_and_analysis: *375 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -52175,7 +52202,7 @@ paths: - network_count - subscribers_count examples: - default: &445 + default: &443 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -52701,9 +52728,9 @@ paths: application/json: schema: type: array - items: *378 + items: *376 examples: - default: *379 + default: *377 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -52728,7 +52755,7 @@ paths: - *76 - *17 - *19 - - &678 + - &676 name: targets description: | A comma-separated list of rule targets to filter by. @@ -52820,11 +52847,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *137 - conditions: *380 + conditions: *378 rules: type: array description: An array of rules within the ruleset. - items: &382 + items: &380 title: Repository Rule type: object description: A repository rule. @@ -52888,7 +52915,7 @@ paths: application/json: schema: *158 examples: - default: &381 + default: &379 value: id: 21 name: super cool ruleset @@ -52943,7 +52970,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *76 - - &680 + - &678 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 @@ -52955,14 +52982,14 @@ paths: x-multi-segment: true - *270 - *94 - - &681 + - &679 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 - - &682 + - &680 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52982,7 +53009,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &681 title: Rule Suites description: Response type: array @@ -53038,7 +53065,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &684 + default: &682 value: - id: 21 actor_id: 12 @@ -53082,7 +53109,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *76 - - &685 + - &683 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -53098,7 +53125,7 @@ paths: description: Response content: application/json: - schema: &686 + schema: &684 title: Rule Suite description: Response type: object @@ -53205,7 +53232,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &687 + default: &685 value: id: 21 actor_id: 12 @@ -53280,7 +53307,7 @@ paths: application/json: schema: *158 examples: - default: *381 + default: *379 '404': *6 '500': *38 put: @@ -53329,11 +53356,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *137 - conditions: *380 + conditions: *378 rules: description: An array of rules within the ruleset. type: array - items: *382 + items: *380 examples: default: value: @@ -53370,7 +53397,7 @@ paths: application/json: schema: *158 examples: - default: *381 + default: *379 '404': *6 '500': *38 delete: @@ -53429,7 +53456,7 @@ paths: type: array items: *162 examples: - default: *383 + default: *381 '404': *6 '500': *38 x-github: @@ -53466,7 +53493,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *382 examples: default: value: @@ -53529,14 +53556,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *76 + - *383 + - *384 - *385 - *386 - - *387 - - *388 - *99 - *19 - *17 - - &689 + - &687 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 @@ -53546,7 +53573,7 @@ paths: required: false schema: type: string - - &690 + - &688 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 @@ -53556,10 +53583,10 @@ paths: required: false schema: type: string + - *387 + - *388 - *389 - *390 - - *391 - - *392 responses: '200': description: Response @@ -53567,9 +53594,9 @@ paths: application/json: schema: type: array - items: *393 + items: *391 examples: - default: *394 + default: *392 headers: Link: *41 '404': *6 @@ -53604,9 +53631,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: *396 + default: *394 '403': *27 '404': *6 patch: @@ -53759,7 +53786,7 @@ paths: application/json: schema: type: array - items: &711 + items: &709 description: A repository security advisory. type: object properties: @@ -54003,7 +54030,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 credits_detailed: type: - array @@ -54014,7 +54041,7 @@ paths: type: object properties: user: *4 - type: *397 + type: *395 state: type: string description: The state of the user's acceptance of the @@ -54078,7 +54105,7 @@ paths: - private_fork additionalProperties: false examples: - default: &712 + default: &710 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54465,9 +54492,9 @@ paths: application/json: schema: type: array - items: *344 + items: *342 examples: - default: *345 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54552,9 +54579,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *396 examples: - default: *399 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54579,7 +54606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *76 - - *400 + - *398 - *17 - *19 responses: @@ -54587,9 +54614,9 @@ paths: description: Success content: application/json: - schema: *401 + schema: *399 examples: - default: *402 + default: *400 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -54617,9 +54644,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *401 examples: - default: *404 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54647,9 +54674,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *403 examples: - default: *406 + default: *404 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54932,7 +54959,7 @@ paths: type: array items: *122 examples: - default: *407 + default: *405 headers: Link: *41 x-github: @@ -55133,15 +55160,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *76 - - *408 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *407 examples: - default: *410 + default: *408 headers: Link: *41 x-github: @@ -55179,7 +55206,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &430 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -55231,7 +55258,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &433 + default: &431 value: groups: - group_id: '123' @@ -55345,7 +55372,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 headers: Link: *41 '403': *27 @@ -55439,7 +55466,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &409 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -55513,7 +55540,7 @@ paths: parent: anyOf: - type: 'null' - - *344 + - *342 members_count: type: integer examples: @@ -55838,7 +55865,7 @@ paths: - repos_count - organization examples: - default: &412 + default: &410 value: id: 1 node_id: MDQ6VGVhbTE= @@ -55915,9 +55942,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 x-github: githubCloudOnly: false @@ -56002,16 +56029,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '201': description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 '422': *15 '403': *27 @@ -56081,7 +56108,7 @@ paths: application/json: schema: type: array - items: &413 + items: &411 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -56192,7 +56219,7 @@ paths: - updated_at - url examples: - default: &755 + default: &753 value: - author: login: octocat @@ -56301,9 +56328,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: &414 + default: &412 value: author: login: octocat @@ -56377,7 +56404,7 @@ paths: parameters: - *76 - *180 - - &415 + - &413 name: discussion_number description: The number that identifies the discussion. in: path @@ -56389,9 +56416,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56415,7 +56442,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: false content: @@ -56438,9 +56465,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: &756 + default: &754 value: author: login: octocat @@ -56512,7 +56539,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 responses: '204': description: Response @@ -56540,7 +56567,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 - *99 - *17 - *19 @@ -56551,7 +56578,7 @@ paths: application/json: schema: type: array - items: &416 + items: &414 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -56631,7 +56658,7 @@ paths: - updated_at - url examples: - default: &757 + default: &755 value: - author: login: octocat @@ -56701,7 +56728,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: true content: @@ -56723,9 +56750,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: &417 + default: &415 value: author: login: octocat @@ -56793,8 +56820,8 @@ paths: parameters: - *76 - *180 - - *415 - - &418 + - *413 + - &416 name: comment_number description: The number that identifies the comment. in: path @@ -56806,9 +56833,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56832,8 +56859,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 requestBody: required: true content: @@ -56855,9 +56882,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: &758 + default: &756 value: author: login: octocat @@ -56923,8 +56950,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 responses: '204': description: Response @@ -56952,8 +56979,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -56979,7 +57006,7 @@ paths: application/json: schema: type: array - items: &419 + items: &417 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -57023,7 +57050,7 @@ paths: - content - created_at examples: - default: &421 + default: &419 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -57075,8 +57102,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 requestBody: required: true content: @@ -57109,9 +57136,9 @@ paths: team discussion comment content: application/json: - schema: *419 + schema: *417 examples: - default: &420 + default: &418 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -57140,9 +57167,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57167,9 +57194,9 @@ paths: parameters: - *76 - *180 - - *415 - - *418 - - &422 + - *413 + - *416 + - &420 name: reaction_id description: The unique identifier of the reaction. in: path @@ -57203,7 +57230,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -57229,9 +57256,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -57259,7 +57286,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: true content: @@ -57291,16 +57318,16 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57325,8 +57352,8 @@ paths: parameters: - *76 - *180 - - *415 - - *422 + - *413 + - *420 responses: '204': description: Response @@ -57356,9 +57383,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *421 examples: - default: *424 + default: *422 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -57402,9 +57429,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *423 examples: - default: *426 + default: *424 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -57459,9 +57486,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 x-github: @@ -57545,7 +57572,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &425 title: Team Membership description: Team Membership type: object @@ -57573,7 +57600,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &759 + response-if-user-is-a-team-maintainer: &757 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57636,9 +57663,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-users-membership-with-team-is-now-pending: &760 + response-if-users-membership-with-team-is-now-pending: &758 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57711,7 +57738,7 @@ paths: application/json: schema: type: array - items: &428 + items: &426 title: Team Project description: A team's access to a project. type: object @@ -57780,7 +57807,7 @@ paths: - updated_at - permissions examples: - default: &761 + default: &759 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -57845,7 +57872,7 @@ paths: parameters: - *76 - *180 - - &429 + - &427 name: project_id description: The unique identifier of the project. in: path @@ -57857,9 +57884,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *426 examples: - default: &762 + default: &760 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -57923,7 +57950,7 @@ paths: parameters: - *76 - *180 - - *429 + - *427 requestBody: required: false content: @@ -57992,7 +58019,7 @@ paths: parameters: - *76 - *180 - - *429 + - *427 responses: '204': description: Response @@ -58032,7 +58059,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -58063,14 +58090,14 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &763 + schema: &761 title: Team Repository description: A team's access to a repository. type: object @@ -58713,8 +58740,8 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -58761,8 +58788,8 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -58795,9 +58822,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: - default: *433 + default: *431 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -58863,7 +58890,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: default: value: @@ -58908,7 +58935,7 @@ paths: type: array items: *273 examples: - response-if-child-teams-exist: &764 + response-if-child-teams-exist: &762 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -59035,7 +59062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &434 + - &432 name: card_id description: The unique identifier of the card. in: path @@ -59047,7 +59074,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &433 title: Project Card description: Project cards represent a scope of work. type: object @@ -59122,7 +59149,7 @@ paths: - created_at - updated_at examples: - default: &436 + default: &434 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -59178,7 +59205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *434 + - *432 requestBody: required: false content: @@ -59208,9 +59235,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *433 examples: - default: *436 + default: *434 '304': *35 '403': *27 '401': *23 @@ -59237,7 +59264,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *434 + - *432 responses: '204': description: Response @@ -59281,7 +59308,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *434 + - *432 requestBody: required: true content: @@ -59394,7 +59421,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &437 + - &435 name: column_id description: The unique identifier of the column. in: path @@ -59406,7 +59433,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &436 title: Project Column description: Project columns contain cards of work. type: object @@ -59460,7 +59487,7 @@ paths: - created_at - updated_at examples: - default: &439 + default: &437 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -59495,7 +59522,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *437 + - *435 requestBody: required: true content: @@ -59520,9 +59547,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *436 examples: - default: *439 + default: *437 '304': *35 '403': *27 '401': *23 @@ -59547,7 +59574,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *437 + - *435 responses: '204': description: Response @@ -59576,7 +59603,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *437 + - *435 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -59597,7 +59624,7 @@ paths: application/json: schema: type: array - items: *435 + items: *433 examples: default: value: @@ -59656,7 +59683,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *437 + - *435 requestBody: required: true content: @@ -59700,9 +59727,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *433 examples: - default: *436 + default: *434 '304': *35 '403': *27 '401': *23 @@ -59758,7 +59785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *437 + - *435 requestBody: required: true content: @@ -59819,15 +59846,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *429 + - *427 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: &440 + default: &438 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -59884,7 +59911,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *429 + - *427 requestBody: required: false content: @@ -59933,9 +59960,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *440 + default: *438 '404': description: Not Found if the authenticated user does not have access to the project @@ -59956,7 +59983,7 @@ paths: items: type: string '401': *23 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -59979,7 +60006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *429 + - *427 responses: '204': description: Delete Success @@ -60000,7 +60027,7 @@ paths: items: type: string '401': *23 - '410': *441 + '410': *439 '404': *6 x-github: githubCloudOnly: false @@ -60024,7 +60051,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *429 + - *427 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -60081,7 +60108,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *429 + - *427 - *178 requestBody: required: false @@ -60136,7 +60163,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *429 + - *427 - *178 responses: '204': @@ -60168,7 +60195,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *429 + - *427 - *178 responses: '200': @@ -60239,7 +60266,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *429 + - *427 - *17 - *19 responses: @@ -60249,7 +60276,7 @@ paths: application/json: schema: type: array - items: *438 + items: *436 examples: default: value: @@ -60287,7 +60314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *429 + - *427 requestBody: required: true content: @@ -60311,7 +60338,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *436 examples: default: value: @@ -60376,7 +60403,7 @@ paths: resources: type: object properties: - core: &442 + core: &440 title: Rate Limit type: object properties: @@ -60393,21 +60420,21 @@ paths: - remaining - reset - used - graphql: *442 - search: *442 - code_search: *442 - source_import: *442 - integration_manifest: *442 - code_scanning_upload: *442 - actions_runner_registration: *442 - scim: *442 - dependency_snapshots: *442 - dependency_sbom: *442 - code_scanning_autofix: *442 + graphql: *440 + search: *440 + code_search: *440 + source_import: *440 + integration_manifest: *440 + code_scanning_upload: *440 + actions_runner_registration: *440 + scim: *440 + dependency_snapshots: *440 + dependency_sbom: *440 + code_scanning_autofix: *440 required: - core - search - rate: *442 + rate: *440 required: - rate - resources @@ -60512,14 +60539,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *443 + schema: *441 examples: default-response: summary: Default response @@ -61024,7 +61051,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *444 + '301': *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61042,8 +61069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -61301,10 +61328,10 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 - '307': &446 + default: *443 + '307': &444 description: Temporary Redirect content: application/json: @@ -61333,8 +61360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -61356,7 +61383,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *446 + '307': *444 '404': *6 '409': *107 x-github: @@ -61380,11 +61407,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - - &461 + - &459 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -61407,7 +61434,7 @@ paths: type: integer artifacts: type: array - items: &447 + items: &445 title: Artifact description: An artifact type: object @@ -61502,7 +61529,7 @@ paths: - expires_at - updated_at examples: - default: &462 + default: &460 value: total_count: 2 artifacts: @@ -61563,9 +61590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *430 - - *431 - - &448 + - *428 + - *429 + - &446 name: artifact_id description: The unique identifier of the artifact. in: path @@ -61577,7 +61604,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -61615,9 +61642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *430 - - *431 - - *448 + - *428 + - *429 + - *446 responses: '204': description: Response @@ -61641,9 +61668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *430 - - *431 - - *448 + - *428 + - *429 + - *446 - name: archive_format in: path required: true @@ -61657,7 +61684,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61680,14 +61707,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *449 + schema: *447 examples: default: value: @@ -61713,11 +61740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - - &450 + - &448 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -61751,7 +61778,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &449 title: Repository actions caches description: Repository actions caches type: object @@ -61801,7 +61828,7 @@ paths: - total_count - actions_caches examples: - default: &452 + default: &450 value: total_count: 1 actions_caches: @@ -61833,23 +61860,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *430 - - *431 + - *428 + - *429 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *450 + - *448 responses: '200': description: Response content: application/json: - schema: *451 + schema: *449 examples: - default: *452 + default: *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61869,8 +61896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *430 - - *431 + - *428 + - *429 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -61901,9 +61928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *430 - - *431 - - &453 + - *428 + - *429 + - &451 name: job_id description: The unique identifier of the job. in: path @@ -61915,7 +61942,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &463 title: Job description: Information of a job execution in a workflow run type: object @@ -62262,9 +62289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *430 - - *431 - - *453 + - *428 + - *429 + - *451 responses: '302': description: Response @@ -62292,9 +62319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *430 - - *431 - - *453 + - *428 + - *429 + - *451 requestBody: required: false content: @@ -62340,8 +62367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Status response @@ -62391,8 +62418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -62455,8 +62482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -62474,7 +62501,7 @@ paths: type: integer secrets: type: array - items: &467 + items: &465 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -62495,7 +62522,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &466 value: total_count: 2 secrets: @@ -62528,9 +62555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *430 - - *431 - - *454 + - *428 + - *429 + - *452 - *19 responses: '200': @@ -62547,7 +62574,7 @@ paths: type: integer variables: type: array - items: &471 + items: &469 title: Actions Variable type: object properties: @@ -62581,7 +62608,7 @@ paths: - created_at - updated_at examples: - default: &472 + default: &470 value: total_count: 2 variables: @@ -62614,8 +62641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62624,7 +62651,7 @@ paths: schema: type: object properties: - enabled: &455 + enabled: &453 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *49 @@ -62659,8 +62686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -62671,7 +62698,7 @@ paths: schema: type: object properties: - enabled: *455 + enabled: *453 allowed_actions: *49 sha_pinning_required: *50 required: @@ -62704,14 +62731,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &456 + schema: &454 type: object properties: access_level: @@ -62729,7 +62756,7 @@ paths: required: - access_level examples: - default: &457 + default: &455 value: access_level: organization x-github: @@ -62754,15 +62781,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: application/json: - schema: *456 + schema: *454 examples: - default: *457 + default: *455 responses: '204': description: Response @@ -62786,8 +62813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62817,8 +62844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Empty response for successful settings update @@ -62852,8 +62879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62880,8 +62907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -62915,8 +62942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62944,8 +62971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -62976,8 +63003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63008,8 +63035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -63041,8 +63068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63071,8 +63098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Success response @@ -63112,8 +63139,8 @@ paths: in: query schema: type: string - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -63157,8 +63184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63190,8 +63217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -63265,8 +63292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -63302,8 +63329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -63333,8 +63360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': @@ -63364,8 +63391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '204': @@ -63392,8 +63419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': *70 @@ -63418,8 +63445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 requestBody: required: true @@ -63468,8 +63495,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 requestBody: required: true @@ -63519,8 +63546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': *253 @@ -63550,8 +63577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 - *254 responses: @@ -63581,9 +63608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *430 - - *431 - - &475 + - *428 + - *429 + - &473 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -63591,7 +63618,7 @@ paths: required: false schema: type: string - - &476 + - &474 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -63599,7 +63626,7 @@ paths: required: false schema: type: string - - &477 + - &475 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -63608,7 +63635,7 @@ paths: required: false schema: type: string - - &478 + - &476 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -63635,7 +63662,7 @@ paths: - pending - *17 - *19 - - &479 + - &477 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -63644,7 +63671,7 @@ paths: schema: type: string format: date-time - - &458 + - &456 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -63653,13 +63680,13 @@ paths: schema: type: boolean default: false - - &480 + - &478 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &481 + - &479 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -63682,7 +63709,7 @@ paths: type: integer workflow_runs: type: array - items: &459 + items: &457 title: Workflow Run description: An invocation of a workflow type: object @@ -63860,7 +63887,7 @@ paths: head_commit: anyOf: - type: 'null' - - &503 + - &501 title: Simple Commit description: A commit. type: object @@ -63975,7 +64002,7 @@ paths: - workflow_url - pull_requests examples: - default: &482 + default: &480 value: total_count: 1 workflow_runs: @@ -64211,24 +64238,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *430 - - *431 - - &460 + - *428 + - *429 + - &458 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *458 + - *456 responses: '200': description: Response content: application/json: - schema: *459 + schema: *457 examples: - default: &463 + default: &461 value: id: 30433642 name: Build @@ -64469,9 +64496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '204': description: Response @@ -64494,9 +64521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -64624,9 +64651,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '201': description: Response @@ -64659,12 +64686,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 - *17 - *19 - - *461 + - *459 responses: '200': description: Response @@ -64680,9 +64707,9 @@ paths: type: integer artifacts: type: array - items: *447 + items: *445 examples: - default: *462 + default: *460 headers: Link: *41 x-github: @@ -64706,25 +64733,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *430 - - *431 - - *460 - - &464 + - *428 + - *429 + - *458 + - &462 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *458 + - *456 responses: '200': description: Response content: application/json: - schema: *459 + schema: *457 examples: - default: *463 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64747,10 +64774,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *430 - - *431 - - *460 - - *464 + - *428 + - *429 + - *458 + - *462 - *17 - *19 responses: @@ -64768,9 +64795,9 @@ paths: type: integer jobs: type: array - items: *465 + items: *463 examples: - default: &466 + default: &464 value: total_count: 1 jobs: @@ -64883,10 +64910,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *430 - - *431 - - *460 - - *464 + - *428 + - *429 + - *458 + - *462 responses: '302': description: Response @@ -64914,9 +64941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '202': description: Response @@ -64949,9 +64976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: true content: @@ -65018,9 +65045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '202': description: Response @@ -65053,9 +65080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -65085,9 +65112,9 @@ paths: type: integer jobs: type: array - items: *465 + items: *463 examples: - default: *466 + default: *464 headers: Link: *41 x-github: @@ -65112,9 +65139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '302': description: Response @@ -65141,9 +65168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '204': description: Response @@ -65170,9 +65197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -65241,7 +65268,7 @@ paths: items: type: object properties: - type: &583 + type: &581 type: string description: The type of reviewer. enum: @@ -65327,9 +65354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: true content: @@ -65379,7 +65406,7 @@ paths: application/json: schema: type: array - items: &569 + items: &567 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -65491,7 +65518,7 @@ paths: - created_at - updated_at examples: - default: &570 + default: &568 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -65547,9 +65574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: false content: @@ -65594,9 +65621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: false content: @@ -65651,9 +65678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -65790,8 +65817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -65809,9 +65836,9 @@ paths: type: integer secrets: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *41 x-github: @@ -65836,16 +65863,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *469 + schema: *467 examples: - default: *470 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65867,17 +65894,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *467 + schema: *465 examples: - default: &596 + default: &594 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -65903,8 +65930,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -65962,8 +65989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -65989,9 +66016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *430 - - *431 - - *454 + - *428 + - *429 + - *452 - *19 responses: '200': @@ -66008,9 +66035,9 @@ paths: type: integer variables: type: array - items: *471 + items: *469 examples: - default: *472 + default: *470 headers: Link: *41 x-github: @@ -66033,8 +66060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -66086,17 +66113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 responses: '200': description: Response content: application/json: - schema: *471 + schema: *469 examples: - default: &597 + default: &595 value: name: USERNAME value: octocat @@ -66122,8 +66149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 requestBody: required: true @@ -66166,8 +66193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 responses: '204': @@ -66193,8 +66220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -66212,7 +66239,7 @@ paths: type: integer workflows: type: array - items: &473 + items: &471 title: Workflow description: A GitHub Actions workflow type: object @@ -66330,9 +66357,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *430 - - *431 - - &474 + - *428 + - *429 + - &472 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -66347,7 +66374,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: default: value: @@ -66380,9 +66407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66407,9 +66434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66460,9 +66487,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66489,19 +66516,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *430 - - *431 + - *428 + - *429 + - *472 + - *473 - *474 - *475 - *476 - - *477 - - *478 - *17 - *19 + - *477 + - *456 + - *478 - *479 - - *458 - - *480 - - *481 responses: '200': description: Response @@ -66517,9 +66544,9 @@ paths: type: integer workflow_runs: type: array - items: *459 + items: *457 examples: - default: *482 + default: *480 headers: Link: *41 x-github: @@ -66552,9 +66579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '200': description: Response @@ -66615,8 +66642,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *430 - - *431 + - *428 + - *429 - *99 - *17 - *97 @@ -66784,8 +66811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -66822,8 +66849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *430 - - *431 + - *428 + - *429 - name: assignee in: path required: true @@ -66859,8 +66886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -66972,8 +66999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *97 - *98 @@ -67029,7 +67056,7 @@ paths: initiator: type: string examples: - default: *483 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67049,8 +67076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -67058,7 +67085,7 @@ paths: application/json: schema: type: array - items: &484 + items: &482 title: Autolink reference description: An autolink reference. type: object @@ -67117,8 +67144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -67157,9 +67184,9 @@ paths: description: response content: application/json: - schema: *484 + schema: *482 examples: - default: &485 + default: &483 value: id: 1 key_prefix: TICKET- @@ -67190,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *430 - - *431 - - &486 + - *428 + - *429 + - &484 name: autolink_id description: The unique identifier of the autolink. in: path @@ -67204,9 +67231,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *482 examples: - default: *485 + default: *483 '404': *6 x-github: githubCloudOnly: false @@ -67226,9 +67253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *430 - - *431 - - *486 + - *428 + - *429 + - *484 responses: '204': description: Response @@ -67252,8 +67279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response if Dependabot is enabled @@ -67303,8 +67330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -67325,8 +67352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -67346,8 +67373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *430 - - *431 + - *428 + - *429 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -67385,7 +67412,7 @@ paths: - url protected: type: boolean - protection: &488 + protection: &486 title: Branch Protection description: Branch Protection type: object @@ -67428,7 +67455,7 @@ paths: required: - contexts - checks - enforce_admins: &491 + enforce_admins: &489 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -67445,7 +67472,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &493 + required_pull_request_reviews: &491 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -67529,7 +67556,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &490 + restrictions: &488 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -67822,9 +67849,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *430 - - *431 - - &489 + - *428 + - *429 + - &487 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -67838,14 +67865,14 @@ paths: description: Response content: application/json: - schema: &499 + schema: &497 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &545 + commit: &543 title: Commit description: Commit type: object @@ -67884,7 +67911,7 @@ paths: author: anyOf: - type: 'null' - - &487 + - &485 title: Git User description: Metaproperties for Git author/committer information. @@ -67905,7 +67932,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 message: type: string examples: @@ -67929,7 +67956,7 @@ paths: required: - sha - url - verification: &603 + verification: &601 title: Verification type: object properties: @@ -68009,7 +68036,7 @@ paths: type: integer files: type: array - items: &556 + items: &554 title: Diff Entry description: Diff Entry type: object @@ -68105,7 +68132,7 @@ paths: - self protected: type: boolean - protection: *488 + protection: *486 protection_url: type: string format: uri @@ -68214,7 +68241,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *444 + '301': *442 '404': *6 x-github: githubCloudOnly: false @@ -68236,15 +68263,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *488 + schema: *486 examples: default: value: @@ -68438,9 +68465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -68700,7 +68727,7 @@ paths: url: type: string format: uri - required_status_checks: &496 + required_status_checks: &494 title: Status Check Policy description: Status Check Policy type: object @@ -68859,7 +68886,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *490 + restrictions: *488 required_conversation_resolution: type: object properties: @@ -68971,9 +68998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -68998,17 +69025,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: &492 + default: &490 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -69030,17 +69057,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: *492 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69059,9 +69086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69086,17 +69113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: &494 + default: &492 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -69192,9 +69219,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69292,9 +69319,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: *494 + default: *492 '422': *15 x-github: githubCloudOnly: false @@ -69315,9 +69342,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69344,17 +69371,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: &495 + default: &493 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -69377,17 +69404,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: *495 + default: *493 '404': *6 x-github: githubCloudOnly: false @@ -69407,9 +69434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69434,17 +69461,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: &497 + default: &495 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -69470,9 +69497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69524,9 +69551,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '404': *6 '422': *15 x-github: @@ -69548,9 +69575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69574,9 +69601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -69610,9 +69637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69679,9 +69706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69745,9 +69772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: content: application/json: @@ -69813,15 +69840,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *490 + schema: *488 examples: default: value: @@ -69912,9 +69939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69937,9 +69964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -69949,7 +69976,7 @@ paths: type: array items: *5 examples: - default: &498 + default: &496 value: - id: 1 slug: octoapp @@ -70006,9 +70033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70042,7 +70069,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70063,9 +70090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70099,7 +70126,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70120,9 +70147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70156,7 +70183,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70178,9 +70205,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -70190,7 +70217,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '404': *6 x-github: githubCloudOnly: false @@ -70210,9 +70237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -70250,7 +70277,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70271,9 +70298,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -70311,7 +70338,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70332,9 +70359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: content: application/json: @@ -70371,7 +70398,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70393,9 +70420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -70429,9 +70456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70489,9 +70516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70549,9 +70576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70611,9 +70638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70635,7 +70662,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *497 examples: default: value: @@ -70749,8 +70776,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 @@ -70786,8 +70813,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -70860,8 +70887,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 @@ -70901,8 +70928,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -70972,8 +70999,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -71044,8 +71071,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_response_id in: path required: true @@ -71078,8 +71105,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -71358,7 +71385,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &498 title: CheckRun description: A check performed on the code of a given code change type: object @@ -71494,7 +71521,7 @@ paths: check. type: array items: *187 - deployment: &818 + deployment: &816 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -71781,9 +71808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *430 - - *431 - - &501 + - *428 + - *429 + - &499 name: check_run_id description: The unique identifier of the check run. in: path @@ -71795,9 +71822,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: - default: &502 + default: &500 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -71897,9 +71924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 requestBody: required: true content: @@ -72139,9 +72166,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: - default: *502 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72161,9 +72188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 - *17 - *19 responses: @@ -72273,9 +72300,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 responses: '201': description: Response @@ -72319,8 +72346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -72342,7 +72369,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &504 + schema: &502 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -72440,7 +72467,7 @@ paths: - string - 'null' format: date-time - head_commit: *503 + head_commit: *501 latest_check_runs_count: type: integer check_runs_url: @@ -72468,7 +72495,7 @@ paths: - check_runs_url - pull_requests examples: - default: &505 + default: &503 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -72759,9 +72786,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *504 + schema: *502 examples: - default: *505 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72780,8 +72807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -73090,9 +73117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *430 - - *431 - - &506 + - *428 + - *429 + - &504 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -73104,9 +73131,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *502 examples: - default: *505 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73129,17 +73156,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *430 - - *431 - - *506 - - &551 + - *428 + - *429 + - *504 + - &549 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &552 + - &550 name: status description: Returns check runs with the specified `status`. in: query @@ -73178,9 +73205,9 @@ paths: type: integer check_runs: type: array - items: *500 + items: *498 examples: - default: &553 + default: &551 value: total_count: 1 check_runs: @@ -73282,9 +73309,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *430 - - *431 - - *506 + - *428 + - *429 + - *504 responses: '201': description: Response @@ -73317,21 +73344,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *277 - *278 - *19 - *17 - - &522 + - &520 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *507 - - &523 + schema: *505 + - &521 name: pr description: The number of the pull request for the results you want to list. in: query @@ -73362,7 +73389,7 @@ paths: be returned. in: query required: false - schema: *508 + schema: *506 responses: '200': description: Response @@ -73378,7 +73405,7 @@ paths: updated_at: *117 url: *114 html_url: *115 - instances_url: *509 + instances_url: *507 state: *102 fixed_at: *119 dismissed_by: @@ -73386,11 +73413,11 @@ paths: - type: 'null' - *4 dismissed_at: *118 - dismissed_reason: *510 - dismissed_comment: *511 - rule: *512 - tool: *513 - most_recent_instance: *514 + dismissed_reason: *508 + dismissed_comment: *509 + rule: *510 + tool: *511 + most_recent_instance: *512 dismissal_approved_by: anyOf: - type: 'null' @@ -73513,7 +73540,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &515 + '403': &513 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -73540,9 +73567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *430 - - *431 - - &516 + - *428 + - *429 + - &514 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -73556,7 +73583,7 @@ paths: description: Response content: application/json: - schema: &517 + schema: &515 type: object properties: number: *109 @@ -73564,7 +73591,7 @@ paths: updated_at: *117 url: *114 html_url: *115 - instances_url: *509 + instances_url: *507 state: *102 fixed_at: *119 dismissed_by: @@ -73572,8 +73599,8 @@ paths: - type: 'null' - *4 dismissed_at: *118 - dismissed_reason: *510 - dismissed_comment: *511 + dismissed_reason: *508 + dismissed_comment: *509 rule: type: object properties: @@ -73635,8 +73662,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *513 - most_recent_instance: *514 + tool: *511 + most_recent_instance: *512 dismissal_approved_by: anyOf: - type: 'null' @@ -73732,7 +73759,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -73752,9 +73779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: true content: @@ -73769,8 +73796,8 @@ paths: enum: - open - dismissed - dismissed_reason: *510 - dismissed_comment: *511 + dismissed_reason: *508 + dismissed_comment: *509 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -73789,7 +73816,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *515 examples: default: value: @@ -73865,7 +73892,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &521 + '403': &519 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -73892,15 +73919,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 responses: '200': description: Response content: application/json: - schema: &518 + schema: &516 type: object properties: status: @@ -73927,13 +73954,13 @@ paths: - description - started_at examples: - default: &519 + default: &517 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &520 + '400': &518 description: Bad Request content: application/json: @@ -73944,7 +73971,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -73969,29 +73996,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 responses: '200': description: OK content: application/json: - schema: *518 + schema: *516 examples: - default: *519 + default: *517 '202': description: Accepted content: application/json: - schema: *518 + schema: *516 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *520 + '400': *518 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -74023,9 +74050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: false content: @@ -74071,8 +74098,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *520 - '403': *521 + '400': *518 + '403': *519 '404': *6 '422': description: Unprocessable Entity @@ -74096,13 +74123,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 - *19 - *17 - - *522 - - *523 + - *520 + - *521 responses: '200': description: Response @@ -74110,7 +74137,7 @@ paths: application/json: schema: type: array - items: *514 + items: *512 examples: default: value: @@ -74149,7 +74176,7 @@ paths: end_column: 50 classifications: - source - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74183,25 +74210,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *277 - *278 - *19 - *17 - - *523 + - *521 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *507 + schema: *505 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &526 + schema: &524 type: string description: An identifier for the upload. examples: @@ -74223,23 +74250,23 @@ paths: application/json: schema: type: array - items: &527 + items: &525 type: object properties: - ref: *507 - commit_sha: &535 + ref: *505 + commit_sha: &533 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *524 + analysis_key: *522 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *525 + category: *523 error: type: string examples: @@ -74264,8 +74291,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *526 - tool: *513 + sarif_id: *524 + tool: *511 deletable: type: boolean warning: @@ -74327,7 +74354,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74363,8 +74390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74377,7 +74404,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: response: summary: application/json response @@ -74431,7 +74458,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *515 + '403': *513 '404': *6 '422': description: Response if analysis could not be processed @@ -74518,8 +74545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74575,7 +74602,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *521 + '403': *519 '404': *6 '503': *163 x-github: @@ -74597,8 +74624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -74606,7 +74633,7 @@ paths: application/json: schema: type: array - items: &528 + items: &526 title: CodeQL Database description: A CodeQL database. type: object @@ -74718,7 +74745,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74747,8 +74774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: language in: path description: The language of the CodeQL database. @@ -74760,7 +74787,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *526 examples: default: value: @@ -74792,9 +74819,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &558 + '302': &556 description: Found - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74816,8 +74843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *430 - - *431 + - *428 + - *429 - name: language in: path description: The language of the CodeQL database. @@ -74827,7 +74854,7 @@ paths: responses: '204': description: Response - '403': *521 + '403': *519 '404': *6 '503': *163 x-github: @@ -74855,8 +74882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -74865,7 +74892,7 @@ paths: type: object additionalProperties: false properties: - language: &529 + language: &527 type: string description: The language targeted by the CodeQL query enum: @@ -74944,7 +74971,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &533 + schema: &531 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -74954,7 +74981,7 @@ paths: description: The ID of the variant analysis. controller_repo: *108 actor: *4 - query_language: *529 + query_language: *527 query_pack_url: type: string description: The download url for the query pack. @@ -75002,7 +75029,7 @@ paths: items: type: object properties: - repository: &530 + repository: &528 title: Repository Identifier description: Repository Identifier type: object @@ -75044,7 +75071,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &534 + analysis_status: &532 type: string description: The new status of the CodeQL variant analysis repository task. @@ -75076,7 +75103,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &531 + access_mismatch_repos: &529 type: object properties: repository_count: @@ -75091,7 +75118,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *530 + items: *528 required: - repository_count - repositories @@ -75114,8 +75141,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *531 - over_limit_repos: *531 + no_codeql_db_repos: *529 + over_limit_repos: *529 required: - access_mismatch_repos - not_found_repos @@ -75131,7 +75158,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &532 + value: &530 summary: Default response value: id: 1 @@ -75283,10 +75310,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *532 + value: *530 repository_lists: summary: Response for a successful variant analysis submission - value: *532 + value: *530 '404': *6 '422': description: Unable to process variant analysis submission @@ -75314,8 +75341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *430 - - *431 + - *428 + - *429 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -75327,9 +75354,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *531 examples: - default: *532 + default: *530 '404': *6 '503': *163 x-github: @@ -75352,7 +75379,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *430 + - *428 - name: repo in: path description: The name of the controller repository. @@ -75387,7 +75414,7 @@ paths: type: object properties: repository: *108 - analysis_status: *534 + analysis_status: *532 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -75512,8 +75539,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -75606,7 +75633,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -75627,8 +75654,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -75722,7 +75749,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *521 + '403': *519 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75793,8 +75820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -75802,7 +75829,7 @@ paths: schema: type: object properties: - commit_sha: *535 + commit_sha: *533 ref: type: string description: |- @@ -75862,7 +75889,7 @@ paths: schema: type: object properties: - id: *526 + id: *524 url: type: string description: The REST API URL for checking the status of the upload. @@ -75876,7 +75903,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *521 + '403': *519 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -75899,8 +75926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *430 - - *431 + - *428 + - *429 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -75948,7 +75975,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *515 + '403': *513 '404': description: Not Found if the sarif id does not match any upload '503': *163 @@ -75973,8 +76000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76055,8 +76082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -76184,8 +76211,8 @@ paths: parameters: - *17 - *19 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76201,7 +76228,7 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: default: value: @@ -76499,8 +76526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -76564,17 +76591,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '400': *14 '401': *23 '403': *27 @@ -76603,8 +76630,8 @@ paths: parameters: - *17 - *19 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76668,8 +76695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76706,9 +76733,9 @@ paths: type: integer machines: type: array - items: *537 + items: *535 examples: - default: &771 + default: &769 value: total_count: 2 machines: @@ -76748,8 +76775,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -76836,8 +76863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -76906,8 +76933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -76925,7 +76952,7 @@ paths: type: integer secrets: type: array - items: &541 + items: &539 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -76946,7 +76973,7 @@ paths: - created_at - updated_at examples: - default: *538 + default: *536 headers: Link: *41 x-github: @@ -76969,16 +76996,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *539 + schema: *537 examples: - default: *540 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -76998,17 +77025,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *541 + schema: *539 examples: - default: *542 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77028,8 +77055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -77082,8 +77109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -77112,8 +77139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *430 - - *431 + - *428 + - *429 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -77151,7 +77178,7 @@ paths: application/json: schema: type: array - items: &543 + items: &541 title: Collaborator description: Collaborator type: object @@ -77344,8 +77371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '204': @@ -77392,8 +77419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 requestBody: required: false @@ -77420,7 +77447,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &616 + schema: &614 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77648,8 +77675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '204': @@ -77681,8 +77708,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '200': @@ -77703,7 +77730,7 @@ paths: user: anyOf: - type: 'null' - - *543 + - *541 required: - permission - role_name @@ -77757,8 +77784,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -77768,7 +77795,7 @@ paths: application/json: schema: type: array - items: &544 + items: &542 title: Commit Comment description: Commit Comment type: object @@ -77826,7 +77853,7 @@ paths: - created_at - updated_at examples: - default: &547 + default: &545 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77885,17 +77912,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *544 + schema: *542 examples: - default: &548 + default: &546 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77952,8 +77979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -77976,7 +78003,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *542 examples: default: value: @@ -78027,8 +78054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -78050,8 +78077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -78078,9 +78105,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -78101,8 +78128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -78135,16 +78162,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -78166,10 +78193,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -78218,8 +78245,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *430 - - *431 + - *428 + - *429 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -78275,9 +78302,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: &662 + default: &660 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78371,9 +78398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *430 - - *431 - - &546 + - *428 + - *429 + - &544 name: commit_sha description: The SHA of the commit. in: path @@ -78445,9 +78472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 - *17 - *19 responses: @@ -78457,9 +78484,9 @@ paths: application/json: schema: type: array - items: *544 + items: *542 examples: - default: *547 + default: *545 headers: Link: *41 x-github: @@ -78487,9 +78514,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 requestBody: required: true content: @@ -78524,9 +78551,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *542 examples: - default: *548 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78554,9 +78581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 - *17 - *19 responses: @@ -78566,9 +78593,9 @@ paths: application/json: schema: type: array - items: *549 + items: *547 examples: - default: &654 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79105,11 +79132,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 - - &550 + - &548 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -79124,9 +79151,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: &642 + default: &640 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79239,11 +79266,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *430 - - *431 + - *428 + - *429 + - *548 + - *549 - *550 - - *551 - - *552 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -79277,9 +79304,9 @@ paths: type: integer check_runs: type: array - items: *500 + items: *498 examples: - default: *553 + default: *551 headers: Link: *41 x-github: @@ -79304,9 +79331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -79314,7 +79341,7 @@ paths: schema: type: integer example: 1 - - *551 + - *549 - *17 - *19 responses: @@ -79332,7 +79359,7 @@ paths: type: integer check_suites: type: array - items: *504 + items: *502 examples: default: value: @@ -79532,9 +79559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - *17 - *19 responses: @@ -79736,9 +79763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - *17 - *19 responses: @@ -79748,7 +79775,7 @@ paths: application/json: schema: type: array - items: &716 + items: &714 title: Status description: The status of a commit. type: object @@ -79829,7 +79856,7 @@ paths: site_admin: false headers: Link: *41 - '301': *444 + '301': *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79857,8 +79884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -79891,11 +79918,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *554 + - *552 code_of_conduct_file: anyOf: - type: 'null' - - &555 + - &553 title: Community Health File type: object properties: @@ -79915,19 +79942,19 @@ paths: contributing: anyOf: - type: 'null' - - *555 + - *553 readme: anyOf: - type: 'null' - - *555 + - *553 issue_template: anyOf: - type: 'null' - - *555 + - *553 pull_request_template: anyOf: - type: 'null' - - *555 + - *553 required: - code_of_conduct - code_of_conduct_file @@ -80056,8 +80083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 - name: basehead @@ -80105,8 +80132,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *545 - merge_base_commit: *545 + base_commit: *543 + merge_base_commit: *543 status: type: string enum: @@ -80130,10 +80157,10 @@ paths: - 6 commits: type: array - items: *545 + items: *543 files: type: array - items: *556 + items: *554 required: - url - html_url @@ -80419,8 +80446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -80573,7 +80600,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &557 + response-if-content-is-a-file: &555 summary: Response if content is a file value: type: file @@ -80710,7 +80737,7 @@ paths: - size - type - url - - &667 + - &665 title: Content File description: Content File type: object @@ -80928,7 +80955,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *557 + response-if-content-is-a-file: *555 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -80997,7 +81024,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *558 + '302': *556 '304': *35 x-github: githubCloudOnly: false @@ -81020,8 +81047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -81116,7 +81143,7 @@ paths: description: Response content: application/json: - schema: &559 + schema: &557 title: File Commit description: File Commit type: object @@ -81272,7 +81299,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: example-for-creating-a-file: value: @@ -81326,7 +81353,7 @@ paths: schema: oneOf: - *3 - - &598 + - &596 description: Repository rule violation was detected type: object properties: @@ -81347,7 +81374,7 @@ paths: items: type: object properties: - placeholder_id: &708 + placeholder_id: &706 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -81379,8 +81406,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -81441,7 +81468,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: default: value: @@ -81496,8 +81523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *430 - - *431 + - *428 + - *429 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81621,8 +81648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *294 - *295 - *296 @@ -81634,18 +81661,10 @@ paths: schema: type: string - *298 - - *560 + - *558 - *299 - *300 - *99 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -81656,8 +81675,6 @@ paths: default: 30 - *97 - *98 - - *301 - - *302 responses: '200': description: Response @@ -81665,7 +81682,7 @@ paths: application/json: schema: type: array - items: &563 + items: &561 type: object description: A Dependabot alert. properties: @@ -81715,7 +81732,7 @@ paths: - direct - transitive - - security_advisory: *561 + security_advisory: *559 security_vulnerability: *113 url: *114 html_url: *115 @@ -81746,7 +81763,7 @@ paths: dismissal. maxLength: 280 fixed_at: *119 - auto_dismissed_at: *562 + auto_dismissed_at: *560 required: - number - state @@ -81976,9 +81993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *430 - - *431 - - &564 + - *428 + - *429 + - &562 name: alert_number in: path description: |- @@ -81993,7 +82010,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *561 examples: default: value: @@ -82106,9 +82123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *430 - - *431 - - *564 + - *428 + - *429 + - *562 requestBody: required: true content: @@ -82153,7 +82170,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *561 examples: default: value: @@ -82282,8 +82299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -82301,7 +82318,7 @@ paths: type: integer secrets: type: array - items: &567 + items: &565 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82355,16 +82372,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *565 + schema: *563 examples: - default: *566 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82384,15 +82401,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *567 + schema: *565 examples: default: value: @@ -82418,8 +82435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -82472,8 +82489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -82496,8 +82513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *430 - - *431 + - *428 + - *429 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -82671,8 +82688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -82932,8 +82949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -83016,7 +83033,7 @@ paths: - version - url additionalProperties: false - metadata: &568 + metadata: &566 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83055,7 +83072,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *568 + metadata: *566 resolved: type: object description: A collection of resolved package dependencies. @@ -83069,7 +83086,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *568 + metadata: *566 relationship: type: string description: A notation of whether a dependency is requested @@ -83202,8 +83219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *430 - - *431 + - *428 + - *429 - name: sha description: The SHA recorded at creation time. in: query @@ -83244,9 +83261,9 @@ paths: application/json: schema: type: array - items: *569 + items: *567 examples: - default: *570 + default: *568 headers: Link: *41 x-github: @@ -83312,8 +83329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -83395,7 +83412,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *567 examples: simple-example: summary: Simple example @@ -83468,9 +83485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *430 - - *431 - - &571 + - *428 + - *429 + - &569 name: deployment_id description: deployment_id parameter in: path @@ -83482,7 +83499,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *567 examples: default: value: @@ -83547,9 +83564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 responses: '204': description: Response @@ -83571,9 +83588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 - *17 - *19 responses: @@ -83583,7 +83600,7 @@ paths: application/json: schema: type: array - items: &572 + items: &570 title: Deployment Status description: The status of a deployment. type: object @@ -83747,9 +83764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 requestBody: required: true content: @@ -83824,9 +83841,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *570 examples: - default: &573 + default: &571 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83882,9 +83899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 - name: status_id in: path required: true @@ -83895,9 +83912,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *570 examples: - default: *573 + default: *571 '404': *6 x-github: githubCloudOnly: false @@ -83924,12 +83941,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 + - *572 + - *573 - *574 - *575 - - *576 - - *577 - *17 - *19 responses: @@ -83939,9 +83956,9 @@ paths: application/json: schema: type: array - items: *578 + items: *576 examples: - default: *579 + default: *577 '404': *6 '403': *27 '500': *38 @@ -83965,8 +83982,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -83978,7 +83995,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -84034,8 +84051,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84094,12 +84111,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 - - *580 + - *578 - *17 - *19 responses: @@ -84109,9 +84126,9 @@ paths: application/json: schema: type: array - items: *581 + items: *579 examples: - default: *582 + default: *580 '404': *6 '403': *27 '500': *38 @@ -84136,8 +84153,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84149,7 +84166,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *581 + schema: *579 examples: default: value: @@ -84207,8 +84224,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84277,8 +84294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -84335,8 +84352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -84354,7 +84371,7 @@ paths: - 5 environments: type: array - items: &584 + items: &582 title: Environment description: Details of a deployment environment type: object @@ -84416,7 +84433,7 @@ paths: type: string examples: - wait_timer - wait_timer: &586 + wait_timer: &584 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -84458,7 +84475,7 @@ paths: items: type: object properties: - type: *583 + type: *581 reviewer: anyOf: - *4 @@ -84485,7 +84502,7 @@ paths: - id - node_id - type - deployment_branch_policy: &587 + deployment_branch_policy: &585 type: - object - 'null' @@ -84602,9 +84619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *430 - - *431 - - &585 + - *428 + - *429 + - &583 name: environment_name in: path required: true @@ -84617,9 +84634,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: &588 + default: &586 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84703,9 +84720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: false content: @@ -84715,7 +84732,7 @@ paths: - object - 'null' properties: - wait_timer: *586 + wait_timer: *584 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -84734,14 +84751,14 @@ paths: items: type: object properties: - type: *583 + type: *581 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *587 + deployment_branch_policy: *585 additionalProperties: false examples: default: @@ -84761,9 +84778,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84787,9 +84804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 responses: '204': description: Default response @@ -84814,9 +84831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *17 - *19 responses: @@ -84835,7 +84852,7 @@ paths: - 2 branch_policies: type: array - items: &589 + items: &587 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -84896,9 +84913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: true content: @@ -84946,9 +84963,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - example-wildcard: &590 + example-wildcard: &588 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -84990,10 +85007,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - &591 + - *428 + - *429 + - *583 + - &589 name: branch_policy_id in: path required: true @@ -85005,9 +85022,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - default: *590 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85026,10 +85043,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - *591 + - *428 + - *429 + - *583 + - *589 requestBody: required: true content: @@ -85058,9 +85075,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - default: *590 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85079,10 +85096,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - *591 + - *428 + - *429 + - *583 + - *589 responses: '204': description: Response @@ -85107,9 +85124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 responses: '200': description: List of deployment protection rules @@ -85126,7 +85143,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &592 + items: &590 title: Deployment protection rule description: Deployment protection rule type: object @@ -85148,7 +85165,7 @@ paths: for the environment. examples: - true - app: &593 + app: &591 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -85251,9 +85268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 requestBody: content: application/json: @@ -85274,9 +85291,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *592 + schema: *590 examples: - default: &594 + default: &592 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -85311,9 +85328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 - *19 - *17 responses: @@ -85333,7 +85350,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *593 + items: *591 examples: default: value: @@ -85368,10 +85385,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *430 - - *431 - - *585 - - &595 + - *428 + - *429 + - *583 + - &593 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -85383,9 +85400,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *590 examples: - default: *594 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85406,10 +85423,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *585 - - *431 - - *430 - - *595 + - *583 + - *429 + - *428 + - *593 responses: '204': description: Response @@ -85435,9 +85452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *17 - *19 responses: @@ -85455,9 +85472,9 @@ paths: type: integer secrets: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *41 x-github: @@ -85482,17 +85499,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 responses: '200': description: Response content: application/json: - schema: *469 + schema: *467 examples: - default: *470 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85514,18 +85531,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 responses: '200': description: Response content: application/json: - schema: *467 + schema: *465 examples: - default: *596 + default: *594 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85547,9 +85564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 requestBody: required: true @@ -85607,9 +85624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 responses: '204': @@ -85635,10 +85652,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *430 - - *431 - - *585 - - *454 + - *428 + - *429 + - *583 + - *452 - *19 responses: '200': @@ -85655,9 +85672,9 @@ paths: type: integer variables: type: array - items: *471 + items: *469 examples: - default: *472 + default: *470 headers: Link: *41 x-github: @@ -85680,9 +85697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: true content: @@ -85734,18 +85751,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *259 responses: '200': description: Response content: application/json: - schema: *471 + schema: *469 examples: - default: *597 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85766,10 +85783,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 - - *585 + - *583 requestBody: required: true content: @@ -85811,10 +85828,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 - - *585 + - *583 responses: '204': description: Response @@ -85836,8 +85853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -85905,8 +85922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *430 - - *431 + - *428 + - *429 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -86065,8 +86082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -86099,9 +86116,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 '400': *14 '422': *15 '403': *27 @@ -86122,8 +86139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86183,7 +86200,7 @@ paths: schema: oneOf: - *223 - - *598 + - *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86208,8 +86225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *430 - - *431 + - *428 + - *429 - name: file_sha in: path required: true @@ -86309,8 +86326,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86419,7 +86436,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &597 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86646,15 +86663,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 responses: '200': description: Response content: application/json: - schema: *599 + schema: *597 examples: default: value: @@ -86710,9 +86727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *430 - - *431 - - &600 + - *428 + - *429 + - &598 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -86729,7 +86746,7 @@ paths: application/json: schema: type: array - items: &601 + items: &599 title: Git Reference description: Git references within a repository type: object @@ -86805,17 +86822,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 responses: '200': description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: &602 + default: &600 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -86844,8 +86861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86874,9 +86891,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -86902,9 +86919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 requestBody: required: true content: @@ -86933,9 +86950,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 '422': *15 '409': *107 x-github: @@ -86953,9 +86970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 responses: '204': description: Response @@ -87010,8 +87027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -87078,7 +87095,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &602 title: Git Tag description: Metadata for a Git tag type: object @@ -87134,7 +87151,7 @@ paths: - sha - type - url - verification: *603 + verification: *601 required: - sha - url @@ -87144,7 +87161,7 @@ paths: - tag - message examples: - default: &605 + default: &603 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -87217,8 +87234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *430 - - *431 + - *428 + - *429 - name: tag_sha in: path required: true @@ -87229,9 +87246,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *602 examples: - default: *605 + default: *603 '404': *6 '409': *107 x-github: @@ -87255,8 +87272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -87330,7 +87347,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &604 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -87432,8 +87449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *430 - - *431 + - *428 + - *429 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -87456,7 +87473,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *604 examples: default-response: summary: Default response @@ -87515,8 +87532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -87526,7 +87543,7 @@ paths: application/json: schema: type: array - items: &607 + items: &605 title: Webhook description: Webhooks for repositories. type: object @@ -87589,7 +87606,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &849 + last_response: &847 title: Hook Response type: object properties: @@ -87666,8 +87683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -87720,9 +87737,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: &608 + default: &606 value: type: Repository id: 12345678 @@ -87770,17 +87787,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '200': description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: *608 + default: *606 '404': *6 x-github: githubCloudOnly: false @@ -87800,9 +87817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 requestBody: required: true content: @@ -87847,9 +87864,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: *608 + default: *606 '422': *15 '404': *6 x-github: @@ -87870,9 +87887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -87896,9 +87913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '200': description: Response @@ -87925,9 +87942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 requestBody: required: false content: @@ -87971,11 +87988,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *17 - - *309 + - *307 responses: '200': description: Response @@ -87983,9 +88000,9 @@ paths: application/json: schema: type: array - items: *310 + items: *308 examples: - default: *311 + default: *309 '400': *14 '422': *15 x-github: @@ -88004,18 +88021,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *16 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *313 + default: *311 '400': *14 '422': *15 x-github: @@ -88034,9 +88051,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *16 responses: '202': *37 @@ -88059,9 +88076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -88086,9 +88103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -88111,8 +88128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response if immutable releases are enabled @@ -88160,8 +88177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '409': *107 @@ -88181,8 +88198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '409': *107 @@ -88239,14 +88256,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &609 + schema: &607 title: Import description: A repository import from an external source. type: object @@ -88353,7 +88370,7 @@ paths: - html_url - authors_url examples: - default: &612 + default: &610 value: vcs: subversion use_lfs: true @@ -88369,7 +88386,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &610 + '503': &608 description: Unavailable due to service under maintenance. content: application/json: @@ -88398,8 +88415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -88447,7 +88464,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: default: value: @@ -88472,7 +88489,7 @@ paths: type: string '422': *15 '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88500,8 +88517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -88553,7 +88570,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: example-1: summary: Example 1 @@ -88601,7 +88618,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88624,12 +88641,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88655,9 +88672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *430 - - *431 - - &793 + - *428 + - *429 + - &791 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88671,7 +88688,7 @@ paths: application/json: schema: type: array - items: &611 + items: &609 title: Porter Author description: Porter Author type: object @@ -88725,7 +88742,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88750,8 +88767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *430 - - *431 + - *428 + - *429 - name: author_id in: path required: true @@ -88781,7 +88798,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *609 examples: default: value: @@ -88794,7 +88811,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88818,8 +88835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88860,7 +88877,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88888,8 +88905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -88916,11 +88933,11 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: - default: *612 + default: *610 '422': *15 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88943,8 +88960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88952,8 +88969,8 @@ paths: application/json: schema: *20 examples: - default: *613 - '301': *444 + default: *611 + '301': *442 '404': *6 x-github: githubCloudOnly: false @@ -88973,8 +88990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88982,12 +88999,12 @@ paths: application/json: schema: anyOf: - - *326 + - *324 - type: object properties: {} additionalProperties: false examples: - default: &615 + default: &613 value: limit: collaborators_only origin: repository @@ -89012,13 +89029,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: application/json: - schema: *614 + schema: *612 examples: default: summary: Example request body @@ -89030,9 +89047,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: - default: *615 + default: *613 '409': description: Response x-github: @@ -89054,8 +89071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -89078,8 +89095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -89089,9 +89106,9 @@ paths: application/json: schema: type: array - items: *616 + items: *614 examples: - default: &786 + default: &784 value: - id: 1 repository: @@ -89222,9 +89239,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *430 - - *431 - - *330 + - *428 + - *429 + - *328 requestBody: required: false content: @@ -89253,7 +89270,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *614 examples: default: value: @@ -89384,9 +89401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *430 - - *431 - - *330 + - *428 + - *429 + - *328 responses: '204': description: Response @@ -89417,8 +89434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *430 - - *431 + - *428 + - *429 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -89466,7 +89483,7 @@ paths: required: false schema: type: string - - *334 + - *332 - name: sort description: What to sort results by. in: query @@ -89491,7 +89508,7 @@ paths: type: array items: *183 examples: - default: &623 + default: &621 value: - id: 1 node_id: MDU6SXNzdWUx @@ -89639,7 +89656,7 @@ paths: state_reason: completed headers: Link: *41 - '301': *444 + '301': *442 '422': *15 '404': *6 x-github: @@ -89668,8 +89685,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -89761,7 +89778,7 @@ paths: application/json: schema: *183 examples: - default: &620 + default: &618 value: id: 1 node_id: MDU6SXNzdWUx @@ -89917,7 +89934,7 @@ paths: '422': *15 '503': *163 '404': *6 - '410': *441 + '410': *439 x-github: triggersNotification: true githubCloudOnly: false @@ -89945,8 +89962,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *206 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -89967,9 +89984,9 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: - default: &622 + default: &620 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90027,17 +90044,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: &618 + default: &616 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90091,8 +90108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -90115,9 +90132,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: *618 + default: *616 '422': *15 x-github: githubCloudOnly: false @@ -90135,8 +90152,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -90157,8 +90174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -90185,9 +90202,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -90208,8 +90225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -90242,16 +90259,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -90273,10 +90290,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -90296,8 +90313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -90307,7 +90324,7 @@ paths: application/json: schema: type: array - items: &619 + items: &617 title: Issue Event description: Issue Event type: object @@ -90646,8 +90663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *430 - - *431 + - *428 + - *429 - name: event_id in: path required: true @@ -90658,7 +90675,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *617 examples: default: value: @@ -90851,7 +90868,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *441 + '410': *439 '403': *27 x-github: githubCloudOnly: false @@ -90885,9 +90902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *430 - - *431 - - &621 + - *428 + - *429 + - &619 name: issue_number description: The number that identifies the issue. in: path @@ -90901,10 +90918,10 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '404': *6 - '410': *441 + '410': *439 '304': *35 x-github: githubCloudOnly: false @@ -90929,9 +90946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -91052,13 +91069,13 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 '422': *15 '503': *163 '403': *27 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91076,9 +91093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -91106,7 +91123,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91122,9 +91139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: content: application/json: @@ -91151,7 +91168,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91173,9 +91190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: assignee in: path required: true @@ -91215,9 +91232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *189 - *17 - *19 @@ -91228,13 +91245,13 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: - default: *622 + default: *620 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91263,9 +91280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -91287,16 +91304,16 @@ paths: description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: *618 + default: *616 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -91324,9 +91341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91338,12 +91355,12 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91371,9 +91388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -91397,15 +91414,15 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *444 + '301': *442 '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -91436,9 +91453,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -91452,13 +91469,13 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 x-github: triggersNotification: true githubCloudOnly: false @@ -91484,9 +91501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91498,12 +91515,12 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91520,9 +91537,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91536,7 +91553,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &625 + - &623 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -91585,7 +91602,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &626 + - &624 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -91713,7 +91730,7 @@ paths: - performed_via_github_app - assignee - assigner - - &627 + - &625 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91759,7 +91776,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &628 + - &626 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91805,7 +91822,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &629 + - &627 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91854,7 +91871,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &630 + - &628 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91896,7 +91913,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &631 + - &629 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91938,7 +91955,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &632 + - &630 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91994,7 +92011,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &633 + - &631 title: Locked Issue Event description: Locked Issue Event type: object @@ -92039,7 +92056,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &634 + - &632 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -92100,7 +92117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &635 + - &633 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92161,7 +92178,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &636 + - &634 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -92222,7 +92239,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &637 + - &635 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -92315,7 +92332,7 @@ paths: color: red headers: Link: *41 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92332,9 +92349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -92346,7 +92363,7 @@ paths: type: array items: *182 examples: - default: &624 + default: &622 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92364,9 +92381,9 @@ paths: default: false headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92383,9 +92400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92446,10 +92463,10 @@ paths: type: array items: *182 examples: - default: *624 - '301': *444 + default: *622 + '301': *442 '404': *6 - '410': *441 + '410': *439 '422': *15 x-github: githubCloudOnly: false @@ -92466,9 +92483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92530,10 +92547,10 @@ paths: type: array items: *182 examples: - default: *624 - '301': *444 + default: *622 + '301': *442 '404': *6 - '410': *441 + '410': *439 '422': *15 x-github: githubCloudOnly: false @@ -92550,15 +92567,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '204': description: Response - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92577,9 +92594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: name in: path required: true @@ -92603,9 +92620,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92625,9 +92642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92656,7 +92673,7 @@ paths: '204': description: Response '403': *27 - '410': *441 + '410': *439 '404': *6 '422': *15 x-github: @@ -92674,9 +92691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '204': description: Response @@ -92706,9 +92723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '200': description: Response @@ -92716,10 +92733,10 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92736,9 +92753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - 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. @@ -92764,13 +92781,13 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92788,9 +92805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -92822,16 +92839,16 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -92853,10 +92870,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *430 - - *431 - - *621 - - *422 + - *428 + - *429 + - *619 + - *420 responses: '204': description: Response @@ -92885,9 +92902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -92911,7 +92928,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -92944,9 +92961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -92958,11 +92975,11 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92990,9 +93007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -93021,14 +93038,14 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -93048,9 +93065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -93083,7 +93100,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 '403': *27 '404': *6 '422': *7 @@ -93105,9 +93122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -93122,6 +93139,8 @@ paths: description: Timeline Event type: object anyOf: + - *623 + - *624 - *625 - *626 - *627 @@ -93133,8 +93152,6 @@ paths: - *633 - *634 - *635 - - *636 - - *637 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93463,7 +93480,7 @@ paths: type: string comments: type: array - items: &656 + items: &654 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93701,7 +93718,7 @@ paths: type: string comments: type: array - items: *544 + items: *542 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -93976,7 +93993,7 @@ paths: headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93993,8 +94010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -94004,7 +94021,7 @@ paths: application/json: schema: type: array - items: &638 + items: &636 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94072,8 +94089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94109,9 +94126,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *636 examples: - default: &639 + default: &637 value: id: 1 key: ssh-rsa AAA... @@ -94145,9 +94162,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *430 - - *431 - - &640 + - *428 + - *429 + - &638 name: key_id description: The unique identifier of the key. in: path @@ -94159,9 +94176,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *636 examples: - default: *639 + default: *637 '404': *6 x-github: githubCloudOnly: false @@ -94179,9 +94196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *430 - - *431 - - *640 + - *428 + - *429 + - *638 responses: '204': description: Response @@ -94201,8 +94218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -94214,7 +94231,7 @@ paths: type: array items: *182 examples: - default: *624 + default: *622 headers: Link: *41 '404': *6 @@ -94235,8 +94252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94274,7 +94291,7 @@ paths: application/json: schema: *182 examples: - default: &641 + default: &639 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94306,8 +94323,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94320,7 +94337,7 @@ paths: application/json: schema: *182 examples: - default: *641 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -94337,8 +94354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94403,8 +94420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94430,8 +94447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -94467,8 +94484,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '202': *37 '403': @@ -94496,8 +94513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -94523,9 +94540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *430 - - *431 - - *522 + - *428 + - *429 + - *520 responses: '200': description: Response @@ -94672,8 +94689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94738,8 +94755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94773,9 +94790,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *545 + schema: *543 examples: - default: *642 + default: *640 '204': description: Response when already merged '404': @@ -94800,8 +94817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94842,7 +94859,7 @@ paths: application/json: schema: type: array - items: *368 + items: *366 examples: default: value: @@ -94898,8 +94915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94939,9 +94956,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: &643 + default: &641 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -95000,9 +95017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *430 - - *431 - - &644 + - *428 + - *429 + - &642 name: milestone_number description: The number that identifies the milestone. in: path @@ -95014,9 +95031,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: *643 + default: *641 '404': *6 x-github: githubCloudOnly: false @@ -95033,9 +95050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 requestBody: required: false content: @@ -95073,9 +95090,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: *643 + default: *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95091,9 +95108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 responses: '204': description: Response @@ -95114,9 +95131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 - *17 - *19 responses: @@ -95128,7 +95145,7 @@ paths: type: array items: *182 examples: - default: *624 + default: *622 headers: Link: *41 x-github: @@ -95147,12 +95164,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *430 - - *431 - - *645 - - *646 + - *428 + - *429 + - *643 + - *644 - *189 - - *647 + - *645 - *17 - *19 responses: @@ -95164,7 +95181,7 @@ paths: type: array items: *209 examples: - default: *648 + default: *646 headers: Link: *41 x-github: @@ -95188,8 +95205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -95247,14 +95264,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &649 + schema: &647 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95398,7 +95415,7 @@ paths: - custom_404 - public examples: - default: &650 + default: &648 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95439,8 +95456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -95495,9 +95512,9 @@ paths: description: Response content: application/json: - schema: *649 + schema: *647 examples: - default: *650 + default: *648 '422': *15 '409': *107 x-github: @@ -95520,8 +95537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -95629,8 +95646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -95656,8 +95673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -95667,7 +95684,7 @@ paths: application/json: schema: type: array - items: &651 + items: &649 title: Page Build description: Page Build type: object @@ -95759,8 +95776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -95807,16 +95824,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *651 + schema: *649 examples: - default: &652 + default: &650 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95864,8 +95881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *430 - - *431 + - *428 + - *429 - name: build_id in: path required: true @@ -95876,9 +95893,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *649 examples: - default: *652 + default: *650 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95898,8 +95915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96007,9 +96024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *430 - - *431 - - &653 + - *428 + - *429 + - &651 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96067,9 +96084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *430 - - *431 - - *653 + - *428 + - *429 + - *651 responses: '204': *129 '404': *6 @@ -96096,8 +96113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -96392,8 +96409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Private vulnerability reporting status @@ -96430,8 +96447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '422': *14 @@ -96452,8 +96469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '422': *14 @@ -96476,8 +96493,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: Indicates the state of the projects to return. in: query @@ -96498,7 +96515,7 @@ paths: application/json: schema: type: array - items: *362 + items: *360 examples: default: value: @@ -96538,7 +96555,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -96561,8 +96578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96588,13 +96605,13 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *440 + default: *438 '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -96617,8 +96634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -96626,7 +96643,7 @@ paths: application/json: schema: type: array - items: *376 + items: *374 examples: default: value: @@ -96657,8 +96674,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96670,7 +96687,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *376 + items: *374 required: - properties examples: @@ -96720,8 +96737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96781,9 +96798,9 @@ paths: application/json: schema: type: array - items: *549 + items: *547 examples: - default: *654 + default: *652 headers: Link: *41 '304': *35 @@ -96815,8 +96832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96883,7 +96900,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &656 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -97012,7 +97029,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 active_lock_reason: type: - string @@ -97067,7 +97084,7 @@ paths: type: - array - 'null' - items: *344 + items: *342 head: type: object properties: @@ -97105,14 +97122,14 @@ paths: _links: type: object properties: - comments: *369 - commits: *369 - statuses: *369 - html: *369 - issue: *369 - review_comments: *369 - review_comment: *369 - self: *369 + comments: *367 + commits: *367 + statuses: *367 + html: *367 + issue: *367 + review_comments: *367 + review_comment: *367 + self: *367 required: - comments - commits @@ -97123,7 +97140,7 @@ paths: - review_comment - self author_association: *184 - auto_merge: *655 + auto_merge: *653 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -97225,7 +97242,7 @@ paths: - merged_by - review_comments examples: - default: &659 + default: &657 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97752,8 +97769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: sort in: query required: false @@ -97782,9 +97799,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: &661 + default: &659 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97861,17 +97878,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *656 + schema: *654 examples: - default: &657 + default: &655 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97946,8 +97963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -97970,9 +97987,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: - default: *657 + default: *655 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97988,8 +98005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -98011,8 +98028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -98039,9 +98056,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -98062,8 +98079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -98096,16 +98113,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -98127,10 +98144,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -98173,9 +98190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *430 - - *431 - - &660 + - *428 + - *429 + - &658 name: pull_number description: The number that identifies the pull request. in: path @@ -98188,9 +98205,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '304': *35 '404': *6 '406': @@ -98225,9 +98242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -98269,9 +98286,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '422': *15 '403': *27 x-github: @@ -98293,9 +98310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -98356,17 +98373,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -98396,9 +98413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *206 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98419,9 +98436,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *661 + default: *659 headers: Link: *41 x-github: @@ -98454,9 +98471,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -98562,7 +98579,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: example-for-a-multi-line-comment: value: @@ -98650,9 +98667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *198 requestBody: required: true @@ -98675,7 +98692,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: default: value: @@ -98761,9 +98778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -98773,9 +98790,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: *662 + default: *660 headers: Link: *41 x-github: @@ -98805,9 +98822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -98817,7 +98834,7 @@ paths: application/json: schema: type: array - items: *556 + items: *554 examples: default: value: @@ -98855,9 +98872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 responses: '204': description: Response if pull request has been merged @@ -98880,9 +98897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -98994,9 +99011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 responses: '200': description: Response @@ -99071,9 +99088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -99110,7 +99127,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: default: value: @@ -99646,9 +99663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -99682,7 +99699,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: default: value: @@ -100187,9 +100204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -100199,7 +100216,7 @@ paths: application/json: schema: type: array - items: &663 + items: &661 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100355,9 +100372,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -100447,9 +100464,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: &665 + default: &663 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100512,10 +100529,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - &664 + - *428 + - *429 + - *658 + - &662 name: review_id description: The unique identifier of the review. in: path @@ -100527,9 +100544,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: &666 + default: &664 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100588,10 +100605,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -100614,7 +100631,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: default: value: @@ -100676,18 +100693,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 responses: '200': description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *665 + default: *663 '422': *7 '404': *6 x-github: @@ -100714,10 +100731,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 - *17 - *19 responses: @@ -100815,9 +100832,9 @@ paths: _links: type: object properties: - self: *369 - html: *369 - pull_request: *369 + self: *367 + html: *367 + pull_request: *367 required: - self - html @@ -100975,10 +100992,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -101007,7 +101024,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: default: value: @@ -101070,10 +101087,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -101108,9 +101125,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *666 + default: *664 '404': *6 '422': *7 '403': *27 @@ -101132,9 +101149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -101198,8 +101215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -101212,9 +101229,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *665 examples: - default: &668 + default: &666 value: type: file encoding: base64 @@ -101256,8 +101273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *430 - - *431 + - *428 + - *429 - name: dir description: The alternate path to look for a README file in: path @@ -101277,9 +101294,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *665 examples: - default: *668 + default: *666 '404': *6 '422': *15 x-github: @@ -101301,8 +101318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -101312,7 +101329,7 @@ paths: application/json: schema: type: array - items: *669 + items: *667 examples: default: value: @@ -101406,8 +101423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -101483,9 +101500,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: &673 + default: &671 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -101590,9 +101607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *430 - - *431 - - &671 + - *428 + - *429 + - &669 name: asset_id description: The unique identifier of the asset. in: path @@ -101604,9 +101621,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *668 examples: - default: &672 + default: &670 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 @@ -101641,7 +101658,7 @@ paths: type: User site_admin: false '404': *6 - '302': *558 + '302': *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101657,9 +101674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *430 - - *431 - - *671 + - *428 + - *429 + - *669 requestBody: required: false content: @@ -101688,9 +101705,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *668 examples: - default: *672 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101706,9 +101723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *430 - - *431 - - *671 + - *428 + - *429 + - *669 responses: '204': description: Response @@ -101732,8 +101749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -101819,16 +101836,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101845,8 +101862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *430 - - *431 + - *428 + - *429 - name: tag description: tag parameter in: path @@ -101859,9 +101876,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 '404': *6 x-github: githubCloudOnly: false @@ -101883,9 +101900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *430 - - *431 - - &674 + - *428 + - *429 + - &672 name: release_id description: The unique identifier of the release. in: path @@ -101899,9 +101916,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: *669 + schema: *667 examples: - default: *673 + default: *671 '401': description: Unauthorized x-github: @@ -101919,9 +101936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 requestBody: required: false content: @@ -101985,9 +102002,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 '404': description: Not Found if the discussion category name is invalid content: @@ -102008,9 +102025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 responses: '204': description: Response @@ -102030,9 +102047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - *17 - *19 responses: @@ -102042,7 +102059,7 @@ paths: application/json: schema: type: array - items: *670 + items: *668 examples: default: value: @@ -102124,9 +102141,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - name: name in: query required: true @@ -102152,7 +102169,7 @@ paths: description: Response for successful upload content: application/json: - schema: *670 + schema: *668 examples: response-for-successful-upload: value: @@ -102207,9 +102224,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - 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. @@ -102233,9 +102250,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -102256,9 +102273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 requestBody: required: true content: @@ -102288,16 +102305,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -102319,10 +102336,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *430 - - *431 - - *674 - - *422 + - *428 + - *429 + - *672 + - *420 responses: '204': description: Response @@ -102346,9 +102363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 - *17 - *19 responses: @@ -102365,7 +102382,7 @@ paths: oneOf: - allOf: - *138 - - &675 + - &673 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102386,67 +102403,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *139 - - *675 + - *673 - allOf: - *140 - - *675 + - *673 - allOf: - *141 - - *675 + - *673 - allOf: - - *676 - - *675 + - *674 + - *673 - allOf: - *142 - - *675 + - *673 - allOf: - *143 - - *675 + - *673 - allOf: - *144 - - *675 + - *673 - allOf: - *145 - - *675 + - *673 - allOf: - *146 - - *675 + - *673 - allOf: - *147 - - *675 + - *673 - allOf: - *148 - - *675 + - *673 - allOf: - *149 - - *675 + - *673 - allOf: - *150 - - *675 + - *673 - allOf: - *151 - - *675 + - *673 - allOf: - *152 - - *675 + - *673 - allOf: - *153 - - *675 + - *673 - allOf: - *154 - - *675 + - *673 - allOf: - *155 - - *675 + - *673 - allOf: - *156 - - *675 + - *673 - allOf: - *157 - - *675 + - *673 - allOf: - - *677 - *675 + - *673 examples: default: value: @@ -102485,8 +102502,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - name: includes_parents @@ -102497,7 +102514,7 @@ paths: schema: type: boolean default: true - - *678 + - *676 responses: '200': description: Response @@ -102552,8 +102569,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 requestBody: description: Request body required: true @@ -102582,7 +102599,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *679 + items: *677 required: - name - enforcement @@ -102615,7 +102632,7 @@ paths: application/json: schema: *158 examples: - default: &688 + default: &686 value: id: 42 name: super cool ruleset @@ -102662,12 +102679,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *430 - - *431 - - *680 + - *428 + - *429 + - *678 - *94 - - *681 - - *682 + - *679 + - *680 - *17 - *19 responses: @@ -102675,9 +102692,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: *684 + default: *682 '404': *6 '500': *38 x-github: @@ -102698,17 +102715,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *430 - - *431 - - *685 + - *428 + - *429 + - *683 responses: '200': description: Response content: application/json: - schema: *686 + schema: *684 examples: - default: *687 + default: *685 '404': *6 '500': *38 x-github: @@ -102736,8 +102753,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102759,7 +102776,7 @@ paths: application/json: schema: *158 examples: - default: *688 + default: *686 '404': *6 '500': *38 put: @@ -102777,8 +102794,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102812,7 +102829,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *679 + items: *677 examples: default: value: @@ -102842,7 +102859,7 @@ paths: application/json: schema: *158 examples: - default: *688 + default: *686 '404': *6 '500': *38 delete: @@ -102860,8 +102877,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102884,8 +102901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - name: ruleset_id @@ -102903,7 +102920,7 @@ paths: type: array items: *162 examples: - default: *383 + default: *381 '404': *6 '500': *38 x-github: @@ -102922,8 +102939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102941,7 +102958,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *382 examples: default: value: @@ -102996,21 +103013,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 + - *383 + - *384 - *385 - *386 - - *387 - - *388 - *99 - *19 - *17 - - *689 - - *690 + - *687 + - *688 + - *387 + - *388 - *389 - *390 - - *391 - - *392 responses: '200': description: Response @@ -103018,7 +103035,7 @@ paths: application/json: schema: type: array - items: &694 + items: &692 type: object properties: number: *109 @@ -103034,8 +103051,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *691 - resolution: *692 + state: *689 + resolution: *690 resolved_at: type: - string @@ -103129,7 +103146,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *693 + - *691 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -103274,16 +103291,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 - - *392 + - *428 + - *429 + - *514 + - *390 responses: '200': description: Response content: application/json: - schema: *694 + schema: *692 examples: default: value: @@ -103335,9 +103352,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: true content: @@ -103345,8 +103362,8 @@ paths: schema: type: object properties: - state: *691 - resolution: *692 + state: *689 + resolution: *690 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103365,7 +103382,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *692 examples: default: value: @@ -103440,9 +103457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 - *19 - *17 responses: @@ -103453,7 +103470,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &869 + items: &867 type: object properties: type: @@ -103480,6 +103497,8 @@ paths: - commit details: oneOf: + - *693 + - *694 - *695 - *696 - *697 @@ -103491,8 +103510,6 @@ paths: - *703 - *704 - *705 - - *706 - - *707 examples: default: value: @@ -103578,8 +103595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -103587,14 +103604,14 @@ paths: schema: type: object properties: - reason: &709 + reason: &707 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *708 + placeholder_id: *706 required: - reason - placeholder_id @@ -103611,7 +103628,7 @@ paths: schema: type: object properties: - reason: *709 + reason: *707 expire_at: type: - string @@ -103655,8 +103672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -103671,7 +103688,7 @@ paths: properties: incremental_scans: type: array - items: &710 + items: &708 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103699,15 +103716,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *710 + items: *708 backfill_scans: type: array - items: *710 + items: *708 custom_pattern_backfill_scans: type: array items: allOf: - - *710 + - *708 - type: object properties: pattern_name: @@ -103777,8 +103794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *430 - - *431 + - *428 + - *429 - *99 - name: sort description: The property to sort the results by. @@ -103822,9 +103839,9 @@ paths: application/json: schema: type: array - items: *711 + items: *709 examples: - default: *712 + default: *710 '400': *14 '404': *6 x-github: @@ -103847,8 +103864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -103928,7 +103945,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 required: - login - type @@ -104018,9 +104035,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: &714 + default: &712 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104253,8 +104270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -104367,7 +104384,7 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: default: value: @@ -104514,17 +104531,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '200': description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: *714 + default: *712 '403': *27 '404': *6 x-github: @@ -104548,9 +104565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 requestBody: required: true content: @@ -104630,7 +104647,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 required: - login - type @@ -104721,10 +104738,10 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: *714 - add_credit: *714 + default: *712 + add_credit: *712 '403': *27 '404': *6 '422': @@ -104762,9 +104779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '202': *37 '400': *14 @@ -104791,17 +104808,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '202': description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 '400': *14 '422': *15 '403': *27 @@ -104827,8 +104844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -104924,8 +104941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -104934,7 +104951,7 @@ paths: application/json: schema: type: array - items: &715 + items: &713 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104967,8 +104984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105046,8 +105063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105141,8 +105158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -105296,8 +105313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -105307,7 +105324,7 @@ paths: application/json: schema: type: array - items: *715 + items: *713 examples: default: value: @@ -105340,8 +105357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *430 - - *431 + - *428 + - *429 - name: sha in: path required: true @@ -105397,7 +105414,7 @@ paths: description: Response content: application/json: - schema: *716 + schema: *714 examples: default: value: @@ -105451,8 +105468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105484,14 +105501,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &717 + schema: &715 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -105564,8 +105581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -105591,7 +105608,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *715 examples: default: value: @@ -105618,8 +105635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -105639,8 +105656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105722,8 +105739,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105731,7 +105748,7 @@ paths: application/json: schema: type: array - items: &718 + items: &716 title: Tag protection description: Tag protection type: object @@ -105788,8 +105805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -105812,7 +105829,7 @@ paths: description: Response content: application/json: - schema: *718 + schema: *716 examples: default: value: @@ -105843,8 +105860,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -105881,8 +105898,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *430 - - *431 + - *428 + - *429 - name: ref in: path required: true @@ -105918,8 +105935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105931,7 +105948,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 headers: Link: *41 '404': *6 @@ -105951,8 +105968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 responses: @@ -105960,7 +105977,7 @@ paths: description: Response content: application/json: - schema: &719 + schema: &717 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -105972,7 +105989,7 @@ paths: required: - names examples: - default: &720 + default: &718 value: names: - octocat @@ -105995,8 +106012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -106027,9 +106044,9 @@ paths: description: Response content: application/json: - schema: *719 + schema: *717 examples: - default: *720 + default: *718 '404': *6 '422': *7 x-github: @@ -106050,9 +106067,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *430 - - *431 - - &721 + - *428 + - *429 + - &719 name: per description: The time frame to display results for. in: query @@ -106083,7 +106100,7 @@ paths: - 128 clones: type: array - items: &722 + items: &720 title: Traffic type: object properties: @@ -106170,8 +106187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -106265,8 +106282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -106329,9 +106346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *430 - - *431 - - *721 + - *428 + - *429 + - *719 responses: '200': description: Response @@ -106352,7 +106369,7 @@ paths: - 3782 views: type: array - items: *722 + items: *720 required: - uniques - count @@ -106429,8 +106446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -106704,8 +106721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -106728,8 +106745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -106751,8 +106768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -106778,8 +106795,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *430 - - *431 + - *428 + - *429 - name: ref in: path required: true @@ -106871,9 +106888,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107024,7 +107041,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &730 + - &728 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -107034,7 +107051,7 @@ paths: type: string examples: - members - - &735 + - &733 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -107046,7 +107063,7 @@ paths: format: int32 examples: - 1 - - &736 + - &734 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -107090,7 +107107,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &725 + items: &723 allOf: - type: object required: @@ -107172,7 +107189,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: &737 + meta: &735 type: object description: The metadata associated with the creation/updates to the user. @@ -107237,30 +107254,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &726 + '400': &724 description: Bad request content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '401': *724 - '403': &727 + schema: *721 + '401': *722 + '403': &725 description: Permission denied - '429': &728 + '429': &726 description: Too many requests content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '500': &729 + schema: *721 + '500': &727 description: Internal server error content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 + schema: *721 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107284,7 +107301,7 @@ paths: required: true content: application/json: - schema: &733 + schema: &731 type: object required: - schemas @@ -107348,9 +107365,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *725 + schema: *723 examples: - group: &731 + group: &729 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -107369,13 +107386,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': *726 - '401': *724 - '403': *727 - '409': &734 + '400': *724 + '401': *722 + '403': *725 + '409': &732 description: Duplicate record detected - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107392,7 +107409,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: - - &732 + - &730 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -107401,22 +107418,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *730 + - *728 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *725 + schema: *723 examples: - default: *731 - '400': *726 - '401': *724 - '403': *727 + default: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107435,13 +107452,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: - - *732 + - *730 - *39 requestBody: required: true content: application/json: - schema: *733 + schema: *731 examples: group: summary: Group @@ -107467,17 +107484,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *725 + schema: *723 examples: - group: *731 - groupWithMembers: *731 - '400': *726 - '401': *724 - '403': *727 + group: *729 + groupWithMembers: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107501,13 +107518,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: - - *732 + - *730 - *39 requestBody: required: true content: application/json: - schema: &744 + schema: &742 type: object required: - Operations @@ -107567,17 +107584,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *725 + schema: *723 examples: - updateGroup: *731 - addMembers: *731 - '400': *726 - '401': *724 - '403': *727 + updateGroup: *729 + addMembers: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107593,17 +107610,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: - - *732 + - *730 - *39 responses: '204': description: Group was deleted, no content - '400': *726 - '401': *724 - '403': *727 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107637,8 +107654,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *735 - - *736 + - *733 + - *734 - *39 responses: '200': @@ -107672,7 +107689,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &739 + items: &737 allOf: - type: object required: @@ -107764,7 +107781,7 @@ paths: address. examples: - true - roles: &738 + roles: &736 type: array description: The roles assigned to the user. items: @@ -107823,7 +107840,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *737 + meta: *735 startIndex: type: integer description: A starting index for the returned page @@ -107862,11 +107879,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *726 - '401': *724 - '403': *727 - '429': *728 - '500': *729 + '400': *724 + '401': *722 + '403': *725 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107890,7 +107907,7 @@ paths: required: true content: application/json: - schema: &742 + schema: &740 type: object required: - schemas @@ -107983,9 +108000,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *738 + roles: *736 examples: - user: &743 + user: &741 summary: User value: schemas: @@ -108032,9 +108049,9 @@ paths: description: User has been created content: application/scim+json: - schema: *739 + schema: *737 examples: - user: &740 + user: &738 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108060,13 +108077,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: *740 - '400': *726 - '401': *724 - '403': *727 - '409': *734 - '429': *728 - '500': *729 + enterpriseOwner: *738 + '400': *724 + '401': *722 + '403': *725 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108083,7 +108100,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: - - &741 + - &739 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -108096,15 +108113,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *739 + schema: *737 examples: - default: *740 - '400': *726 - '401': *724 - '403': *727 + default: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108126,30 +108143,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: - - *741 + - *739 - *39 requestBody: required: true content: application/json: - schema: *742 + schema: *740 examples: - user: *743 + user: *741 responses: '200': description: User was updated content: application/scim+json: - schema: *739 + schema: *737 examples: - user: *740 - '400': *726 - '401': *724 - '403': *727 + user: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108184,13 +108201,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: - - *741 + - *739 - *39 requestBody: required: true content: application/json: - schema: *744 + schema: *742 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -108230,18 +108247,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *739 + schema: *737 examples: - userMultiValuedProperties: *740 - userSingleValuedProperties: *740 - disableUser: *740 - '400': *726 - '401': *724 - '403': *727 + userMultiValuedProperties: *738 + userSingleValuedProperties: *738 + disableUser: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108261,17 +108278,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: - - *741 + - *739 - *39 responses: '204': description: User was deleted, no content - '400': *726 - '401': *724 - '403': *727 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108362,7 +108379,7 @@ paths: - 1 Resources: type: array - items: &745 + items: &743 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -108609,22 +108626,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &746 + '404': &744 description: Resource not found content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '403': &747 + schema: *721 + '403': &745 description: Forbidden content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '400': *726 - '429': *728 + schema: *721 + '400': *724 + '429': *726 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -108650,9 +108667,9 @@ paths: description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: &748 + default: &746 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108675,17 +108692,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *746 - '403': *747 - '500': *729 + '404': *744 + '403': *745 + '500': *727 '409': description: Conflict content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '400': *726 + schema: *721 + '400': *724 requestBody: required: true content: @@ -108785,17 +108802,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 - '404': *746 - '403': *747 + default: *746 + '404': *744 + '403': *745 '304': *35 x-github: githubCloudOnly: true @@ -108819,18 +108836,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 + default: *746 '304': *35 - '404': *746 - '403': *747 + '404': *744 + '403': *745 requestBody: required: true content: @@ -108945,19 +108962,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 + default: *746 '304': *35 - '404': *746 - '403': *747 - '400': *726 + '404': *744 + '403': *745 + '400': *724 '429': description: Response content: @@ -109053,12 +109070,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *76 - - *741 + - *739 responses: '204': description: Response - '404': *746 - '403': *747 + '404': *744 + '403': *745 '304': *35 x-github: githubCloudOnly: true @@ -109192,7 +109209,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &749 + text_matches: &747 title: Search Result Text Matches type: array items: @@ -109356,7 +109373,7 @@ paths: enum: - author-date - committer-date - - &750 + - &748 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 @@ -109425,7 +109442,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 comment_count: type: integer message: @@ -109444,7 +109461,7 @@ paths: url: type: string format: uri - verification: *603 + verification: *601 required: - author - committer @@ -109459,7 +109476,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 parents: type: array items: @@ -109476,7 +109493,7 @@ paths: type: number node_id: type: string - text_matches: *749 + text_matches: *747 required: - sha - node_id @@ -109669,7 +109686,7 @@ paths: - interactions - created - updated - - *750 + - *748 - *17 - *19 - name: advanced_search @@ -109766,11 +109783,11 @@ paths: type: - string - 'null' - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: type: string state_reason: @@ -109784,7 +109801,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 comments: type: integer created_at: @@ -109798,7 +109815,7 @@ paths: - string - 'null' format: date-time - text_matches: *749 + text_matches: *747 pull_request: type: object properties: @@ -109847,7 +109864,7 @@ paths: timeline_url: type: string format: uri - type: *331 + type: *329 performed_via_github_app: anyOf: - type: 'null' @@ -110021,7 +110038,7 @@ paths: enum: - created - updated - - *750 + - *748 - *17 - *19 responses: @@ -110066,7 +110083,7 @@ paths: - 'null' score: type: number - text_matches: *749 + text_matches: *747 required: - id - node_id @@ -110152,7 +110169,7 @@ paths: - forks - help-wanted-issues - updated - - *750 + - *748 - *17 - *19 responses: @@ -110389,7 +110406,7 @@ paths: - admin - pull - push - text_matches: *749 + text_matches: *747 temp_clone_token: type: string allow_merge_commit: @@ -110698,7 +110715,7 @@ paths: - string - 'null' format: uri - text_matches: *749 + text_matches: *747 related: type: - array @@ -110893,7 +110910,7 @@ paths: - followers - repositories - joined - - *750 + - *748 - *17 - *19 responses: @@ -111003,7 +111020,7 @@ paths: type: - boolean - 'null' - text_matches: *749 + text_matches: *747 blog: type: - string @@ -111085,7 +111102,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &754 + - &752 name: team_id description: The unique identifier of the team. in: path @@ -111097,9 +111114,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 x-github: githubCloudOnly: false @@ -111126,7 +111143,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *754 + - *752 requestBody: required: true content: @@ -111190,16 +111207,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '201': description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 '422': *15 '403': *27 @@ -111227,7 +111244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *754 + - *752 responses: '204': description: Response @@ -111258,7 +111275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *754 + - *752 - *99 - *17 - *19 @@ -111269,9 +111286,9 @@ paths: application/json: schema: type: array - items: *413 + items: *411 examples: - default: *755 + default: *753 headers: Link: *41 x-github: @@ -111300,7 +111317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *754 + - *752 requestBody: required: true content: @@ -111334,9 +111351,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: triggersNotification: true githubCloudOnly: false @@ -111363,16 +111380,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111397,8 +111414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: false content: @@ -111421,9 +111438,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *756 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111448,8 +111465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 responses: '204': description: Response @@ -111478,8 +111495,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *754 - - *415 + - *752 + - *413 - *99 - *17 - *19 @@ -111490,9 +111507,9 @@ paths: application/json: schema: type: array - items: *416 + items: *414 examples: - default: *757 + default: *755 headers: Link: *41 x-github: @@ -111521,8 +111538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: true content: @@ -111544,9 +111561,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: triggersNotification: true githubCloudOnly: false @@ -111573,17 +111590,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 responses: '200': description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111608,9 +111625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 requestBody: required: true content: @@ -111632,9 +111649,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *758 + default: *756 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111659,9 +111676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 responses: '204': description: Response @@ -111690,9 +111707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -111718,9 +111735,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -111749,9 +111766,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 requestBody: required: true content: @@ -111783,9 +111800,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111811,8 +111828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -111838,9 +111855,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -111869,8 +111886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: true content: @@ -111902,9 +111919,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111928,7 +111945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -111938,9 +111955,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 x-github: @@ -111966,7 +111983,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *754 + - *752 - name: role description: Filters members returned by their role in the team. in: query @@ -112017,7 +112034,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112054,7 +112071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112094,7 +112111,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112131,16 +112148,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *754 + - *752 - *178 responses: '200': description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-user-is-a-team-maintainer: *759 + response-if-user-is-a-team-maintainer: *757 '404': *6 x-github: githubCloudOnly: false @@ -112173,7 +112190,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: - - *754 + - *752 - *178 requestBody: required: false @@ -112199,9 +112216,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-users-membership-with-team-is-now-pending: *760 + response-if-users-membership-with-team-is-now-pending: *758 '403': description: Forbidden if team synchronization is set up '422': @@ -112235,7 +112252,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: - - *754 + - *752 - *178 responses: '204': @@ -112264,7 +112281,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112274,9 +112291,9 @@ paths: application/json: schema: type: array - items: *428 + items: *426 examples: - default: *761 + default: *759 headers: Link: *41 '404': *6 @@ -112302,16 +112319,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *754 - - *429 + - *752 + - *427 responses: '200': description: Response content: application/json: - schema: *428 + schema: *426 examples: - default: *762 + default: *760 '404': description: Not Found if project is not managed by this team x-github: @@ -112335,8 +112352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *754 - - *429 + - *752 + - *427 requestBody: required: false content: @@ -112403,8 +112420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *754 - - *429 + - *752 + - *427 responses: '204': description: Response @@ -112431,7 +112448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112443,7 +112460,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '404': *6 @@ -112473,15 +112490,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *763 + schema: *761 examples: alternative-response-with-extra-repository-information: value: @@ -112632,9 +112649,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 requestBody: required: false content: @@ -112684,9 +112701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 responses: '204': description: Response @@ -112715,15 +112732,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *754 + - *752 responses: '200': description: Response content: application/json: - schema: *432 + schema: *430 examples: - default: *433 + default: *431 '403': *27 '404': *6 x-github: @@ -112750,7 +112767,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: - - *754 + - *752 requestBody: required: true content: @@ -112811,7 +112828,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: default: value: @@ -112842,7 +112859,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112854,7 +112871,7 @@ paths: type: array items: *273 examples: - response-if-child-teams-exist: *764 + response-if-child-teams-exist: *762 headers: Link: *41 '404': *6 @@ -112887,7 +112904,7 @@ paths: application/json: schema: oneOf: - - &766 + - &764 title: Private User description: Private User type: object @@ -113137,7 +113154,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *765 + - *763 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -113297,7 +113314,7 @@ paths: description: Response content: application/json: - schema: *766 + schema: *764 examples: default: value: @@ -113500,9 +113517,9 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: - default: *337 + default: *335 '304': *35 '500': *38 '401': *23 @@ -113641,17 +113658,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -113695,7 +113712,7 @@ paths: type: integer secrets: type: array - items: &767 + items: &765 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113737,7 +113754,7 @@ paths: - visibility - selected_repositories_url examples: - default: *538 + default: *536 headers: Link: *41 x-github: @@ -113815,7 +113832,7 @@ paths: description: Response content: application/json: - schema: *767 + schema: *765 examples: default: value: @@ -113961,7 +113978,7 @@ paths: type: array items: *246 examples: - default: *768 + default: *766 '401': *23 '403': *27 '404': *6 @@ -114105,15 +114122,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '304': *35 '500': *38 '401': *23 @@ -114139,7 +114156,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 requestBody: required: false content: @@ -114169,9 +114186,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -114193,7 +114210,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '202': *37 '304': *35 @@ -114222,13 +114239,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '202': description: Response content: application/json: - schema: &769 + schema: &767 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -114281,7 +114298,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &770 + default: &768 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -114313,7 +114330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *338 + - *336 - name: export_id in: path required: true @@ -114326,9 +114343,9 @@ paths: description: Response content: application/json: - schema: *769 + schema: *767 examples: - default: *770 + default: *768 '404': *6 x-github: githubCloudOnly: false @@ -114349,7 +114366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *338 + - *336 responses: '200': description: Response @@ -114365,9 +114382,9 @@ paths: type: integer machines: type: array - items: *537 + items: *535 examples: - default: *771 + default: *769 '304': *35 '500': *38 '401': *23 @@ -114396,7 +114413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *338 + - *336 requestBody: required: true content: @@ -114452,11 +114469,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *443 + repository: *441 machine: anyOf: - type: 'null' - - *537 + - *535 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -115253,15 +115270,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '304': *35 '500': *38 '400': *14 @@ -115293,15 +115310,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '500': *38 '401': *23 '403': *27 @@ -115331,9 +115348,9 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: &783 + default: &781 value: - id: 197 name: hello_docker @@ -115434,7 +115451,7 @@ paths: application/json: schema: type: array - items: &772 + items: &770 title: Email description: Email type: object @@ -115504,9 +115521,9 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: - default: &785 + default: &783 value: - email: octocat@github.com verified: true @@ -115583,7 +115600,7 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: default: value: @@ -115841,7 +115858,7 @@ paths: application/json: schema: type: array - items: &773 + items: &771 title: GPG Key description: A unique encryption key type: object @@ -115986,7 +116003,7 @@ paths: - subkeys - revoked examples: - default: &799 + default: &797 value: - id: 3 name: Octocat's GPG Key @@ -116071,9 +116088,9 @@ paths: description: Response content: application/json: - schema: *773 + schema: *771 examples: - default: &774 + default: &772 value: id: 3 name: Octocat's GPG Key @@ -116130,7 +116147,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: - - &775 + - &773 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -116142,9 +116159,9 @@ paths: description: Response content: application/json: - schema: *773 + schema: *771 examples: - default: *774 + default: *772 '404': *6 '304': *35 '403': *27 @@ -116167,7 +116184,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: - - *775 + - *773 responses: '204': description: Response @@ -116443,12 +116460,12 @@ paths: application/json: schema: anyOf: - - *326 + - *324 - type: object properties: {} additionalProperties: false examples: - default: *327 + default: *325 '204': description: Response when there are no restrictions x-github: @@ -116472,7 +116489,7 @@ paths: required: true content: application/json: - schema: *614 + schema: *612 examples: default: value: @@ -116483,7 +116500,7 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: default: value: @@ -116564,7 +116581,7 @@ paths: - closed - all default: open - - *334 + - *332 - name: sort description: What to sort results by. in: query @@ -116589,7 +116606,7 @@ paths: type: array items: *183 examples: - default: *335 + default: *333 headers: Link: *41 '404': *6 @@ -116622,7 +116639,7 @@ paths: application/json: schema: type: array - items: &776 + items: &774 title: Key description: Key type: object @@ -116725,9 +116742,9 @@ paths: description: Response content: application/json: - schema: *776 + schema: *774 examples: - default: &777 + default: &775 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116760,15 +116777,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: - - *640 + - *638 responses: '200': description: Response content: application/json: - schema: *776 + schema: *774 examples: - default: *777 + default: *775 '404': *6 '304': *35 '403': *27 @@ -116791,7 +116808,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: - - *640 + - *638 responses: '204': description: Response @@ -116824,7 +116841,7 @@ paths: application/json: schema: type: array - items: &778 + items: &776 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116903,7 +116920,7 @@ paths: - account - plan examples: - default: &779 + default: &777 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116965,9 +116982,9 @@ paths: application/json: schema: type: array - items: *778 + items: *776 examples: - default: *779 + default: *777 headers: Link: *41 '304': *35 @@ -117007,7 +117024,7 @@ paths: application/json: schema: type: array - items: *339 + items: *337 examples: default: value: @@ -117115,7 +117132,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: default: value: @@ -117198,7 +117215,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: default: value: @@ -117266,7 +117283,7 @@ paths: application/json: schema: type: array - items: *341 + items: *339 examples: default: value: @@ -117528,7 +117545,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -117708,7 +117725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *342 + - *340 - name: exclude in: query required: false @@ -117721,7 +117738,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -117915,7 +117932,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *342 + - *340 responses: '302': description: Response @@ -117941,7 +117958,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *342 + - *340 responses: '204': description: Response @@ -117970,8 +117987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *342 - - *780 + - *340 + - *778 responses: '204': description: Response @@ -117995,7 +118012,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *342 + - *340 - *17 - *19 responses: @@ -118007,7 +118024,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '404': *6 @@ -118044,7 +118061,7 @@ paths: type: array items: *62 examples: - default: *781 + default: *779 headers: Link: *41 '304': *35 @@ -118086,7 +118103,7 @@ paths: - docker - nuget - container - - *782 + - *780 - *19 - *17 responses: @@ -118096,10 +118113,10 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 - '400': *784 + default: *781 + '400': *782 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118119,16 +118136,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *344 examples: - default: &800 + default: &798 value: id: 40201 name: octo-name @@ -118241,8 +118258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 responses: '204': description: Response @@ -118272,8 +118289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 - name: token description: package token schema: @@ -118305,8 +118322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 - *19 - *17 - name: state @@ -118326,7 +118343,7 @@ paths: application/json: schema: type: array - items: *350 + items: *348 examples: default: value: @@ -118375,15 +118392,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '200': description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -118419,9 +118436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '204': description: Response @@ -118451,9 +118468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '204': description: Response @@ -118511,7 +118528,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: default: value: @@ -118583,9 +118600,9 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: - default: *785 + default: *783 headers: Link: *41 '304': *35 @@ -118698,7 +118715,7 @@ paths: type: array items: *67 examples: - default: &792 + default: &790 summary: Default response value: - id: 1296269 @@ -119016,9 +119033,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119056,9 +119073,9 @@ paths: application/json: schema: type: array - items: *616 + items: *614 examples: - default: *786 + default: *784 headers: Link: *41 '304': *35 @@ -119081,7 +119098,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *330 + - *328 responses: '204': description: Response @@ -119104,7 +119121,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *330 + - *328 responses: '204': description: Response @@ -119137,7 +119154,7 @@ paths: application/json: schema: type: array - items: &787 + items: &785 title: Social account description: Social media account type: object @@ -119154,7 +119171,7 @@ paths: - provider - url examples: - default: &788 + default: &786 value: - provider: twitter url: https://twitter.com/github @@ -119217,9 +119234,9 @@ paths: application/json: schema: type: array - items: *787 + items: *785 examples: - default: *788 + default: *786 '422': *15 '304': *35 '404': *6 @@ -119307,7 +119324,7 @@ paths: application/json: schema: type: array - items: &789 + items: &787 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -119327,7 +119344,7 @@ paths: - title - created_at examples: - default: &803 + default: &801 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119394,9 +119411,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *787 examples: - default: &790 + default: &788 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119427,7 +119444,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: - - &791 + - &789 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -119439,9 +119456,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *787 examples: - default: *790 + default: *788 '404': *6 '304': *35 '403': *27 @@ -119464,7 +119481,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: - - *791 + - *789 responses: '204': description: Response @@ -119493,7 +119510,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: - - &804 + - &802 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 @@ -119518,11 +119535,11 @@ paths: type: array items: *67 examples: - default-response: *792 + default-response: *790 application/vnd.github.v3.star+json: schema: type: array - items: &805 + items: &803 title: Starred Repository description: Starred Repository type: object @@ -119678,8 +119695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response if this repository is starred by you @@ -119707,8 +119724,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -119732,8 +119749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -119768,7 +119785,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '304': *35 @@ -119805,7 +119822,7 @@ paths: application/json: schema: type: array - items: *411 + items: *409 examples: default: value: @@ -119891,10 +119908,10 @@ paths: application/json: schema: oneOf: - - *766 - - *765 + - *764 + - *763 examples: - default-response: &794 + default-response: &792 summary: Default response value: login: octocat @@ -119929,7 +119946,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &795 + response-with-git-hub-plan-information: &793 summary: Response with GitHub plan information value: login: octocat @@ -119989,7 +120006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *793 + - *791 - *17 responses: '200': @@ -120038,11 +120055,11 @@ paths: application/json: schema: oneOf: - - *766 - - *765 + - *764 + - *763 examples: - default-response: *794 - response-with-git-hub-plan-information: *795 + default-response: *792 + response-with-git-hub-plan-information: *793 '404': *6 x-github: githubCloudOnly: false @@ -120091,8 +120108,8 @@ paths: required: - subject_digests examples: - default: *796 - withPredicateType: *797 + default: *794 + withPredicateType: *795 responses: '200': description: Response @@ -120146,7 +120163,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *798 + default: *796 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -120350,7 +120367,7 @@ paths: initiator: type: string examples: - default: *483 + default: *481 '201': description: Response content: @@ -120389,9 +120406,9 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 + default: *781 '403': *27 '401': *23 x-github: @@ -120775,9 +120792,9 @@ paths: application/json: schema: type: array - items: *773 + items: *771 examples: - default: *799 + default: *797 headers: Link: *41 x-github: @@ -120881,7 +120898,7 @@ paths: application/json: schema: *20 examples: - default: *613 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120967,7 +120984,7 @@ paths: type: array items: *62 examples: - default: *781 + default: *779 headers: Link: *41 x-github: @@ -121006,7 +121023,7 @@ paths: - docker - nuget - container - - *782 + - *780 - *178 - *19 - *17 @@ -121017,12 +121034,12 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 + default: *781 '403': *27 '401': *23 - '400': *784 + '400': *782 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121042,17 +121059,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '200': description: Response content: application/json: - schema: *346 + schema: *344 examples: - default: *800 + default: *798 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121073,8 +121090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '204': @@ -121107,8 +121124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - name: token description: package token @@ -121141,8 +121158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '200': @@ -121151,7 +121168,7 @@ paths: application/json: schema: type: array - items: *350 + items: *348 examples: default: value: @@ -121209,16 +121226,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 - *178 responses: '200': description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -121253,10 +121270,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - - *351 + - *349 responses: '204': description: Response @@ -121288,10 +121305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - - *351 + - *349 responses: '204': description: Response @@ -121338,7 +121355,7 @@ paths: application/json: schema: type: array - items: *362 + items: *360 examples: default: value: @@ -121413,9 +121430,9 @@ paths: application/json: schema: type: array - items: *363 + items: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -121437,16 +121454,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *365 + - *363 - *178 responses: '200': description: Response content: application/json: - schema: *363 + schema: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -121468,7 +121485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *365 + - *363 - *178 - *17 - *97 @@ -121480,9 +121497,9 @@ paths: application/json: schema: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -121504,17 +121521,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *365 - - *801 + - *363 + - *799 - *178 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -121537,7 +121554,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *365 + - *363 - *178 - *97 - *98 @@ -121550,8 +121567,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -121559,8 +121578,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -121568,9 +121585,9 @@ paths: application/json: schema: type: array - items: *372 + items: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -121592,7 +121609,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *178 - - *365 + - *363 requestBody: required: true description: Details of the item to add to the project. @@ -121629,10 +121646,10 @@ paths: description: Response content: application/json: - schema: *802 + schema: *800 examples: - issue: *371 - pull_request: *371 + issue: *369 + pull_request: *369 '304': *35 '403': *27 '401': *23 @@ -121652,9 +121669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *365 + - *363 - *178 - - *374 + - *372 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -121672,9 +121689,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -121695,9 +121712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *365 + - *363 - *178 - - *374 + - *372 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -121770,13 +121787,13 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - text_field: *373 - number_field: *373 - date_field: *373 - single_select_field: *373 - iteration_field: *373 + text_field: *371 + number_field: *371 + date_field: *371 + single_select_field: *371 + iteration_field: *371 '401': *23 '403': *27 '404': *6 @@ -121796,9 +121813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *365 + - *363 - *178 - - *374 + - *372 responses: '204': description: Response @@ -122018,7 +122035,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -122048,9 +122065,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *396 examples: - default: *399 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122078,9 +122095,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *401 examples: - default: *404 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122089,7 +122106,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -122238,9 +122258,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *403 examples: - default: *406 + default: *404 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122363,9 +122383,9 @@ paths: application/json: schema: type: array - items: *787 + items: *785 examples: - default: *788 + default: *786 headers: Link: *41 x-github: @@ -122395,9 +122415,9 @@ paths: application/json: schema: type: array - items: *789 + items: *787 examples: - default: *803 + default: *801 headers: Link: *41 x-github: @@ -122422,7 +122442,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *178 - - *804 + - *802 - *99 - *17 - *19 @@ -122434,11 +122454,11 @@ paths: schema: anyOf: - type: array - items: *805 + items: *803 - type: array items: *67 examples: - default-response: *792 + default-response: *790 headers: Link: *41 x-github: @@ -122469,7 +122489,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -122598,7 +122618,7 @@ webhooks: type: string enum: - disabled - enterprise: &806 + enterprise: &804 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122667,7 +122687,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &807 + installation: &805 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122688,7 +122708,7 @@ webhooks: required: - id - node_id - organization: &808 + organization: &806 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122761,7 +122781,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &809 + repository: &807 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -123674,10 +123694,10 @@ webhooks: type: string enum: - enabled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -123753,11 +123773,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: &810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: &808 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) @@ -123980,11 +124000,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: *810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: *808 sender: *4 required: - action @@ -124172,11 +124192,11 @@ webhooks: - everyone required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: *810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: *808 sender: *4 required: - action @@ -124247,7 +124267,7 @@ webhooks: required: true content: application/json: - schema: &813 + schema: &811 title: Exemption request cancellation event type: object properties: @@ -124255,11 +124275,11 @@ webhooks: type: string enum: - cancelled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: &811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: &809 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -124497,7 +124517,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &812 + items: &810 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -124607,7 +124627,7 @@ webhooks: required: true content: application/json: - schema: &814 + schema: &812 title: Exemption request completed event type: object properties: @@ -124615,11 +124635,11 @@ webhooks: type: string enum: - completed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 sender: *4 required: - action @@ -124689,7 +124709,7 @@ webhooks: required: true content: application/json: - schema: &815 + schema: &813 title: Exemption request created event type: object properties: @@ -124697,11 +124717,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 sender: *4 required: - action @@ -124771,7 +124791,7 @@ webhooks: required: true content: application/json: - schema: &816 + schema: &814 title: Exemption response dismissed event type: object properties: @@ -124779,12 +124799,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 - exemption_response: *812 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 + exemption_response: *810 sender: *4 required: - action @@ -124856,7 +124876,7 @@ webhooks: required: true content: application/json: - schema: &817 + schema: &815 title: Exemption response submitted event type: object properties: @@ -124864,12 +124884,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 - exemption_response: *812 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 + exemption_response: *810 sender: *4 required: - action @@ -124942,7 +124962,7 @@ webhooks: required: true content: application/json: - schema: *813 + schema: *811 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125009,7 +125029,7 @@ webhooks: required: true content: application/json: - schema: *814 + schema: *812 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125076,7 +125096,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125143,7 +125163,7 @@ webhooks: required: true content: application/json: - schema: *816 + schema: *814 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125211,7 +125231,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125289,7 +125309,7 @@ webhooks: type: string enum: - completed - check_run: &819 + check_run: &817 title: CheckRun description: A check performed on the code of a given code change type: object @@ -125399,7 +125419,7 @@ webhooks: - examples: - neutral - deployment: *818 + deployment: *816 details_url: type: string examples: @@ -125497,10 +125517,10 @@ webhooks: - output - app - pull_requests - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -125893,11 +125913,11 @@ webhooks: type: string enum: - created - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -126293,11 +126313,11 @@ webhooks: type: string enum: - requested_action - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 requested_action: description: The action requested by the user. type: object @@ -126702,11 +126722,11 @@ webhooks: type: string enum: - rerequested - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -127698,10 +127718,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -128386,10 +128406,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -129068,10 +129088,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -129240,7 +129260,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -129392,20 +129412,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &820 + commit_oid: &818 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: *806 - installation: *807 - organization: *808 - ref: &821 + enterprise: *804 + installation: *805 + organization: *806 + ref: &819 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: *809 + repository: *807 sender: *4 required: - action @@ -129572,7 +129592,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -129813,12 +129833,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -129916,7 +129936,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130101,12 +130121,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -130275,7 +130295,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -130452,12 +130472,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -130560,7 +130580,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130740,9 +130760,9 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -130750,7 +130770,7 @@ webhooks: type: - string - 'null' - repository: *809 + repository: *807 sender: *4 required: - action @@ -130849,7 +130869,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130996,12 +131016,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -131263,10 +131283,10 @@ webhooks: - updated_at - author_association - body - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -131347,18 +131367,18 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *808 - pusher_type: &822 + organization: *806 + pusher_type: &820 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &823 + ref: &821 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -131368,7 +131388,7 @@ webhooks: enum: - tag - branch - repository: *809 + repository: *807 sender: *4 required: - ref @@ -131451,9 +131471,9 @@ webhooks: enum: - created definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131538,9 +131558,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131618,9 +131638,9 @@ webhooks: enum: - promote_to_enterprise definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131698,9 +131718,9 @@ webhooks: enum: - updated definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131777,19 +131797,19 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - repository: *809 - organization: *808 + enterprise: *804 + installation: *805 + repository: *807 + organization: *806 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *376 + items: *374 old_property_values: type: array description: The old custom property values for the repository. - items: *376 + items: *374 required: - action - repository @@ -131865,18 +131885,18 @@ webhooks: title: delete event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - pusher_type: *822 - ref: *823 + enterprise: *804 + installation: *805 + organization: *806 + pusher_type: *820 + ref: *821 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *809 + repository: *807 sender: *4 required: - ref @@ -131960,11 +131980,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132048,11 +132068,11 @@ webhooks: type: string enum: - auto_reopened - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132136,11 +132156,11 @@ webhooks: type: string enum: - created - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132222,11 +132242,11 @@ webhooks: type: string enum: - dismissed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132308,11 +132328,11 @@ webhooks: type: string enum: - fixed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132395,11 +132415,11 @@ webhooks: type: string enum: - reintroduced - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132481,11 +132501,11 @@ webhooks: type: string enum: - reopened - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132562,9 +132582,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - key: &824 + enterprise: *804 + installation: *805 + key: &822 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -132602,8 +132622,8 @@ webhooks: - verified - created_at - read_only - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -132680,11 +132700,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - key: *824 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + key: *822 + organization: *806 + repository: *807 sender: *4 required: - action @@ -133256,12 +133276,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: &828 + workflow: &826 title: Workflow type: - object @@ -133999,13 +134019,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *569 + deployment: *567 pull_requests: type: array - items: *658 - repository: *809 - organization: *808 - installation: *807 + items: *656 + repository: *807 + organization: *806 + installation: *805 sender: *4 responses: '200': @@ -134076,7 +134096,7 @@ webhooks: type: string enum: - approved - approver: &825 + approver: &823 type: object properties: avatar_url: @@ -134119,11 +134139,11 @@ webhooks: type: string comment: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - reviewers: &826 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + reviewers: &824 type: array items: type: object @@ -134204,7 +134224,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &827 + workflow_job_run: &825 type: object properties: conclusion: @@ -134950,18 +134970,18 @@ webhooks: type: string enum: - rejected - approver: *825 + approver: *823 comment: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - reviewers: *826 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + reviewers: *824 sender: *4 since: type: string - workflow_job_run: *827 + workflow_job_run: *825 workflow_job_runs: type: array items: @@ -135678,13 +135698,13 @@ webhooks: type: string enum: - requested - enterprise: *806 + enterprise: *804 environment: type: string - installation: *807 - organization: *808 - repository: *809 - requestor: &833 + installation: *805 + organization: *806 + repository: *807 + requestor: &831 title: User type: - object @@ -137627,12 +137647,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: *828 + workflow: *826 workflow_run: title: Deployment Workflow Run type: @@ -138323,7 +138343,7 @@ webhooks: type: string enum: - answered - answer: &831 + answer: &829 type: object properties: author_association: @@ -138483,11 +138503,11 @@ webhooks: - created_at - updated_at - body - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138614,11 +138634,11 @@ webhooks: - from required: - category - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138701,11 +138721,11 @@ webhooks: type: string enum: - closed - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138787,7 +138807,7 @@ webhooks: type: string enum: - created - comment: &830 + comment: &828 type: object properties: author_association: @@ -138947,11 +138967,11 @@ webhooks: - updated_at - body - reactions - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139034,12 +139054,12 @@ webhooks: type: string enum: - deleted - comment: *830 - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + comment: *828 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139134,12 +139154,12 @@ webhooks: - from required: - body - comment: *830 - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + comment: *828 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139223,11 +139243,11 @@ webhooks: type: string enum: - created - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139309,11 +139329,11 @@ webhooks: type: string enum: - deleted - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139413,11 +139433,11 @@ webhooks: type: string required: - from - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139499,10 +139519,10 @@ webhooks: type: string enum: - labeled - discussion: *829 - enterprise: *806 - installation: *807 - label: &832 + discussion: *827 + enterprise: *804 + installation: *805 + label: &830 title: Label type: object properties: @@ -139535,8 +139555,8 @@ webhooks: - color - default - description - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139619,11 +139639,11 @@ webhooks: type: string enum: - locked - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139705,11 +139725,11 @@ webhooks: type: string enum: - pinned - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139791,11 +139811,11 @@ webhooks: type: string enum: - reopened - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139880,16 +139900,16 @@ webhooks: changes: type: object properties: - new_discussion: *829 - new_repository: *809 + new_discussion: *827 + new_repository: *807 required: - new_discussion - new_repository - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139972,10 +139992,10 @@ webhooks: type: string enum: - unanswered - discussion: *829 - old_answer: *831 - organization: *808 - repository: *809 + discussion: *827 + old_answer: *829 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140057,12 +140077,12 @@ webhooks: type: string enum: - unlabeled - discussion: *829 - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140145,11 +140165,11 @@ webhooks: type: string enum: - unlocked - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140231,11 +140251,11 @@ webhooks: type: string enum: - unpinned - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140304,7 +140324,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140367,7 +140387,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140433,7 +140453,7 @@ webhooks: required: true content: application/json: - schema: *813 + schema: *811 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140499,7 +140519,7 @@ webhooks: required: true content: application/json: - schema: *814 + schema: *812 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140565,7 +140585,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140631,7 +140651,7 @@ webhooks: required: true content: application/json: - schema: *816 + schema: *814 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140697,7 +140717,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140764,7 +140784,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *806 + enterprise: *804 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -141442,9 +141462,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - forkee @@ -141590,9 +141610,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pages: description: The pages that were updated. type: array @@ -141630,7 +141650,7 @@ webhooks: - action - sha - html_url - repository: *809 + repository: *807 sender: *4 required: - pages @@ -141706,10 +141726,10 @@ webhooks: type: string enum: - created - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: &834 + organization: *806 + repositories: &832 description: An array of repository objects that the installation can access. type: array @@ -141735,8 +141755,8 @@ webhooks: - name - full_name - private - repository: *809 - requester: *833 + repository: *807 + requester: *831 sender: *4 required: - action @@ -141811,11 +141831,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -141892,11 +141912,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -141973,10 +141993,10 @@ webhooks: type: string enum: - added - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories_added: &835 + organization: *806 + repositories_added: &833 description: An array of repository objects, which were added to the installation. type: array @@ -142022,15 +142042,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *809 - repository_selection: &836 + repository: *807 + repository_selection: &834 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *833 + requester: *831 sender: *4 required: - action @@ -142109,10 +142129,10 @@ webhooks: type: string enum: - removed - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories_added: *835 + organization: *806 + repositories_added: *833 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -142139,9 +142159,9 @@ webhooks: - name - full_name - private - repository: *809 - repository_selection: *836 - requester: *833 + repository: *807 + repository_selection: *834 + requester: *831 sender: *4 required: - action @@ -142220,11 +142240,11 @@ webhooks: type: string enum: - suspend - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -142407,10 +142427,10 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 target_type: type: string @@ -142489,11 +142509,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -142741,8 +142761,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -143559,8 +143579,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143577,7 +143597,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -143921,8 +143941,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -144002,7 +144022,7 @@ webhooks: type: string enum: - deleted - comment: &837 + comment: &835 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -144169,8 +144189,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144983,8 +145003,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145001,7 +145021,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -145347,8 +145367,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -145428,7 +145448,7 @@ webhooks: type: string enum: - edited - changes: &861 + changes: &859 description: The changes to the comment. type: object properties: @@ -145440,9 +145460,9 @@ webhooks: type: string required: - from - comment: *837 - enterprise: *806 - installation: *807 + comment: *835 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146258,8 +146278,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146276,7 +146296,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -146620,8 +146640,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146711,9 +146731,9 @@ webhooks: type: number blocking_issue: *183 blocking_issue_repo: *67 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146807,9 +146827,9 @@ webhooks: type: number blocking_issue: *183 blocking_issue_repo: *67 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146902,9 +146922,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146998,9 +147018,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -147085,10 +147105,10 @@ webhooks: type: string enum: - assigned - assignee: *833 - enterprise: *806 - installation: *807 - issue: &840 + assignee: *831 + enterprise: *804 + installation: *805 + issue: &838 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -147900,11 +147920,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147921,7 +147941,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -148024,8 +148044,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -148105,8 +148125,8 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148923,11 +148943,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148944,7 +148964,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -149190,8 +149210,8 @@ webhooks: required: - state - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -149270,8 +149290,8 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -150079,11 +150099,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150100,7 +150120,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -150202,8 +150222,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -150282,8 +150302,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151114,11 +151134,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151135,7 +151155,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -151216,7 +151236,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &838 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151359,8 +151379,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -151459,8 +151479,8 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152272,11 +152292,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152290,7 +152310,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -152396,9 +152416,9 @@ webhooks: - active_lock_reason - body - reactions - label: *832 - organization: *808 - repository: *809 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -152478,8 +152498,8 @@ webhooks: type: string enum: - labeled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153290,11 +153310,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153308,7 +153328,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -153414,9 +153434,9 @@ webhooks: - active_lock_reason - body - reactions - label: *832 - organization: *808 - repository: *809 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -153496,8 +153516,8 @@ webhooks: type: string enum: - locked - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154333,11 +154353,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154351,7 +154371,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -154434,8 +154454,8 @@ webhooks: format: uri user_view_type: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -154514,8 +154534,8 @@ webhooks: type: string enum: - milestoned - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155345,11 +155365,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155366,7 +155386,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -155446,9 +155466,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *838 - organization: *808 - repository: *809 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -156340,11 +156360,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156440,7 +156460,7 @@ webhooks: required: - login - id - type: *331 + type: *329 required: - id - number @@ -156921,8 +156941,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157734,11 +157754,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157755,7 +157775,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -157857,8 +157877,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -157938,9 +157958,9 @@ webhooks: type: string enum: - pinned - enterprise: *806 - installation: *807 - issue: &839 + enterprise: *804 + installation: *805 + issue: &837 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -158746,11 +158766,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158767,7 +158787,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -158869,8 +158889,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -158949,8 +158969,8 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159784,11 +159804,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159885,9 +159905,9 @@ webhooks: format: uri user_view_type: type: string - type: *331 - organization: *808 - repository: *809 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -160776,11 +160796,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160797,7 +160817,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -161379,11 +161399,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *806 - installation: *807 - issue: *839 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *837 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161463,12 +161483,12 @@ webhooks: type: string enum: - typed - enterprise: *806 - installation: *807 - issue: *840 - type: *331 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161549,7 +161569,7 @@ webhooks: type: string enum: - unassigned - assignee: &864 + assignee: &862 title: User type: - object @@ -161621,11 +161641,11 @@ webhooks: required: - login - id - enterprise: *806 - installation: *807 - issue: *840 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161704,12 +161724,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *806 - installation: *807 - issue: *840 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161789,8 +161809,8 @@ webhooks: type: string enum: - unlocked - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162624,11 +162644,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162645,7 +162665,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -162725,8 +162745,8 @@ webhooks: format: uri user_view_type: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162806,11 +162826,11 @@ webhooks: type: string enum: - unpinned - enterprise: *806 - installation: *807 - issue: *839 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *837 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162889,12 +162909,12 @@ webhooks: type: string enum: - untyped - enterprise: *806 - installation: *807 - issue: *840 - type: *331 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162974,11 +162994,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163056,11 +163076,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163170,11 +163190,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163256,9 +163276,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: &841 + enterprise: *804 + installation: *805 + marketplace_purchase: &839 title: Marketplace Purchase type: object required: @@ -163346,8 +163366,8 @@ webhooks: type: integer unit_count: type: integer - organization: *808 - previous_marketplace_purchase: &842 + organization: *806 + previous_marketplace_purchase: &840 title: Marketplace Purchase type: object properties: @@ -163431,7 +163451,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163511,10 +163531,10 @@ webhooks: - changed effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163602,7 +163622,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163684,10 +163704,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163773,7 +163793,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163854,8 +163874,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 marketplace_purchase: title: Marketplace Purchase type: object @@ -163941,9 +163961,9 @@ webhooks: type: integer unit_count: type: integer - organization: *808 - previous_marketplace_purchase: *842 - repository: *809 + organization: *806 + previous_marketplace_purchase: *840 + repository: *807 sender: *4 required: - action @@ -164023,12 +164043,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 - previous_marketplace_purchase: *842 - repository: *809 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 + previous_marketplace_purchase: *840 + repository: *807 sender: *4 required: - action @@ -164130,11 +164150,11 @@ webhooks: type: string required: - to - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164236,11 +164256,11 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164319,11 +164339,11 @@ webhooks: type: string enum: - removed - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164401,11 +164421,11 @@ webhooks: type: string enum: - added - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164483,7 +164503,7 @@ webhooks: required: - login - id - team: &843 + team: &841 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164713,11 +164733,11 @@ webhooks: type: string enum: - removed - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164796,7 +164816,7 @@ webhooks: required: - login - id - team: *843 + team: *841 required: - action - scope @@ -164878,8 +164898,8 @@ webhooks: type: string enum: - checks_requested - installation: *807 - merge_group: &844 + installation: *805 + merge_group: &842 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164898,15 +164918,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *503 + head_commit: *501 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164992,10 +165012,10 @@ webhooks: - merged - invalidated - dequeued - installation: *807 - merge_group: *844 - organization: *808 - repository: *809 + installation: *805 + merge_group: *842 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165068,7 +165088,7 @@ webhooks: type: string enum: - deleted - enterprise: *806 + enterprise: *804 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165177,12 +165197,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *807 - organization: *808 + installation: *805 + organization: *806 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -165262,11 +165282,11 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165345,9 +165365,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - milestone: &845 + enterprise: *804 + installation: *805 + milestone: &843 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165489,8 +165509,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165569,11 +165589,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165683,11 +165703,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165767,11 +165787,11 @@ webhooks: type: string enum: - opened - enterprise: *806 - installation: *807 - milestone: *845 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *843 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165850,11 +165870,11 @@ webhooks: type: string enum: - blocked - blocked_user: *833 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + blocked_user: *831 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165933,11 +165953,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *833 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + blocked_user: *831 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166016,9 +166036,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - membership: &846 + enterprise: *804 + installation: *805 + membership: &844 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166128,8 +166148,8 @@ webhooks: - role - organization_url - user - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166207,11 +166227,11 @@ webhooks: type: string enum: - member_added - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166290,8 +166310,8 @@ webhooks: type: string enum: - member_invited - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166413,10 +166433,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 - user: *833 + user: *831 required: - action - invitation @@ -166494,11 +166514,11 @@ webhooks: type: string enum: - member_removed - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166585,11 +166605,11 @@ webhooks: properties: from: type: string - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166665,9 +166685,9 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 package: description: Information about the package. type: object @@ -167190,7 +167210,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &847 + items: &845 title: Ruby Gems metadata type: object properties: @@ -167287,7 +167307,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -167363,9 +167383,9 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 package: description: Information about the package. type: object @@ -167727,7 +167747,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *847 + items: *845 source_url: type: string format: uri @@ -167798,7 +167818,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -167979,12 +167999,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *806 + enterprise: *804 id: type: integer - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - id @@ -168061,7 +168081,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &848 + personal_access_token_request: &846 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168211,10 +168231,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *806 - organization: *808 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168291,11 +168311,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *848 - enterprise: *806 - organization: *808 + personal_access_token_request: *846 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168371,11 +168391,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *848 - enterprise: *806 - organization: *808 + personal_access_token_request: *846 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168450,11 +168470,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *848 - organization: *808 - enterprise: *806 + personal_access_token_request: *846 + organization: *806 + enterprise: *804 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168559,7 +168579,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *849 + last_response: *847 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -168591,8 +168611,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 zen: description: Random string of GitHub zen. @@ -168837,10 +168857,10 @@ webhooks: - from required: - note - enterprise: *806 - installation: *807 - organization: *808 - project_card: &850 + enterprise: *804 + installation: *805 + organization: *806 + project_card: &848 title: Project Card type: object properties: @@ -168963,7 +168983,7 @@ webhooks: - creator - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -169044,11 +169064,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project_card: *850 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_card: *848 + repository: *807 sender: *4 required: - action @@ -169128,9 +169148,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 project_card: title: Project Card type: object @@ -169260,7 +169280,7 @@ webhooks: repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -169354,11 +169374,11 @@ webhooks: - from required: - note - enterprise: *806 - installation: *807 - organization: *808 - project_card: *850 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_card: *848 + repository: *807 sender: *4 required: - action @@ -169452,9 +169472,9 @@ webhooks: - from required: - column_id - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 project_card: allOf: - title: Project Card @@ -169651,7 +169671,7 @@ webhooks: type: string required: - after_id - repository: *809 + repository: *807 sender: *4 required: - action @@ -169731,10 +169751,10 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - organization: *808 - project: &852 + enterprise: *804 + installation: *805 + organization: *806 + project: &850 title: Project type: object properties: @@ -169861,7 +169881,7 @@ webhooks: - creator - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -169941,10 +169961,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project_column: &851 + enterprise: *804 + installation: *805 + organization: *806 + project_column: &849 title: Project Column type: object properties: @@ -169984,7 +170004,7 @@ webhooks: - name - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -170063,14 +170083,14 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -170159,11 +170179,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 + repository: *807 sender: *4 required: - action @@ -170243,11 +170263,11 @@ webhooks: type: string enum: - moved - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 + repository: *807 sender: *4 required: - action @@ -170327,11 +170347,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170411,14 +170431,14 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - project: *852 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -170519,11 +170539,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170602,11 +170622,11 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170687,9 +170707,9 @@ webhooks: type: string enum: - closed - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170770,9 +170790,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170853,9 +170873,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170976,9 +170996,9 @@ webhooks: type: string to: type: string - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -171061,7 +171081,7 @@ webhooks: type: string enum: - archived - changes: &856 + changes: &854 type: object properties: archived_at: @@ -171077,9 +171097,9 @@ webhooks: - string - 'null' format: date-time - installation: *807 - organization: *808 - projects_v2_item: &853 + installation: *805 + organization: *806 + projects_v2_item: &851 title: Projects v2 Item description: An item belonging to a project type: object @@ -171097,7 +171117,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *370 + content_type: *368 creator: *4 created_at: type: string @@ -171219,9 +171239,9 @@ webhooks: - 'null' to: type: string - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171303,9 +171323,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171386,9 +171406,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171493,7 +171513,7 @@ webhooks: oneOf: - type: string - type: integer - - &854 + - &852 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -171517,7 +171537,7 @@ webhooks: required: - id - name - - &855 + - &853 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171557,8 +171577,8 @@ webhooks: oneOf: - type: string - type: integer - - *854 - - *855 + - *852 + - *853 type: - 'null' - string @@ -171581,9 +171601,9 @@ webhooks: - 'null' required: - body - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171680,9 +171700,9 @@ webhooks: type: - string - 'null' - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171765,10 +171785,10 @@ webhooks: type: string enum: - restored - changes: *856 - installation: *807 - organization: *808 - projects_v2_item: *853 + changes: *854 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171850,9 +171870,9 @@ webhooks: type: string enum: - reopened - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -171933,9 +171953,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172016,9 +172036,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172164,9 +172184,9 @@ webhooks: - string - 'null' format: date - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172237,10 +172257,10 @@ webhooks: title: public event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - repository @@ -172317,13 +172337,13 @@ webhooks: type: string enum: - assigned - assignee: *833 - enterprise: *806 - installation: *807 - number: &858 + assignee: *831 + enterprise: *804 + installation: *805 + number: &856 description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -174672,7 +174692,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -174754,11 +174774,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -177100,7 +177120,7 @@ webhooks: - draft reason: type: string - repository: *809 + repository: *807 sender: *4 required: - action @@ -177182,11 +177202,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -179528,7 +179548,7 @@ webhooks: - draft reason: type: string - repository: *809 + repository: *807 sender: *4 required: - action @@ -179610,13 +179630,13 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: &859 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: &857 allOf: - - *658 + - *656 - type: object properties: allow_auto_merge: @@ -179678,7 +179698,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *809 + repository: *807 sender: *4 required: - action @@ -179759,12 +179779,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -179844,11 +179864,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *806 - milestone: *368 - number: *858 - organization: *808 - pull_request: &860 + enterprise: *804 + milestone: *366 + number: *856 + organization: *806 + pull_request: &858 title: Pull Request type: object properties: @@ -182175,7 +182195,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -182254,11 +182274,11 @@ webhooks: type: string enum: - dequeued - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -184604,7 +184624,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *809 + repository: *807 sender: *4 required: - action @@ -184728,12 +184748,12 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -184813,11 +184833,11 @@ webhooks: type: string enum: - enqueued - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -187148,7 +187168,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -187228,11 +187248,11 @@ webhooks: type: string enum: - labeled - enterprise: *806 - installation: *807 - label: *832 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + label: *830 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -189580,7 +189600,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -189661,10 +189681,10 @@ webhooks: type: string enum: - locked - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -192010,7 +192030,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -192090,12 +192110,12 @@ webhooks: type: string enum: - milestoned - enterprise: *806 - milestone: *368 - number: *858 - organization: *808 - pull_request: *860 - repository: *809 + enterprise: *804 + milestone: *366 + number: *856 + organization: *806 + pull_request: *858 + repository: *807 sender: *4 required: - action @@ -192174,12 +192194,12 @@ webhooks: type: string enum: - opened - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192260,12 +192280,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192345,12 +192365,12 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192725,9 +192745,9 @@ webhooks: - start_side - side - reactions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -194957,7 +194977,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -195037,7 +195057,7 @@ webhooks: type: string enum: - deleted - comment: &862 + comment: &860 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. @@ -195330,9 +195350,9 @@ webhooks: - start_side - side - reactions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -197550,7 +197570,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -197630,11 +197650,11 @@ webhooks: type: string enum: - edited - changes: *861 - comment: *862 - enterprise: *806 - installation: *807 - organization: *808 + changes: *859 + comment: *860 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -199855,7 +199875,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -199936,9 +199956,9 @@ webhooks: type: string enum: - dismissed - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -202171,7 +202191,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 review: description: The review that was affected. type: object @@ -202422,9 +202442,9 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -204538,8 +204558,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 - review: &863 + repository: *807 + review: &861 description: The review that was affected. type: object properties: @@ -204777,12 +204797,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -207129,7 +207149,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_reviewer: title: User type: @@ -207215,12 +207235,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -209574,7 +209594,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209769,12 +209789,12 @@ webhooks: type: string enum: - review_requested - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -212123,7 +212143,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_reviewer: title: User type: @@ -212210,12 +212230,12 @@ webhooks: type: string enum: - review_requested - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -214555,7 +214575,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214739,9 +214759,9 @@ webhooks: type: string enum: - submitted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -216977,8 +216997,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 - review: *863 + repository: *807 + review: *861 sender: *4 required: - action @@ -217058,9 +217078,9 @@ webhooks: type: string enum: - resolved - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -219191,7 +219211,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 sender: *4 thread: type: object @@ -219588,9 +219608,9 @@ webhooks: type: string enum: - unresolved - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -221704,7 +221724,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 sender: *4 thread: type: object @@ -222103,10 +222123,10 @@ webhooks: type: string before: type: string - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -224441,7 +224461,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -224523,11 +224543,11 @@ webhooks: type: string enum: - unassigned - assignee: *864 - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + assignee: *862 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -226877,7 +226897,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -226956,11 +226976,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *806 - installation: *807 - label: *832 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + label: *830 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -229299,7 +229319,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -229380,10 +229400,10 @@ webhooks: type: string enum: - unlocked - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -231712,7 +231732,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -231915,7 +231935,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *806 + enterprise: *804 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232010,8 +232030,8 @@ webhooks: - url - author - committer - installation: *807 - organization: *808 + installation: *805 + organization: *806 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232599,9 +232619,9 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 registry_package: type: object properties: @@ -233078,7 +233098,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *847 + items: *845 summary: type: string tag_name: @@ -233134,7 +233154,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -233212,9 +233232,9 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 registry_package: type: object properties: @@ -233526,7 +233546,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *847 + items: *845 summary: type: string tag_name: @@ -233576,7 +233596,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -233653,10 +233673,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - release: &865 + enterprise: *804 + installation: *805 + organization: *806 + release: &863 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -233987,7 +234007,7 @@ webhooks: - updated_at - zipball_url - body - repository: *809 + repository: *807 sender: *4 required: - action @@ -234064,11 +234084,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -234185,11 +234205,11 @@ webhooks: type: boolean required: - to - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -234267,9 +234287,9 @@ webhooks: type: string enum: - prereleased - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -234605,7 +234625,7 @@ webhooks: - string - 'null' format: uri - repository: *809 + repository: *807 sender: *4 required: - action @@ -234681,10 +234701,10 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - release: &866 + enterprise: *804 + installation: *805 + organization: *806 + release: &864 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -235017,7 +235037,7 @@ webhooks: - string - 'null' format: uri - repository: *809 + repository: *807 sender: *4 required: - action @@ -235093,11 +235113,11 @@ webhooks: type: string enum: - released - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -235173,11 +235193,11 @@ webhooks: type: string enum: - unpublished - enterprise: *806 - installation: *807 - organization: *808 - release: *866 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *864 + repository: *807 sender: *4 required: - action @@ -235253,11 +235273,11 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - repository_advisory: *711 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + repository_advisory: *709 sender: *4 required: - action @@ -235333,11 +235353,11 @@ webhooks: type: string enum: - reported - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - repository_advisory: *711 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + repository_advisory: *709 sender: *4 required: - action @@ -235413,10 +235433,10 @@ webhooks: type: string enum: - archived - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235493,10 +235513,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235574,10 +235594,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235662,10 +235682,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235780,10 +235800,10 @@ webhooks: - 'null' items: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235855,10 +235875,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 status: type: string @@ -235939,10 +235959,10 @@ webhooks: type: string enum: - privatized - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236019,10 +236039,10 @@ webhooks: type: string enum: - publicized - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236116,10 +236136,10 @@ webhooks: - name required: - repository - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236199,10 +236219,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 sender: *4 required: @@ -236281,10 +236301,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 sender: *4 required: @@ -236363,10 +236383,10 @@ webhooks: type: string enum: - edited - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 changes: type: object @@ -236428,16 +236448,16 @@ webhooks: properties: added: type: array - items: *679 + items: *677 deleted: type: array - items: *679 + items: *677 updated: type: array items: type: object properties: - rule: *679 + rule: *677 changes: type: object properties: @@ -236674,10 +236694,10 @@ webhooks: - from required: - owner - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236755,10 +236775,10 @@ webhooks: type: string enum: - unarchived - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236836,7 +236856,7 @@ webhooks: type: string enum: - create - alert: &867 + alert: &865 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -236960,10 +236980,10 @@ webhooks: type: string enum: - open - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237173,10 +237193,10 @@ webhooks: type: string enum: - dismissed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237254,11 +237274,11 @@ webhooks: type: string enum: - reopen - alert: *867 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *865 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237460,10 +237480,10 @@ webhooks: enum: - fixed - open - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237541,7 +237561,7 @@ webhooks: type: string enum: - created - alert: &868 + alert: &866 type: object properties: number: *109 @@ -237655,10 +237675,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237739,11 +237759,11 @@ webhooks: type: string enum: - created - alert: *868 - installation: *807 - location: *869 - organization: *808 - repository: *809 + alert: *866 + installation: *805 + location: *867 + organization: *806 + repository: *807 sender: *4 required: - location @@ -237981,11 +238001,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238063,11 +238083,11 @@ webhooks: type: string enum: - reopened - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238145,11 +238165,11 @@ webhooks: type: string enum: - resolved - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238227,11 +238247,11 @@ webhooks: type: string enum: - validated - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238361,10 +238381,10 @@ webhooks: - organization - enterprise - - repository: *809 - enterprise: *806 - installation: *807 - organization: *808 + repository: *807 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -238442,11 +238462,11 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - security_advisory: &870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + security_advisory: &868 description: The details of the security advisory, including summary, description, and severity. type: object @@ -238632,11 +238652,11 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - security_advisory: *870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + security_advisory: *868 sender: *4 required: - action @@ -238709,10 +238729,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -238898,11 +238918,11 @@ webhooks: from: type: object properties: - security_and_analysis: *377 - enterprise: *806 - installation: *807 - organization: *808 - repository: *443 + security_and_analysis: *375 + enterprise: *804 + installation: *805 + organization: *806 + repository: *441 sender: *4 required: - changes @@ -238980,12 +239000,12 @@ webhooks: type: string enum: - cancelled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: &871 + sponsorship: &869 type: object properties: created_at: @@ -239290,12 +239310,12 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - sponsorship @@ -239383,12 +239403,12 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239465,17 +239485,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &872 + effective_date: &870 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: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - sponsorship @@ -239549,7 +239569,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &873 + changes: &871 type: object properties: tier: @@ -239593,13 +239613,13 @@ webhooks: - from required: - tier - effective_date: *872 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + effective_date: *870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239676,13 +239696,13 @@ webhooks: type: string enum: - tier_changed - changes: *873 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + changes: *871 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239756,10 +239776,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239843,10 +239863,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240280,15 +240300,15 @@ webhooks: type: - string - 'null' - enterprise: *806 + enterprise: *804 id: description: The unique identifier of the status. type: integer - installation: *807 + installation: *805 name: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 sha: description: The Commit SHA. @@ -240404,9 +240424,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240496,9 +240516,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240588,9 +240608,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240680,9 +240700,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240759,12 +240779,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - team: &874 + team: &872 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -240994,9 +241014,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -241466,7 +241486,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -241542,9 +241562,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -242014,7 +242034,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -242091,9 +242111,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -242563,7 +242583,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -242707,9 +242727,9 @@ webhooks: - from required: - permissions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -243179,7 +243199,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - changes @@ -243257,9 +243277,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -243729,7 +243749,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -243805,10 +243825,10 @@ webhooks: type: string enum: - started - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -243881,17 +243901,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *806 + enterprise: *804 inputs: type: - object - 'null' additionalProperties: true - installation: *807 - organization: *808 + installation: *805 + organization: *806 ref: type: string - repository: *809 + repository: *807 sender: *4 workflow: type: string @@ -243973,10 +243993,10 @@ webhooks: type: string enum: - completed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: allOf: @@ -244232,7 +244252,7 @@ webhooks: type: string required: - conclusion - deployment: *569 + deployment: *567 required: - action - repository @@ -244311,10 +244331,10 @@ webhooks: type: string enum: - in_progress - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: allOf: @@ -244596,7 +244616,7 @@ webhooks: required: - status - steps - deployment: *569 + deployment: *567 required: - action - repository @@ -244675,10 +244695,10 @@ webhooks: type: string enum: - queued - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: type: object @@ -244824,7 +244844,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *569 + deployment: *567 required: - action - repository @@ -244903,10 +244923,10 @@ webhooks: type: string enum: - waiting - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: type: object @@ -245053,7 +245073,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *569 + deployment: *567 required: - action - repository @@ -245133,12 +245153,12 @@ webhooks: type: string enum: - completed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: *828 + workflow: *826 workflow_run: title: Workflow Run type: object @@ -246157,12 +246177,12 @@ webhooks: type: string enum: - in_progress - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: *828 + workflow: *826 workflow_run: title: Workflow Run type: object @@ -247166,12 +247186,12 @@ webhooks: type: string enum: - requested - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: *828 + workflow: *826 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 8d97d0fbd..e072942f4 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -45251,29 +45251,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -62886,7 +62863,7 @@ "/enterprises/{enterprise}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an enterprise", - "description": "Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise.", + "description": "Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -114540,7 +114517,7 @@ "/organizations/{org}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for an organization", - "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.", + "description": "Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], @@ -135677,6 +135654,110 @@ } } }, + "/orgs/{org}/attestations/repositories": { + "get": { + "summary": "List attestation repositories", + "description": "List repositories owned by the provided organization that have created at least one attested artifact\nResults will be sorted in ascending order by repository ID", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-attestation-repositories", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestation-repositories" + }, + "parameters": [ + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "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 results before this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "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 results after this cursor. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "predicate_type", + "description": "Optional filter for fetching attestations with a given predicate type.\nThis option accepts `provenance`, `sbom`, or freeform text for custom predicate types.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 123, + "name": "foo" + }, + { + "id": 456, + "name": "bar" + } + ] + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "orgs" + } + } + }, "/orgs/{org}/attestations/{attestation_id}": { "delete": { "summary": "Delete attestations by ID", @@ -158163,29 +158244,6 @@ "type": "string" } }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -217689,7 +217747,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -217697,10 +217755,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } }, { @@ -405202,16 +405257,6 @@ "default": "desc" } }, - { - "name": "page", - "description": "**Closing down notice**. Page number of the results to fetch. Use cursor-based pagination with `before` or `after` instead.", - "deprecated": true, - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } - }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -405239,29 +405284,6 @@ "schema": { "type": "string" } - }, - { - "name": "first", - "description": "**Deprecated**. The number of results per page (max 100), starting from the first matching result.\nThis parameter must not be used in combination with `last`.\nInstead, use `per_page` in combination with `after` to fetch the first page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 30 - } - }, - { - "name": "last", - "description": "**Deprecated**. The number of results per page (max 100), starting from the last matching result.\nThis parameter must not be used in combination with `first`.\nInstead, use `per_page` in combination with `before` to fetch the last page of results.", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "minimum": 1, - "maximum": 100 - } } ], "responses": { @@ -805632,7 +805654,7 @@ }, { "name": "fields", - "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.", + "description": "Limit results to specific fields, by their IDs. If not specified, the title field will be returned.\n\nExample: `fields[]=123&fields[]=456&fields[]=789`", "in": "query", "required": false, "schema": { @@ -805640,10 +805662,7 @@ "maxItems": 50, "items": { "type": "string" - }, - "examples": [ - "fields[]=123,fields[]=456,fields[]=789" - ] + } } } ], @@ -843270,7 +843289,7 @@ "/users/{username}/settings/billing/premium_request/usage": { "get": { "summary": "Get billing premium request usage report for a user", - "description": "Gets a report of premium request usage for a user.", + "description": "Gets a report of premium request usage for a user.\n\n**Note:** Only data from the past 24 months is accessible via this endpoint.", "tags": [ "billing" ], diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index f0616924a..881c4ce2d 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -913,7 +913,7 @@ paths: - subscriptions_url - type - url - type: &397 + type: &395 type: string description: The type of credit the user is receiving. enum: @@ -1079,7 +1079,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: - - &713 + - &711 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1664,7 +1664,7 @@ paths: schema: type: integer default: 30 - - &309 + - &307 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1680,7 +1680,7 @@ paths: application/json: schema: type: array - items: &310 + items: &308 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1776,7 +1776,7 @@ paths: - installation_id - repository_id examples: - default: &311 + default: &309 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &723 + schema: &721 title: Scim Error description: Scim Error type: object @@ -1911,7 +1911,7 @@ paths: description: Response content: application/json: - schema: &312 + schema: &310 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2046,7 +2046,7 @@ paths: - request - response examples: - default: &313 + default: &311 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -8718,7 +8718,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &724 + '401': &722 description: Authorization failure '404': *6 x-github: @@ -12983,7 +12983,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &509 + instances_url: &507 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13019,7 +13019,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &510 + dismissed_reason: &508 type: - string - 'null' @@ -13030,14 +13030,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &511 + dismissed_comment: &509 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &512 + rule: &510 type: object properties: id: @@ -13098,7 +13098,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &513 + tool: &511 type: object properties: name: *100 @@ -13109,15 +13109,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *101 - most_recent_instance: &514 + most_recent_instance: &512 type: object properties: - ref: &507 + ref: &505 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &524 + analysis_key: &522 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13128,7 +13128,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &525 + category: &523 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -15533,7 +15533,7 @@ paths: parent: anyOf: - type: 'null' - - &344 + - &342 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -16719,7 +16719,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &560 + - &558 name: has in: query description: |- @@ -16761,31 +16761,6 @@ paths: - *99 - *97 - *98 - - &301 - name: first - description: |- - **Deprecated**. The number of results per page (max 100), starting from the first matching result. - This parameter must not be used in combination with `last`. - Instead, use `per_page` in combination with `after` to fetch the first page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - default: 30 - - &302 - name: last - description: |- - **Deprecated**. The number of results per page (max 100), starting from the last matching result. - This parameter must not be used in combination with `first`. - Instead, use `per_page` in combination with `before` to fetch the last page of results. - in: query - required: false - schema: - type: integer - minimum: 1 - maximum: 100 - *17 responses: '200': @@ -16794,7 +16769,7 @@ paths: application/json: schema: type: array - items: &303 + items: &301 type: object description: A Dependabot alert. properties: @@ -16861,7 +16836,7 @@ paths: - direct - transitive - - security_advisory: &561 + security_advisory: &559 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17097,7 +17072,7 @@ paths: dismissal. maxLength: 280 fixed_at: *119 - auto_dismissed_at: &562 + auto_dismissed_at: &560 type: - string - 'null' @@ -17124,7 +17099,7 @@ paths: - repository additionalProperties: false examples: - default: &304 + default: &302 value: - number: 2 state: dismissed @@ -17653,7 +17628,7 @@ paths: - name - created_on examples: - default: &407 + default: &405 value: total_count: 2 network_configurations: @@ -17876,7 +17851,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &408 + - &406 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -17888,7 +17863,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &407 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -17927,7 +17902,7 @@ paths: - subnet_id - region examples: - default: &410 + default: &408 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -18233,7 +18208,7 @@ paths: required: true content: application/json: - schema: &375 + schema: &373 title: Custom Property Set Payload description: Custom property set payload type: object @@ -19307,7 +19282,7 @@ paths: conditions: anyOf: - *132 - - &380 + - &378 title: Organization ruleset conditions type: object description: |- @@ -19357,7 +19332,7 @@ paths: - object rules: type: array - items: &679 + items: &677 title: Repository Rule type: object description: A repository rule. @@ -19366,7 +19341,7 @@ paths: - *139 - *140 - *141 - - &676 + - &674 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -19460,7 +19435,7 @@ paths: - *155 - *156 - *157 - - &677 + - &675 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. @@ -19716,7 +19691,7 @@ paths: type: string format: date-time examples: - default: &383 + default: &381 value: - version_id: 3 actor: @@ -19769,7 +19744,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &382 allOf: - *162 - type: object @@ -19824,7 +19799,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &385 + - &383 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -19835,7 +19810,7 @@ paths: enum: - open - resolved - - &386 + - &384 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -19845,7 +19820,7 @@ paths: required: false schema: type: string - - &387 + - &385 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -19854,7 +19829,7 @@ paths: required: false schema: type: string - - &388 + - &386 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. @@ -19870,7 +19845,7 @@ paths: - *17 - *97 - *98 - - &389 + - &387 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -19879,7 +19854,7 @@ paths: required: false schema: type: string - - &390 + - &388 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -19888,7 +19863,7 @@ paths: schema: type: boolean default: false - - &391 + - &389 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -19897,7 +19872,7 @@ paths: schema: type: boolean default: false - - &392 + - &390 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -19913,7 +19888,7 @@ paths: application/json: schema: type: array - items: &393 + items: &391 type: object properties: number: *109 @@ -19929,14 +19904,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &691 + state: &689 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: &692 + resolution: &690 type: - string - 'null' @@ -20043,14 +20018,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &693 + - &691 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &695 + - &693 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -20107,7 +20082,7 @@ paths: - blob_url - commit_sha - commit_url - - &696 + - &694 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. @@ -20168,7 +20143,7 @@ paths: - page_url - commit_sha - commit_url - - &697 + - &695 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -20183,7 +20158,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &698 + - &696 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -20198,7 +20173,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &699 + - &697 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -20213,7 +20188,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &700 + - &698 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -20228,7 +20203,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &701 + - &699 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -20243,7 +20218,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &702 + - &700 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -20258,7 +20233,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &703 + - &701 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. @@ -20273,7 +20248,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &704 + - &702 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. @@ -20288,7 +20263,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &705 + - &703 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. @@ -20303,7 +20278,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &706 + - &704 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. @@ -20318,7 +20293,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &707 + - &705 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 @@ -20343,7 +20318,7 @@ paths: - type: 'null' - *4 examples: - default: &394 + default: &392 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -20552,7 +20527,7 @@ paths: description: Response content: application/json: - schema: &395 + schema: &393 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -20639,7 +20614,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *164 examples: - default: &396 + default: &394 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -20783,7 +20758,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &396 type: object properties: total_minutes_used: @@ -20853,7 +20828,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &399 + default: &397 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -20884,7 +20859,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &400 + - &398 name: advanced_security_product in: query description: | @@ -20904,7 +20879,7 @@ paths: description: Success content: application/json: - schema: &401 + schema: &399 type: object properties: total_advanced_security_committers: @@ -20967,7 +20942,7 @@ paths: required: - repositories examples: - default: &402 + default: &400 value: total_advanced_security_committers: 2 total_count: 2 @@ -21581,7 +21556,7 @@ paths: description: Response content: application/json: - schema: &403 + schema: &401 type: object properties: total_gigabytes_bandwidth_used: @@ -21599,7 +21574,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &404 + default: &402 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -21612,8 +21587,10 @@ paths: "/enterprises/{enterprise}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an enterprise - description: Gets a report of premium request usage for an enterprise. To use - this endpoint, you must be an administrator or billing manager of the enterprise. + description: |- + Gets a report of premium request usage for an enterprise. To use this endpoint, you must be an administrator or billing manager of the enterprise. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-ghe @@ -21840,7 +21817,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &403 type: object properties: days_left_in_billing_cycle: @@ -21858,7 +21835,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &406 + default: &404 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -22744,7 +22721,7 @@ paths: properties: action: type: string - discussion: &829 + discussion: &827 title: Discussion description: A Discussion in a repository. type: object @@ -23247,7 +23224,7 @@ paths: milestone: anyOf: - type: 'null' - - &368 + - &366 title: Milestone description: A collection of related issues and pull requests. @@ -23419,7 +23396,7 @@ paths: timeline_url: type: string format: uri - type: &331 + type: &329 title: Issue Type description: The type of issue. type: @@ -23530,7 +23507,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &751 + sub_issues_summary: &749 title: Sub-issues Summary type: object properties: @@ -23551,7 +23528,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &752 + issue_dependencies_summary: &750 title: Issue Dependencies Summary type: object properties: @@ -23570,7 +23547,7 @@ paths: - total_blocking issue_field_values: type: array - items: &753 + items: &751 title: Issue Field Value description: A value assigned to an issue field type: object @@ -23683,7 +23660,7 @@ paths: action: type: string issue: *183 - comment: &617 + comment: &615 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -24406,7 +24383,7 @@ paths: type: string release: allOf: - - &669 + - &667 title: Release description: A release. type: object @@ -24488,7 +24465,7 @@ paths: author: *4 assets: type: array - items: &670 + items: &668 title: Release Asset description: Data related to a release. type: object @@ -25079,7 +25056,7 @@ paths: url: type: string format: uri - user: &765 + user: &763 title: Public User description: Public User type: object @@ -26974,7 +26951,7 @@ paths: - closed - all default: open - - &334 + - &332 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -27025,7 +27002,7 @@ paths: type: array items: *183 examples: - default: &335 + default: &333 value: - id: 1 node_id: MDU6SXNzdWUx @@ -28437,14 +28414,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &430 + - &428 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &431 + - &429 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -28506,7 +28483,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &444 + '301': &442 description: Moved permanently content: application/json: @@ -28528,7 +28505,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &645 + - &643 name: all description: If `true`, show notifications marked as read. in: query @@ -28536,7 +28513,7 @@ paths: schema: type: boolean default: false - - &646 + - &644 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -28546,7 +28523,7 @@ paths: type: boolean default: false - *189 - - &647 + - &645 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: @@ -28917,7 +28894,7 @@ paths: type: boolean examples: - false - security_and_analysis: &377 + security_and_analysis: &375 type: - object - 'null' @@ -29090,7 +29067,7 @@ paths: - url - subscription_url examples: - default: &648 + default: &646 value: - id: '1' repository: @@ -29643,7 +29620,7 @@ paths: type: array items: *62 examples: - default: &781 + default: &779 value: - login: github id: 1 @@ -30058,9 +30035,10 @@ paths: "/organizations/{org}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for an organization - description: Gets a report of premium request usage for an organization. To - use this endpoint, you must be an administrator of an organization within - an enterprise or an organization account. + description: |- + Gets a report of premium request usage for an organization. To use this endpoint, you must be an administrator of an organization within an enterprise or an organization account. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-org @@ -31097,7 +31075,7 @@ paths: type: integer repository_cache_usages: type: array - items: &449 + items: &447 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -33020,7 +32998,7 @@ paths: type: array items: *246 examples: - default: &768 + default: &766 value: total_count: 1 repositories: @@ -34064,7 +34042,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &467 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -34099,7 +34077,7 @@ paths: - key_id - key examples: - default: &470 + default: &468 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34512,7 +34490,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *76 - - &454 + - &452 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -35325,12 +35303,12 @@ paths: required: - subject_digests examples: - default: &796 + default: &794 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &797 + withPredicateType: &795 value: subject_digests: - sha256:abc123 @@ -35389,7 +35367,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &798 + default: &796 value: attestations_subject_digests: - sha256:abc: @@ -35582,6 +35560,57 @@ paths: enabledForGitHubApps: true category: orgs subcategory: attestations + "/orgs/{org}/attestations/repositories": + get: + summary: List attestation repositories + description: |- + List repositories owned by the provided organization that have created at least one attested artifact + Results will be sorted in ascending order by repository ID + tags: + - orgs + operationId: orgs/list-attestation-repositories + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-attestation-repositories + parameters: + - *17 + - *97 + - *98 + - *76 + - name: predicate_type + description: |- + Optional filter for fetching attestations with a given predicate type. + This option accepts `provenance`, `sbom`, or freeform text for custom predicate types. + in: query + required: false + schema: + type: string + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: integer + name: + type: string + examples: + default: + value: + - id: 123 + name: foo + - id: 456 + name: bar + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: orgs "/orgs/{org}/attestations/{attestation_id}": delete: summary: Delete attestations by ID @@ -35685,7 +35714,7 @@ paths: initiator: type: string examples: - default: &483 + default: &481 value: attestations: - bundle: @@ -36601,7 +36630,7 @@ paths: be returned. in: query required: false - schema: &508 + schema: &506 type: string description: Severity of a code scanning alert. enum: @@ -37617,7 +37646,7 @@ paths: type: integer codespaces: type: array - items: &336 + items: &334 type: object title: Codespace description: A codespace. @@ -37652,7 +37681,7 @@ paths: machine: anyOf: - type: 'null' - - &537 + - &535 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -37939,7 +37968,7 @@ paths: - pulls_url - recent_folders examples: - default: &337 + default: &335 value: total_count: 3 codespaces: @@ -38604,7 +38633,7 @@ paths: - updated_at - visibility examples: - default: &538 + default: &536 value: total_count: 2 secrets: @@ -38642,7 +38671,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &537 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -38677,7 +38706,7 @@ paths: - key_id - key examples: - default: &540 + default: &538 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38709,7 +38738,7 @@ paths: application/json: schema: *288 examples: - default: &542 + default: &540 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -40311,8 +40340,6 @@ paths: - *99 - *97 - *98 - - *301 - - *302 - *17 responses: '200': @@ -40321,9 +40348,9 @@ paths: application/json: schema: type: array - items: *303 + items: *301 examples: - default: *304 + default: *302 '304': *35 '400': *14 '403': *27 @@ -40367,7 +40394,7 @@ paths: type: integer secrets: type: array - items: &305 + items: &303 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -40446,7 +40473,7 @@ paths: description: Response content: application/json: - schema: &565 + schema: &563 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -40465,7 +40492,7 @@ paths: - key_id - key examples: - default: &566 + default: &564 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -40495,7 +40522,7 @@ paths: description: Response content: application/json: - schema: *305 + schema: *303 examples: default: value: @@ -40795,7 +40822,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *76 - - &574 + - &572 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -40803,7 +40830,7 @@ paths: required: false schema: type: string - - &575 + - &573 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -40811,7 +40838,7 @@ paths: required: false schema: type: string - - &576 + - &574 name: time_period description: |- The time period to filter by. @@ -40827,7 +40854,7 @@ paths: - week - month default: month - - &577 + - &575 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -40852,7 +40879,7 @@ paths: application/json: schema: type: array - items: &578 + items: &576 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -41015,7 +41042,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &579 + default: &577 value: - id: 21 number: 42 @@ -41106,7 +41133,7 @@ paths: - *92 - *93 - *94 - - &580 + - &578 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -41132,7 +41159,7 @@ paths: application/json: schema: type: array - items: &581 + items: &579 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -41259,7 +41286,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &582 + default: &580 value: - id: 21 number: 42 @@ -41347,7 +41374,7 @@ paths: application/json: schema: type: array - items: &346 + items: &344 title: Package description: A software package type: object @@ -41418,7 +41445,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &345 value: - id: 197 name: hello_docker @@ -41605,7 +41632,7 @@ paths: description: Response content: application/json: - schema: &425 + schema: &423 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -41695,7 +41722,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &426 + default: &424 value: group_id: '123' group_name: Octocat admins @@ -41750,7 +41777,7 @@ paths: description: Response content: application/json: - schema: &423 + schema: &421 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -41790,7 +41817,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &424 + default: &422 value: groups: - group_id: '123' @@ -41834,7 +41861,7 @@ paths: application/json: schema: type: array - items: &328 + items: &326 title: Organization Invitation description: Organization Invitation type: object @@ -41888,7 +41915,7 @@ paths: - invitation_teams_url - node_id examples: - default: &329 + default: &327 value: - id: 1 login: monalisa @@ -41955,7 +41982,7 @@ paths: application/json: schema: type: array - items: &378 + items: &376 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -41969,7 +41996,7 @@ paths: - name - description examples: - default: &379 + default: &377 value: - name: add_assignee description: Assign or remove a user @@ -42010,7 +42037,7 @@ paths: application/json: schema: type: array - items: &306 + items: &304 title: Org Hook description: Org Hook type: object @@ -42193,9 +42220,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: - default: &307 + default: &305 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -42240,7 +42267,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *76 - - &308 + - &306 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -42253,9 +42280,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: - default: *307 + default: *305 '404': *6 x-github: githubCloudOnly: false @@ -42277,7 +42304,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *76 - - *308 + - *306 requestBody: required: false content: @@ -42323,7 +42350,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *304 examples: default: value: @@ -42363,7 +42390,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *76 - - *308 + - *306 responses: '204': description: Response @@ -42389,7 +42416,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *76 - - *308 + - *306 responses: '200': description: Response @@ -42418,7 +42445,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *76 - - *308 + - *306 requestBody: required: false content: @@ -42467,9 +42494,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *17 - - *309 + - *307 responses: '200': description: Response @@ -42477,9 +42504,9 @@ paths: application/json: schema: type: array - items: *310 + items: *308 examples: - default: *311 + default: *309 '400': *14 '422': *15 x-github: @@ -42503,16 +42530,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *16 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *313 + default: *311 '400': *14 '422': *15 x-github: @@ -42536,7 +42563,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *76 - - *308 + - *306 - *16 responses: '202': *37 @@ -42563,7 +42590,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *76 - - *308 + - *306 responses: '204': description: Response @@ -42586,7 +42613,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *76 - - &318 + - &316 name: actor_type in: path description: The type of the actor @@ -42599,14 +42626,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &319 + - &317 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &314 + - &312 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -42614,7 +42641,7 @@ paths: required: true schema: type: string - - &315 + - &313 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42709,12 +42736,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *76 - - *314 - - *315 + - *312 + - *313 - *19 - *17 - *99 - - &324 + - &322 name: sort description: The property to sort the results by. in: query @@ -42794,14 +42821,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *76 - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: &316 + schema: &314 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -42817,7 +42844,7 @@ paths: type: integer format: int64 examples: - default: &317 + default: &315 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -42838,23 +42865,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *76 - - &320 + - &318 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *314 - - *315 + - *312 + - *313 responses: '200': description: Response content: application/json: - schema: *316 + schema: *314 examples: - default: *317 + default: *315 x-github: enabledForGitHubApps: true category: orgs @@ -42873,18 +42900,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *76 - - *314 - - *315 - - *318 - - *319 + - *312 + - *313 + - *316 + - *317 responses: '200': description: Response content: application/json: - schema: *316 + schema: *314 examples: - default: *317 + default: *315 x-github: enabledForGitHubApps: true category: orgs @@ -42902,9 +42929,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *76 - - *314 - - *315 - - &321 + - *312 + - *313 + - &319 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -42917,7 +42944,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &320 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -42933,7 +42960,7 @@ paths: type: integer format: int64 examples: - default: &323 + default: &321 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -42970,18 +42997,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *76 - - *320 - - *314 - - *315 - - *321 + - *318 + - *312 + - *313 + - *319 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *323 + default: *321 x-github: enabledForGitHubApps: true category: orgs @@ -42999,19 +43026,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *76 - - *318 + - *316 + - *317 + - *312 + - *313 - *319 - - *314 - - *315 - - *321 responses: '200': description: Response content: application/json: - schema: *322 + schema: *320 examples: - default: *323 + default: *321 x-github: enabledForGitHubApps: true category: orgs @@ -43029,13 +43056,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *76 - - *320 - - *314 - - *315 + - *318 + - *312 + - *313 - *19 - *17 - *99 - - *324 + - *322 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -43119,7 +43146,7 @@ paths: application/json: schema: *20 examples: - default: &613 + default: &611 value: id: 1 account: @@ -43285,12 +43312,12 @@ paths: application/json: schema: anyOf: - - &326 + - &324 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &325 + limit: &323 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -43318,7 +43345,7 @@ paths: properties: {} additionalProperties: false examples: - default: &327 + default: &325 value: limit: collaborators_only origin: organization @@ -43347,13 +43374,13 @@ paths: required: true content: application/json: - schema: &614 + schema: &612 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *325 + limit: *323 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -43378,9 +43405,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: - default: *327 + default: *325 '422': *15 x-github: githubCloudOnly: false @@ -43458,9 +43485,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 '404': *6 @@ -43538,7 +43565,7 @@ paths: description: Response content: application/json: - schema: *328 + schema: *326 examples: default: value: @@ -43595,7 +43622,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *76 - - &330 + - &328 name: invitation_id description: The unique identifier of the invitation. in: path @@ -43629,7 +43656,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *76 - - *330 + - *328 - *17 - *19 responses: @@ -43641,7 +43668,7 @@ paths: type: array items: *273 examples: - default: &345 + default: &343 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -43684,7 +43711,7 @@ paths: application/json: schema: type: array - items: *331 + items: *329 examples: default: value: @@ -43772,9 +43799,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *329 examples: - default: &332 + default: &330 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -43807,7 +43834,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *76 - - &333 + - &331 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -43863,9 +43890,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *329 examples: - default: *332 + default: *330 '404': *6 '422': *7 x-github: @@ -43890,7 +43917,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *76 - - *333 + - *331 responses: '204': description: Response @@ -43953,7 +43980,7 @@ paths: - closed - all default: open - - *334 + - *332 - name: type description: Can be the name of an issue type. in: query @@ -43984,7 +44011,7 @@ paths: type: array items: *183 examples: - default: *335 + default: *333 headers: Link: *41 '404': *6 @@ -44143,9 +44170,9 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: - default: *337 + default: *335 '304': *35 '500': *38 '401': *23 @@ -44172,7 +44199,7 @@ paths: parameters: - *76 - *178 - - &338 + - &336 name: codespace_name in: path required: true @@ -44207,15 +44234,15 @@ paths: parameters: - *76 - *178 - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: &536 + default: &534 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -44471,7 +44498,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &337 title: Org Membership description: Org Membership type: object @@ -44540,7 +44567,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &340 + response-if-user-has-an-active-admin-membership-with-organization: &338 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -44637,9 +44664,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: - response-if-user-already-had-membership-with-organization: *340 + response-if-user-already-had-membership-with-organization: *338 '422': *15 '403': *27 x-github: @@ -44711,7 +44738,7 @@ paths: application/json: schema: type: array - items: &341 + items: &339 title: Migration description: A migration. type: object @@ -45049,7 +45076,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -45228,7 +45255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *76 - - &342 + - &340 name: migration_id description: The unique identifier of the migration. in: path @@ -45256,7 +45283,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -45426,7 +45453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *76 - - *342 + - *340 responses: '302': description: Response @@ -45448,7 +45475,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *76 - - *342 + - *340 responses: '204': description: Response @@ -45472,8 +45499,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *76 - - *342 - - &780 + - *340 + - &778 name: repo_name description: repo_name parameter in: path @@ -45501,7 +45528,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *76 - - *342 + - *340 - *17 - *19 responses: @@ -45513,7 +45540,7 @@ paths: type: array items: *246 examples: - default: &352 + default: &350 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45722,7 +45749,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &343 + items: &341 title: Organization Role description: Organization roles type: object @@ -45931,7 +45958,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46161,7 +46188,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46258,7 +46285,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *341 examples: default: value: @@ -46417,7 +46444,7 @@ paths: parent: anyOf: - type: 'null' - - *344 + - *342 type: description: The ownership type of the team type: string @@ -46450,7 +46477,7 @@ paths: - type - parent examples: - default: *345 + default: *343 headers: Link: *41 '404': @@ -46509,7 +46536,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *344 + items: *342 name: type: - string @@ -46819,7 +46846,7 @@ paths: - nuget - container - *76 - - &782 + - &780 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -46855,12 +46882,12 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *347 + default: *345 '403': *27 '401': *23 - '400': &784 + '400': &782 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46882,7 +46909,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &348 + - &346 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -46900,7 +46927,7 @@ paths: - docker - nuget - container - - &349 + - &347 name: package_name description: The name of the package. in: path @@ -46913,7 +46940,7 @@ paths: description: Response content: application/json: - schema: *346 + schema: *344 examples: default: value: @@ -46965,8 +46992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 responses: '204': @@ -46999,8 +47026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - name: token description: package token @@ -47033,8 +47060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - *19 - *17 @@ -47055,7 +47082,7 @@ paths: application/json: schema: type: array - items: &350 + items: &348 title: Package Version description: A version of a software package type: object @@ -47190,10 +47217,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - &351 + - &349 name: package_version_id description: Unique identifier of the package version. in: path @@ -47205,7 +47232,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -47241,10 +47268,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - *351 + - *349 responses: '204': description: Response @@ -47276,10 +47303,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *348 - - *349 + - *346 + - *347 - *76 - - *351 + - *349 responses: '204': description: Response @@ -47309,7 +47336,7 @@ paths: - *76 - *17 - *19 - - &353 + - &351 name: sort description: The property by which to sort the results. in: query @@ -47320,7 +47347,7 @@ paths: - created_at default: created_at - *99 - - &354 + - &352 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -47332,7 +47359,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &355 + - &353 name: repository description: The name of the repository to use to filter the results. in: query @@ -47341,7 +47368,7 @@ paths: type: string examples: - Hello-World - - &356 + - &354 name: permission description: The permission to use to filter the results. in: query @@ -47350,7 +47377,7 @@ paths: type: string examples: - issues_read - - &357 + - &355 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -47360,7 +47387,7 @@ paths: schema: type: string format: date-time - - &358 + - &356 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -47370,7 +47397,7 @@ paths: schema: type: string format: date-time - - &359 + - &357 name: token_id description: The ID of the token in: query @@ -47689,7 +47716,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -47715,14 +47742,14 @@ paths: - *76 - *17 - *19 - - *353 + - *351 - *99 + - *352 + - *353 - *354 - *355 - *356 - *357 - - *358 - - *359 responses: '500': *38 '422': *15 @@ -48006,7 +48033,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -48048,7 +48075,7 @@ paths: type: integer configurations: type: array - items: &360 + items: &358 title: Organization private registry description: Private registry configuration for an organization type: object @@ -48307,7 +48334,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &361 + org-private-registry-with-selected-visibility: &359 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -48405,9 +48432,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *360 + schema: *358 examples: - default: *361 + default: *359 '404': *6 x-github: githubCloudOnly: false @@ -48572,7 +48599,7 @@ paths: application/json: schema: type: array - items: &362 + items: &360 title: Project description: Projects are a way to organize columns and cards of work. @@ -48754,7 +48781,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: default: value: @@ -48792,7 +48819,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &441 + '410': &439 description: Gone content: application/json: @@ -48835,7 +48862,7 @@ paths: application/json: schema: type: array - items: &363 + items: &361 title: Projects v2 Project description: A projects v2 project type: object @@ -48909,7 +48936,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &857 + - &855 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -48994,7 +49021,7 @@ paths: - deleted_at - deleted_by examples: - default: &364 + default: &362 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -49097,7 +49124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &365 + - &363 name: project_number description: The project's number. in: path @@ -49110,9 +49137,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -49134,7 +49161,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *365 + - *363 - *76 - *17 - *97 @@ -49146,7 +49173,7 @@ paths: application/json: schema: type: array - items: &366 + items: &364 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -49296,7 +49323,7 @@ paths: - updated_at - project_url examples: - default: &367 + default: &365 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -49339,8 +49366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *365 - - &801 + - *363 + - &799 name: field_id description: The unique identifier of the field. in: path @@ -49353,9 +49380,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -49378,7 +49405,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *365 + - *363 - *76 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -49388,8 +49415,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -49397,8 +49426,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 - *97 - *98 - *17 @@ -49409,7 +49436,7 @@ paths: application/json: schema: type: array - items: &372 + items: &370 title: Projects v2 Item description: An item belonging to a project type: object @@ -49426,7 +49453,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: &370 + content_type: &368 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -49483,7 +49510,7 @@ paths: - updated_at - archived_at examples: - default: &373 + default: &371 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -50178,7 +50205,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *76 - - *365 + - *363 requestBody: required: true description: Details of the item to add to the project. @@ -50215,7 +50242,7 @@ paths: description: Response content: application/json: - schema: &802 + schema: &800 title: Projects v2 Item description: An item belonging to a project type: object @@ -50229,7 +50256,7 @@ paths: content: oneOf: - *183 - - &549 + - &547 title: Pull Request Simple description: Pull Request Simple type: object @@ -50349,7 +50376,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 active_lock_reason: type: - string @@ -50448,7 +50475,7 @@ paths: _links: type: object properties: - comments: &369 + comments: &367 title: Link description: Hypermedia Link type: object @@ -50457,13 +50484,13 @@ paths: type: string required: - href - commits: *369 - statuses: *369 - html: *369 - issue: *369 - review_comments: *369 - review_comment: *369 - self: *369 + commits: *367 + statuses: *367 + html: *367 + issue: *367 + review_comments: *367 + review_comment: *367 + self: *367 required: - comments - commits @@ -50474,7 +50501,7 @@ paths: - review_comment - self author_association: *184 - auto_merge: &655 + auto_merge: &653 title: Auto merge description: The status of auto merging a pull request. type: @@ -50576,7 +50603,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: *370 + content_type: *368 creator: *4 created_at: type: string @@ -50613,7 +50640,7 @@ paths: - updated_at - archived_at examples: - issue: &371 + issue: &369 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -50668,7 +50695,7 @@ paths: archived_at: project_url: https://api.github.com/users/octocat/projectsV2/1 item_url: https://api.github.com/users/octocat/projectsV2/items/17 - pull_request: *371 + pull_request: *369 '304': *35 '403': *27 '401': *23 @@ -50688,9 +50715,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *365 + - *363 - *76 - - &374 + - &372 name: item_id description: The unique identifier of the project item. in: path @@ -50714,9 +50741,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -50737,9 +50764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *365 + - *363 - *76 - - *374 + - *372 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -50812,13 +50839,13 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - text_field: *373 - number_field: *373 - date_field: *373 - single_select_field: *373 - iteration_field: *373 + text_field: *371 + number_field: *371 + date_field: *371 + single_select_field: *371 + iteration_field: *371 '401': *23 '403': *27 '404': *6 @@ -50838,9 +50865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *365 + - *363 - *76 - - *374 + - *372 responses: '204': description: Response @@ -51003,7 +51030,7 @@ paths: required: true content: application/json: - schema: *375 + schema: *373 examples: default: value: @@ -51109,7 +51136,7 @@ paths: - octocat/Hello-World properties: type: array - items: &376 + items: &374 title: Custom Property Value description: Custom property name and associated value type: object @@ -51199,7 +51226,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *376 + items: *374 required: - repository_names - properties @@ -51392,7 +51419,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -51596,7 +51623,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &441 title: Full Repository description: Full Repository type: object @@ -52061,7 +52088,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &554 + code_of_conduct: &552 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -52091,7 +52118,7 @@ paths: - key - name - html_url - security_and_analysis: *377 + security_and_analysis: *375 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -52175,7 +52202,7 @@ paths: - network_count - subscribers_count examples: - default: &445 + default: &443 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -52701,9 +52728,9 @@ paths: application/json: schema: type: array - items: *378 + items: *376 examples: - default: *379 + default: *377 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -52728,7 +52755,7 @@ paths: - *76 - *17 - *19 - - &678 + - &676 name: targets description: | A comma-separated list of rule targets to filter by. @@ -52820,11 +52847,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *137 - conditions: *380 + conditions: *378 rules: type: array description: An array of rules within the ruleset. - items: &382 + items: &380 title: Repository Rule type: object description: A repository rule. @@ -52888,7 +52915,7 @@ paths: application/json: schema: *158 examples: - default: &381 + default: &379 value: id: 21 name: super cool ruleset @@ -52943,7 +52970,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *76 - - &680 + - &678 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 @@ -52955,14 +52982,14 @@ paths: x-multi-segment: true - *270 - *94 - - &681 + - &679 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 - - &682 + - &680 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52982,7 +53009,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &681 title: Rule Suites description: Response type: array @@ -53038,7 +53065,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &684 + default: &682 value: - id: 21 actor_id: 12 @@ -53082,7 +53109,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *76 - - &685 + - &683 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -53098,7 +53125,7 @@ paths: description: Response content: application/json: - schema: &686 + schema: &684 title: Rule Suite description: Response type: object @@ -53205,7 +53232,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &687 + default: &685 value: id: 21 actor_id: 12 @@ -53280,7 +53307,7 @@ paths: application/json: schema: *158 examples: - default: *381 + default: *379 '404': *6 '500': *38 put: @@ -53329,11 +53356,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *137 - conditions: *380 + conditions: *378 rules: description: An array of rules within the ruleset. type: array - items: *382 + items: *380 examples: default: value: @@ -53370,7 +53397,7 @@ paths: application/json: schema: *158 examples: - default: *381 + default: *379 '404': *6 '500': *38 delete: @@ -53429,7 +53456,7 @@ paths: type: array items: *162 examples: - default: *383 + default: *381 '404': *6 '500': *38 x-github: @@ -53466,7 +53493,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *382 examples: default: value: @@ -53529,14 +53556,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *76 + - *383 + - *384 - *385 - *386 - - *387 - - *388 - *99 - *19 - *17 - - &689 + - &687 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 @@ -53546,7 +53573,7 @@ paths: required: false schema: type: string - - &690 + - &688 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 @@ -53556,10 +53583,10 @@ paths: required: false schema: type: string + - *387 + - *388 - *389 - *390 - - *391 - - *392 responses: '200': description: Response @@ -53567,9 +53594,9 @@ paths: application/json: schema: type: array - items: *393 + items: *391 examples: - default: *394 + default: *392 headers: Link: *41 '404': *6 @@ -53604,9 +53631,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *393 examples: - default: *396 + default: *394 '403': *27 '404': *6 patch: @@ -53759,7 +53786,7 @@ paths: application/json: schema: type: array - items: &711 + items: &709 description: A repository security advisory. type: object properties: @@ -54003,7 +54030,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 credits_detailed: type: - array @@ -54014,7 +54041,7 @@ paths: type: object properties: user: *4 - type: *397 + type: *395 state: type: string description: The state of the user's acceptance of the @@ -54078,7 +54105,7 @@ paths: - private_fork additionalProperties: false examples: - default: &712 + default: &710 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54465,9 +54492,9 @@ paths: application/json: schema: type: array - items: *344 + items: *342 examples: - default: *345 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54552,9 +54579,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *396 examples: - default: *399 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54579,7 +54606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *76 - - *400 + - *398 - *17 - *19 responses: @@ -54587,9 +54614,9 @@ paths: description: Success content: application/json: - schema: *401 + schema: *399 examples: - default: *402 + default: *400 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -54617,9 +54644,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *401 examples: - default: *404 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54647,9 +54674,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *403 examples: - default: *406 + default: *404 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54932,7 +54959,7 @@ paths: type: array items: *122 examples: - default: *407 + default: *405 headers: Link: *41 x-github: @@ -55133,15 +55160,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *76 - - *408 + - *406 responses: '200': description: Response content: application/json: - schema: *409 + schema: *407 examples: - default: *410 + default: *408 headers: Link: *41 x-github: @@ -55179,7 +55206,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &430 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -55231,7 +55258,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &433 + default: &431 value: groups: - group_id: '123' @@ -55345,7 +55372,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 headers: Link: *41 '403': *27 @@ -55439,7 +55466,7 @@ paths: description: Response content: application/json: - schema: &411 + schema: &409 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -55513,7 +55540,7 @@ paths: parent: anyOf: - type: 'null' - - *344 + - *342 members_count: type: integer examples: @@ -55838,7 +55865,7 @@ paths: - repos_count - organization examples: - default: &412 + default: &410 value: id: 1 node_id: MDQ6VGVhbTE= @@ -55915,9 +55942,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 x-github: githubCloudOnly: false @@ -56002,16 +56029,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '201': description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 '422': *15 '403': *27 @@ -56081,7 +56108,7 @@ paths: application/json: schema: type: array - items: &413 + items: &411 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -56192,7 +56219,7 @@ paths: - updated_at - url examples: - default: &755 + default: &753 value: - author: login: octocat @@ -56301,9 +56328,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: &414 + default: &412 value: author: login: octocat @@ -56377,7 +56404,7 @@ paths: parameters: - *76 - *180 - - &415 + - &413 name: discussion_number description: The number that identifies the discussion. in: path @@ -56389,9 +56416,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56415,7 +56442,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: false content: @@ -56438,9 +56465,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: &756 + default: &754 value: author: login: octocat @@ -56512,7 +56539,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 responses: '204': description: Response @@ -56540,7 +56567,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 - *99 - *17 - *19 @@ -56551,7 +56578,7 @@ paths: application/json: schema: type: array - items: &416 + items: &414 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -56631,7 +56658,7 @@ paths: - updated_at - url examples: - default: &757 + default: &755 value: - author: login: octocat @@ -56701,7 +56728,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: true content: @@ -56723,9 +56750,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: &417 + default: &415 value: author: login: octocat @@ -56793,8 +56820,8 @@ paths: parameters: - *76 - *180 - - *415 - - &418 + - *413 + - &416 name: comment_number description: The number that identifies the comment. in: path @@ -56806,9 +56833,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56832,8 +56859,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 requestBody: required: true content: @@ -56855,9 +56882,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: &758 + default: &756 value: author: login: octocat @@ -56923,8 +56950,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 responses: '204': description: Response @@ -56952,8 +56979,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -56979,7 +57006,7 @@ paths: application/json: schema: type: array - items: &419 + items: &417 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -57023,7 +57050,7 @@ paths: - content - created_at examples: - default: &421 + default: &419 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -57075,8 +57102,8 @@ paths: parameters: - *76 - *180 - - *415 - - *418 + - *413 + - *416 requestBody: required: true content: @@ -57109,9 +57136,9 @@ paths: team discussion comment content: application/json: - schema: *419 + schema: *417 examples: - default: &420 + default: &418 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -57140,9 +57167,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57167,9 +57194,9 @@ paths: parameters: - *76 - *180 - - *415 - - *418 - - &422 + - *413 + - *416 + - &420 name: reaction_id description: The unique identifier of the reaction. in: path @@ -57203,7 +57230,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -57229,9 +57256,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -57259,7 +57286,7 @@ paths: parameters: - *76 - *180 - - *415 + - *413 requestBody: required: true content: @@ -57291,16 +57318,16 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57325,8 +57352,8 @@ paths: parameters: - *76 - *180 - - *415 - - *422 + - *413 + - *420 responses: '204': description: Response @@ -57356,9 +57383,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *421 examples: - default: *424 + default: *422 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -57402,9 +57429,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *423 examples: - default: *426 + default: *424 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -57459,9 +57486,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 x-github: @@ -57545,7 +57572,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &425 title: Team Membership description: Team Membership type: object @@ -57573,7 +57600,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &759 + response-if-user-is-a-team-maintainer: &757 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57636,9 +57663,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-users-membership-with-team-is-now-pending: &760 + response-if-users-membership-with-team-is-now-pending: &758 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57711,7 +57738,7 @@ paths: application/json: schema: type: array - items: &428 + items: &426 title: Team Project description: A team's access to a project. type: object @@ -57780,7 +57807,7 @@ paths: - updated_at - permissions examples: - default: &761 + default: &759 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -57845,7 +57872,7 @@ paths: parameters: - *76 - *180 - - &429 + - &427 name: project_id description: The unique identifier of the project. in: path @@ -57857,9 +57884,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *426 examples: - default: &762 + default: &760 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -57923,7 +57950,7 @@ paths: parameters: - *76 - *180 - - *429 + - *427 requestBody: required: false content: @@ -57992,7 +58019,7 @@ paths: parameters: - *76 - *180 - - *429 + - *427 responses: '204': description: Response @@ -58032,7 +58059,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -58063,14 +58090,14 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &763 + schema: &761 title: Team Repository description: A team's access to a repository. type: object @@ -58713,8 +58740,8 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -58761,8 +58788,8 @@ paths: parameters: - *76 - *180 - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -58795,9 +58822,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: - default: *433 + default: *431 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -58863,7 +58890,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: default: value: @@ -58908,7 +58935,7 @@ paths: type: array items: *273 examples: - response-if-child-teams-exist: &764 + response-if-child-teams-exist: &762 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -59035,7 +59062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &434 + - &432 name: card_id description: The unique identifier of the card. in: path @@ -59047,7 +59074,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &433 title: Project Card description: Project cards represent a scope of work. type: object @@ -59122,7 +59149,7 @@ paths: - created_at - updated_at examples: - default: &436 + default: &434 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -59178,7 +59205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *434 + - *432 requestBody: required: false content: @@ -59208,9 +59235,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *433 examples: - default: *436 + default: *434 '304': *35 '403': *27 '401': *23 @@ -59237,7 +59264,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *434 + - *432 responses: '204': description: Response @@ -59281,7 +59308,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *434 + - *432 requestBody: required: true content: @@ -59394,7 +59421,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &437 + - &435 name: column_id description: The unique identifier of the column. in: path @@ -59406,7 +59433,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &436 title: Project Column description: Project columns contain cards of work. type: object @@ -59460,7 +59487,7 @@ paths: - created_at - updated_at examples: - default: &439 + default: &437 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -59495,7 +59522,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *437 + - *435 requestBody: required: true content: @@ -59520,9 +59547,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *436 examples: - default: *439 + default: *437 '304': *35 '403': *27 '401': *23 @@ -59547,7 +59574,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *437 + - *435 responses: '204': description: Response @@ -59576,7 +59603,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *437 + - *435 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -59597,7 +59624,7 @@ paths: application/json: schema: type: array - items: *435 + items: *433 examples: default: value: @@ -59656,7 +59683,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *437 + - *435 requestBody: required: true content: @@ -59700,9 +59727,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *433 examples: - default: *436 + default: *434 '304': *35 '403': *27 '401': *23 @@ -59758,7 +59785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *437 + - *435 requestBody: required: true content: @@ -59819,15 +59846,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#get-a-project parameters: - - *429 + - *427 responses: '200': description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: &440 + default: &438 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -59884,7 +59911,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#update-a-project parameters: - - *429 + - *427 requestBody: required: false content: @@ -59933,9 +59960,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *440 + default: *438 '404': description: Not Found if the authenticated user does not have access to the project @@ -59956,7 +59983,7 @@ paths: items: type: string '401': *23 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -59979,7 +60006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#delete-a-project parameters: - - *429 + - *427 responses: '204': description: Delete Success @@ -60000,7 +60027,7 @@ paths: items: type: string '401': *23 - '410': *441 + '410': *439 '404': *6 x-github: githubCloudOnly: false @@ -60024,7 +60051,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *429 + - *427 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -60081,7 +60108,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *429 + - *427 - *178 requestBody: required: false @@ -60136,7 +60163,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *429 + - *427 - *178 responses: '204': @@ -60168,7 +60195,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *429 + - *427 - *178 responses: '200': @@ -60239,7 +60266,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#list-project-columns parameters: - - *429 + - *427 - *17 - *19 responses: @@ -60249,7 +60276,7 @@ paths: application/json: schema: type: array - items: *438 + items: *436 examples: default: value: @@ -60287,7 +60314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#create-a-project-column parameters: - - *429 + - *427 requestBody: required: true content: @@ -60311,7 +60338,7 @@ paths: description: Response content: application/json: - schema: *438 + schema: *436 examples: default: value: @@ -60376,7 +60403,7 @@ paths: resources: type: object properties: - core: &442 + core: &440 title: Rate Limit type: object properties: @@ -60393,21 +60420,21 @@ paths: - remaining - reset - used - graphql: *442 - search: *442 - code_search: *442 - source_import: *442 - integration_manifest: *442 - code_scanning_upload: *442 - actions_runner_registration: *442 - scim: *442 - dependency_snapshots: *442 - dependency_sbom: *442 - code_scanning_autofix: *442 + graphql: *440 + search: *440 + code_search: *440 + source_import: *440 + integration_manifest: *440 + code_scanning_upload: *440 + actions_runner_registration: *440 + scim: *440 + dependency_snapshots: *440 + dependency_sbom: *440 + code_scanning_autofix: *440 required: - core - search - rate: *442 + rate: *440 required: - rate - resources @@ -60512,14 +60539,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *443 + schema: *441 examples: default-response: summary: Default response @@ -61024,7 +61051,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *444 + '301': *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61042,8 +61069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -61301,10 +61328,10 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 - '307': &446 + default: *443 + '307': &444 description: Temporary Redirect content: application/json: @@ -61333,8 +61360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -61356,7 +61383,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *446 + '307': *444 '404': *6 '409': *107 x-github: @@ -61380,11 +61407,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - - &461 + - &459 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -61407,7 +61434,7 @@ paths: type: integer artifacts: type: array - items: &447 + items: &445 title: Artifact description: An artifact type: object @@ -61502,7 +61529,7 @@ paths: - expires_at - updated_at examples: - default: &462 + default: &460 value: total_count: 2 artifacts: @@ -61563,9 +61590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *430 - - *431 - - &448 + - *428 + - *429 + - &446 name: artifact_id description: The unique identifier of the artifact. in: path @@ -61577,7 +61604,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *445 examples: default: value: @@ -61615,9 +61642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *430 - - *431 - - *448 + - *428 + - *429 + - *446 responses: '204': description: Response @@ -61641,9 +61668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *430 - - *431 - - *448 + - *428 + - *429 + - *446 - name: archive_format in: path required: true @@ -61657,7 +61684,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61680,14 +61707,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *449 + schema: *447 examples: default: value: @@ -61713,11 +61740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - - &450 + - &448 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -61751,7 +61778,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &449 title: Repository actions caches description: Repository actions caches type: object @@ -61801,7 +61828,7 @@ paths: - total_count - actions_caches examples: - default: &452 + default: &450 value: total_count: 1 actions_caches: @@ -61833,23 +61860,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *430 - - *431 + - *428 + - *429 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *450 + - *448 responses: '200': description: Response content: application/json: - schema: *451 + schema: *449 examples: - default: *452 + default: *450 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61869,8 +61896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *430 - - *431 + - *428 + - *429 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -61901,9 +61928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *430 - - *431 - - &453 + - *428 + - *429 + - &451 name: job_id description: The unique identifier of the job. in: path @@ -61915,7 +61942,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &463 title: Job description: Information of a job execution in a workflow run type: object @@ -62262,9 +62289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *430 - - *431 - - *453 + - *428 + - *429 + - *451 responses: '302': description: Response @@ -62292,9 +62319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *430 - - *431 - - *453 + - *428 + - *429 + - *451 requestBody: required: false content: @@ -62340,8 +62367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Status response @@ -62391,8 +62418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -62455,8 +62482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -62474,7 +62501,7 @@ paths: type: integer secrets: type: array - items: &467 + items: &465 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -62495,7 +62522,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &466 value: total_count: 2 secrets: @@ -62528,9 +62555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *430 - - *431 - - *454 + - *428 + - *429 + - *452 - *19 responses: '200': @@ -62547,7 +62574,7 @@ paths: type: integer variables: type: array - items: &471 + items: &469 title: Actions Variable type: object properties: @@ -62581,7 +62608,7 @@ paths: - created_at - updated_at examples: - default: &472 + default: &470 value: total_count: 2 variables: @@ -62614,8 +62641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62624,7 +62651,7 @@ paths: schema: type: object properties: - enabled: &455 + enabled: &453 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *49 @@ -62659,8 +62686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -62671,7 +62698,7 @@ paths: schema: type: object properties: - enabled: *455 + enabled: *453 allowed_actions: *49 sha_pinning_required: *50 required: @@ -62704,14 +62731,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &456 + schema: &454 type: object properties: access_level: @@ -62729,7 +62756,7 @@ paths: required: - access_level examples: - default: &457 + default: &455 value: access_level: organization x-github: @@ -62754,15 +62781,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: application/json: - schema: *456 + schema: *454 examples: - default: *457 + default: *455 responses: '204': description: Response @@ -62786,8 +62813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62817,8 +62844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Empty response for successful settings update @@ -62852,8 +62879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62880,8 +62907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -62915,8 +62942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -62944,8 +62971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -62976,8 +63003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63008,8 +63035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -63041,8 +63068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63071,8 +63098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Success response @@ -63112,8 +63139,8 @@ paths: in: query schema: type: string - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -63157,8 +63184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -63190,8 +63217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -63265,8 +63292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -63302,8 +63329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -63333,8 +63360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': @@ -63364,8 +63391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '204': @@ -63392,8 +63419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': *70 @@ -63418,8 +63445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 requestBody: required: true @@ -63468,8 +63495,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 requestBody: required: true @@ -63519,8 +63546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 responses: '200': *253 @@ -63550,8 +63577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *64 - *254 responses: @@ -63581,9 +63608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *430 - - *431 - - &475 + - *428 + - *429 + - &473 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -63591,7 +63618,7 @@ paths: required: false schema: type: string - - &476 + - &474 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -63599,7 +63626,7 @@ paths: required: false schema: type: string - - &477 + - &475 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -63608,7 +63635,7 @@ paths: required: false schema: type: string - - &478 + - &476 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -63635,7 +63662,7 @@ paths: - pending - *17 - *19 - - &479 + - &477 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -63644,7 +63671,7 @@ paths: schema: type: string format: date-time - - &458 + - &456 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -63653,13 +63680,13 @@ paths: schema: type: boolean default: false - - &480 + - &478 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &481 + - &479 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -63682,7 +63709,7 @@ paths: type: integer workflow_runs: type: array - items: &459 + items: &457 title: Workflow Run description: An invocation of a workflow type: object @@ -63860,7 +63887,7 @@ paths: head_commit: anyOf: - type: 'null' - - &503 + - &501 title: Simple Commit description: A commit. type: object @@ -63975,7 +64002,7 @@ paths: - workflow_url - pull_requests examples: - default: &482 + default: &480 value: total_count: 1 workflow_runs: @@ -64211,24 +64238,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *430 - - *431 - - &460 + - *428 + - *429 + - &458 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *458 + - *456 responses: '200': description: Response content: application/json: - schema: *459 + schema: *457 examples: - default: &463 + default: &461 value: id: 30433642 name: Build @@ -64469,9 +64496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '204': description: Response @@ -64494,9 +64521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -64624,9 +64651,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '201': description: Response @@ -64659,12 +64686,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 - *17 - *19 - - *461 + - *459 responses: '200': description: Response @@ -64680,9 +64707,9 @@ paths: type: integer artifacts: type: array - items: *447 + items: *445 examples: - default: *462 + default: *460 headers: Link: *41 x-github: @@ -64706,25 +64733,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *430 - - *431 - - *460 - - &464 + - *428 + - *429 + - *458 + - &462 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *458 + - *456 responses: '200': description: Response content: application/json: - schema: *459 + schema: *457 examples: - default: *463 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64747,10 +64774,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *430 - - *431 - - *460 - - *464 + - *428 + - *429 + - *458 + - *462 - *17 - *19 responses: @@ -64768,9 +64795,9 @@ paths: type: integer jobs: type: array - items: *465 + items: *463 examples: - default: &466 + default: &464 value: total_count: 1 jobs: @@ -64883,10 +64910,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *430 - - *431 - - *460 - - *464 + - *428 + - *429 + - *458 + - *462 responses: '302': description: Response @@ -64914,9 +64941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '202': description: Response @@ -64949,9 +64976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: true content: @@ -65018,9 +65045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '202': description: Response @@ -65053,9 +65080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -65085,9 +65112,9 @@ paths: type: integer jobs: type: array - items: *465 + items: *463 examples: - default: *466 + default: *464 headers: Link: *41 x-github: @@ -65112,9 +65139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '302': description: Response @@ -65141,9 +65168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '204': description: Response @@ -65170,9 +65197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -65241,7 +65268,7 @@ paths: items: type: object properties: - type: &583 + type: &581 type: string description: The type of reviewer. enum: @@ -65327,9 +65354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: true content: @@ -65379,7 +65406,7 @@ paths: application/json: schema: type: array - items: &569 + items: &567 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -65491,7 +65518,7 @@ paths: - created_at - updated_at examples: - default: &570 + default: &568 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -65547,9 +65574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: false content: @@ -65594,9 +65621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 requestBody: required: false content: @@ -65651,9 +65678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *430 - - *431 - - *460 + - *428 + - *429 + - *458 responses: '200': description: Response @@ -65790,8 +65817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -65809,9 +65836,9 @@ paths: type: integer secrets: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *41 x-github: @@ -65836,16 +65863,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *469 + schema: *467 examples: - default: *470 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65867,17 +65894,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *467 + schema: *465 examples: - default: &596 + default: &594 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -65903,8 +65930,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -65962,8 +65989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -65989,9 +66016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *430 - - *431 - - *454 + - *428 + - *429 + - *452 - *19 responses: '200': @@ -66008,9 +66035,9 @@ paths: type: integer variables: type: array - items: *471 + items: *469 examples: - default: *472 + default: *470 headers: Link: *41 x-github: @@ -66033,8 +66060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -66086,17 +66113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 responses: '200': description: Response content: application/json: - schema: *471 + schema: *469 examples: - default: &597 + default: &595 value: name: USERNAME value: octocat @@ -66122,8 +66149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 requestBody: required: true @@ -66166,8 +66193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 responses: '204': @@ -66193,8 +66220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -66212,7 +66239,7 @@ paths: type: integer workflows: type: array - items: &473 + items: &471 title: Workflow description: A GitHub Actions workflow type: object @@ -66330,9 +66357,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *430 - - *431 - - &474 + - *428 + - *429 + - &472 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -66347,7 +66374,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *471 examples: default: value: @@ -66380,9 +66407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66407,9 +66434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66460,9 +66487,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '204': description: Response @@ -66489,19 +66516,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *430 - - *431 + - *428 + - *429 + - *472 + - *473 - *474 - *475 - *476 - - *477 - - *478 - *17 - *19 + - *477 + - *456 + - *478 - *479 - - *458 - - *480 - - *481 responses: '200': description: Response @@ -66517,9 +66544,9 @@ paths: type: integer workflow_runs: type: array - items: *459 + items: *457 examples: - default: *482 + default: *480 headers: Link: *41 x-github: @@ -66552,9 +66579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *430 - - *431 - - *474 + - *428 + - *429 + - *472 responses: '200': description: Response @@ -66615,8 +66642,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *430 - - *431 + - *428 + - *429 - *99 - *17 - *97 @@ -66784,8 +66811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -66822,8 +66849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *430 - - *431 + - *428 + - *429 - name: assignee in: path required: true @@ -66859,8 +66886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -66972,8 +66999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *97 - *98 @@ -67029,7 +67056,7 @@ paths: initiator: type: string examples: - default: *483 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67049,8 +67076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -67058,7 +67085,7 @@ paths: application/json: schema: type: array - items: &484 + items: &482 title: Autolink reference description: An autolink reference. type: object @@ -67117,8 +67144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -67157,9 +67184,9 @@ paths: description: response content: application/json: - schema: *484 + schema: *482 examples: - default: &485 + default: &483 value: id: 1 key_prefix: TICKET- @@ -67190,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *430 - - *431 - - &486 + - *428 + - *429 + - &484 name: autolink_id description: The unique identifier of the autolink. in: path @@ -67204,9 +67231,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *482 examples: - default: *485 + default: *483 '404': *6 x-github: githubCloudOnly: false @@ -67226,9 +67253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *430 - - *431 - - *486 + - *428 + - *429 + - *484 responses: '204': description: Response @@ -67252,8 +67279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response if Dependabot is enabled @@ -67303,8 +67330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -67325,8 +67352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -67346,8 +67373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *430 - - *431 + - *428 + - *429 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -67385,7 +67412,7 @@ paths: - url protected: type: boolean - protection: &488 + protection: &486 title: Branch Protection description: Branch Protection type: object @@ -67428,7 +67455,7 @@ paths: required: - contexts - checks - enforce_admins: &491 + enforce_admins: &489 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -67445,7 +67472,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &493 + required_pull_request_reviews: &491 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -67529,7 +67556,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &490 + restrictions: &488 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -67822,9 +67849,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *430 - - *431 - - &489 + - *428 + - *429 + - &487 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -67838,14 +67865,14 @@ paths: description: Response content: application/json: - schema: &499 + schema: &497 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &545 + commit: &543 title: Commit description: Commit type: object @@ -67884,7 +67911,7 @@ paths: author: anyOf: - type: 'null' - - &487 + - &485 title: Git User description: Metaproperties for Git author/committer information. @@ -67905,7 +67932,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 message: type: string examples: @@ -67929,7 +67956,7 @@ paths: required: - sha - url - verification: &603 + verification: &601 title: Verification type: object properties: @@ -68009,7 +68036,7 @@ paths: type: integer files: type: array - items: &556 + items: &554 title: Diff Entry description: Diff Entry type: object @@ -68105,7 +68132,7 @@ paths: - self protected: type: boolean - protection: *488 + protection: *486 protection_url: type: string format: uri @@ -68214,7 +68241,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *444 + '301': *442 '404': *6 x-github: githubCloudOnly: false @@ -68236,15 +68263,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *488 + schema: *486 examples: default: value: @@ -68438,9 +68465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -68700,7 +68727,7 @@ paths: url: type: string format: uri - required_status_checks: &496 + required_status_checks: &494 title: Status Check Policy description: Status Check Policy type: object @@ -68859,7 +68886,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *490 + restrictions: *488 required_conversation_resolution: type: object properties: @@ -68971,9 +68998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -68998,17 +69025,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: &492 + default: &490 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -69030,17 +69057,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: *492 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69059,9 +69086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69086,17 +69113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: &494 + default: &492 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -69192,9 +69219,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69292,9 +69319,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *491 examples: - default: *494 + default: *492 '422': *15 x-github: githubCloudOnly: false @@ -69315,9 +69342,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69344,17 +69371,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: &495 + default: &493 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -69377,17 +69404,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *491 + schema: *489 examples: - default: *495 + default: *493 '404': *6 x-github: githubCloudOnly: false @@ -69407,9 +69434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69434,17 +69461,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: &497 + default: &495 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -69470,9 +69497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69524,9 +69551,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *494 examples: - default: *497 + default: *495 '404': *6 '422': *15 x-github: @@ -69548,9 +69575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69574,9 +69601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -69610,9 +69637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69679,9 +69706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -69745,9 +69772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: content: application/json: @@ -69813,15 +69840,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response content: application/json: - schema: *490 + schema: *488 examples: default: value: @@ -69912,9 +69939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '204': description: Response @@ -69937,9 +69964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -69949,7 +69976,7 @@ paths: type: array items: *5 examples: - default: &498 + default: &496 value: - id: 1 slug: octoapp @@ -70006,9 +70033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70042,7 +70069,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70063,9 +70090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70099,7 +70126,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70120,9 +70147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70156,7 +70183,7 @@ paths: type: array items: *5 examples: - default: *498 + default: *496 '422': *15 x-github: githubCloudOnly: false @@ -70178,9 +70205,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -70190,7 +70217,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '404': *6 x-github: githubCloudOnly: false @@ -70210,9 +70237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -70250,7 +70277,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70271,9 +70298,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: false content: @@ -70311,7 +70338,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70332,9 +70359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: content: application/json: @@ -70371,7 +70398,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 '422': *15 x-github: githubCloudOnly: false @@ -70393,9 +70420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 responses: '200': description: Response @@ -70429,9 +70456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70489,9 +70516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70549,9 +70576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70611,9 +70638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 requestBody: required: true content: @@ -70635,7 +70662,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *497 examples: default: value: @@ -70749,8 +70776,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 @@ -70786,8 +70813,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -70860,8 +70887,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 @@ -70901,8 +70928,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -70972,8 +70999,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_request_number in: path required: true @@ -71044,8 +71071,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *430 - - *431 + - *428 + - *429 - name: bypass_response_id in: path required: true @@ -71078,8 +71105,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -71358,7 +71385,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &498 title: CheckRun description: A check performed on the code of a given code change type: object @@ -71494,7 +71521,7 @@ paths: check. type: array items: *187 - deployment: &818 + deployment: &816 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -71781,9 +71808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *430 - - *431 - - &501 + - *428 + - *429 + - &499 name: check_run_id description: The unique identifier of the check run. in: path @@ -71795,9 +71822,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: - default: &502 + default: &500 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -71897,9 +71924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 requestBody: required: true content: @@ -72139,9 +72166,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *498 examples: - default: *502 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72161,9 +72188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 - *17 - *19 responses: @@ -72273,9 +72300,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *430 - - *431 - - *501 + - *428 + - *429 + - *499 responses: '201': description: Response @@ -72319,8 +72346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -72342,7 +72369,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &504 + schema: &502 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -72440,7 +72467,7 @@ paths: - string - 'null' format: date-time - head_commit: *503 + head_commit: *501 latest_check_runs_count: type: integer check_runs_url: @@ -72468,7 +72495,7 @@ paths: - check_runs_url - pull_requests examples: - default: &505 + default: &503 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -72759,9 +72786,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *504 + schema: *502 examples: - default: *505 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72780,8 +72807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -73090,9 +73117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *430 - - *431 - - &506 + - *428 + - *429 + - &504 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -73104,9 +73131,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *502 examples: - default: *505 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73129,17 +73156,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *430 - - *431 - - *506 - - &551 + - *428 + - *429 + - *504 + - &549 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &552 + - &550 name: status description: Returns check runs with the specified `status`. in: query @@ -73178,9 +73205,9 @@ paths: type: integer check_runs: type: array - items: *500 + items: *498 examples: - default: &553 + default: &551 value: total_count: 1 check_runs: @@ -73282,9 +73309,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *430 - - *431 - - *506 + - *428 + - *429 + - *504 responses: '201': description: Response @@ -73317,21 +73344,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *277 - *278 - *19 - *17 - - &522 + - &520 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *507 - - &523 + schema: *505 + - &521 name: pr description: The number of the pull request for the results you want to list. in: query @@ -73362,7 +73389,7 @@ paths: be returned. in: query required: false - schema: *508 + schema: *506 responses: '200': description: Response @@ -73378,7 +73405,7 @@ paths: updated_at: *117 url: *114 html_url: *115 - instances_url: *509 + instances_url: *507 state: *102 fixed_at: *119 dismissed_by: @@ -73386,11 +73413,11 @@ paths: - type: 'null' - *4 dismissed_at: *118 - dismissed_reason: *510 - dismissed_comment: *511 - rule: *512 - tool: *513 - most_recent_instance: *514 + dismissed_reason: *508 + dismissed_comment: *509 + rule: *510 + tool: *511 + most_recent_instance: *512 dismissal_approved_by: anyOf: - type: 'null' @@ -73513,7 +73540,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &515 + '403': &513 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -73540,9 +73567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *430 - - *431 - - &516 + - *428 + - *429 + - &514 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -73556,7 +73583,7 @@ paths: description: Response content: application/json: - schema: &517 + schema: &515 type: object properties: number: *109 @@ -73564,7 +73591,7 @@ paths: updated_at: *117 url: *114 html_url: *115 - instances_url: *509 + instances_url: *507 state: *102 fixed_at: *119 dismissed_by: @@ -73572,8 +73599,8 @@ paths: - type: 'null' - *4 dismissed_at: *118 - dismissed_reason: *510 - dismissed_comment: *511 + dismissed_reason: *508 + dismissed_comment: *509 rule: type: object properties: @@ -73635,8 +73662,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *513 - most_recent_instance: *514 + tool: *511 + most_recent_instance: *512 dismissal_approved_by: anyOf: - type: 'null' @@ -73732,7 +73759,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -73752,9 +73779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: true content: @@ -73769,8 +73796,8 @@ paths: enum: - open - dismissed - dismissed_reason: *510 - dismissed_comment: *511 + dismissed_reason: *508 + dismissed_comment: *509 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -73789,7 +73816,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *515 examples: default: value: @@ -73865,7 +73892,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &521 + '403': &519 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -73892,15 +73919,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 responses: '200': description: Response content: application/json: - schema: &518 + schema: &516 type: object properties: status: @@ -73927,13 +73954,13 @@ paths: - description - started_at examples: - default: &519 + default: &517 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &520 + '400': &518 description: Bad Request content: application/json: @@ -73944,7 +73971,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -73969,29 +73996,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 responses: '200': description: OK content: application/json: - schema: *518 + schema: *516 examples: - default: *519 + default: *517 '202': description: Accepted content: application/json: - schema: *518 + schema: *516 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *520 + '400': *518 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -74023,9 +74050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: false content: @@ -74071,8 +74098,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *520 - '403': *521 + '400': *518 + '403': *519 '404': *6 '422': description: Unprocessable Entity @@ -74096,13 +74123,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 - *19 - *17 - - *522 - - *523 + - *520 + - *521 responses: '200': description: Response @@ -74110,7 +74137,7 @@ paths: application/json: schema: type: array - items: *514 + items: *512 examples: default: value: @@ -74149,7 +74176,7 @@ paths: end_column: 50 classifications: - source - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74183,25 +74210,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *277 - *278 - *19 - *17 - - *523 + - *521 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *507 + schema: *505 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &526 + schema: &524 type: string description: An identifier for the upload. examples: @@ -74223,23 +74250,23 @@ paths: application/json: schema: type: array - items: &527 + items: &525 type: object properties: - ref: *507 - commit_sha: &535 + ref: *505 + commit_sha: &533 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *524 + analysis_key: *522 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *525 + category: *523 error: type: string examples: @@ -74264,8 +74291,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *526 - tool: *513 + sarif_id: *524 + tool: *511 deletable: type: boolean warning: @@ -74327,7 +74354,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74363,8 +74390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74377,7 +74404,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *525 examples: response: summary: application/json response @@ -74431,7 +74458,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *515 + '403': *513 '404': *6 '422': description: Response if analysis could not be processed @@ -74518,8 +74545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74575,7 +74602,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *521 + '403': *519 '404': *6 '503': *163 x-github: @@ -74597,8 +74624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -74606,7 +74633,7 @@ paths: application/json: schema: type: array - items: &528 + items: &526 title: CodeQL Database description: A CodeQL database. type: object @@ -74718,7 +74745,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74747,8 +74774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: language in: path description: The language of the CodeQL database. @@ -74760,7 +74787,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *526 examples: default: value: @@ -74792,9 +74819,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &558 + '302': &556 description: Found - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -74816,8 +74843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *430 - - *431 + - *428 + - *429 - name: language in: path description: The language of the CodeQL database. @@ -74827,7 +74854,7 @@ paths: responses: '204': description: Response - '403': *521 + '403': *519 '404': *6 '503': *163 x-github: @@ -74855,8 +74882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -74865,7 +74892,7 @@ paths: type: object additionalProperties: false properties: - language: &529 + language: &527 type: string description: The language targeted by the CodeQL query enum: @@ -74944,7 +74971,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &533 + schema: &531 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -74954,7 +74981,7 @@ paths: description: The ID of the variant analysis. controller_repo: *108 actor: *4 - query_language: *529 + query_language: *527 query_pack_url: type: string description: The download url for the query pack. @@ -75002,7 +75029,7 @@ paths: items: type: object properties: - repository: &530 + repository: &528 title: Repository Identifier description: Repository Identifier type: object @@ -75044,7 +75071,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &534 + analysis_status: &532 type: string description: The new status of the CodeQL variant analysis repository task. @@ -75076,7 +75103,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &531 + access_mismatch_repos: &529 type: object properties: repository_count: @@ -75091,7 +75118,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *530 + items: *528 required: - repository_count - repositories @@ -75114,8 +75141,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *531 - over_limit_repos: *531 + no_codeql_db_repos: *529 + over_limit_repos: *529 required: - access_mismatch_repos - not_found_repos @@ -75131,7 +75158,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &532 + value: &530 summary: Default response value: id: 1 @@ -75283,10 +75310,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *532 + value: *530 repository_lists: summary: Response for a successful variant analysis submission - value: *532 + value: *530 '404': *6 '422': description: Unable to process variant analysis submission @@ -75314,8 +75341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *430 - - *431 + - *428 + - *429 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -75327,9 +75354,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *531 examples: - default: *532 + default: *530 '404': *6 '503': *163 x-github: @@ -75352,7 +75379,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *430 + - *428 - name: repo in: path description: The name of the controller repository. @@ -75387,7 +75414,7 @@ paths: type: object properties: repository: *108 - analysis_status: *534 + analysis_status: *532 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -75512,8 +75539,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -75606,7 +75633,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *515 + '403': *513 '404': *6 '503': *163 x-github: @@ -75627,8 +75654,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -75722,7 +75749,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *521 + '403': *519 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75793,8 +75820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -75802,7 +75829,7 @@ paths: schema: type: object properties: - commit_sha: *535 + commit_sha: *533 ref: type: string description: |- @@ -75862,7 +75889,7 @@ paths: schema: type: object properties: - id: *526 + id: *524 url: type: string description: The REST API URL for checking the status of the upload. @@ -75876,7 +75903,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *521 + '403': *519 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -75899,8 +75926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *430 - - *431 + - *428 + - *429 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -75948,7 +75975,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *515 + '403': *513 '404': description: Not Found if the sarif id does not match any upload '503': *163 @@ -75973,8 +76000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76055,8 +76082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -76184,8 +76211,8 @@ paths: parameters: - *17 - *19 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76201,7 +76228,7 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: default: value: @@ -76499,8 +76526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -76564,17 +76591,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '400': *14 '401': *23 '403': *27 @@ -76603,8 +76630,8 @@ paths: parameters: - *17 - *19 - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -76668,8 +76695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76706,9 +76733,9 @@ paths: type: integer machines: type: array - items: *537 + items: *535 examples: - default: &771 + default: &769 value: total_count: 2 machines: @@ -76748,8 +76775,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -76836,8 +76863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -76906,8 +76933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -76925,7 +76952,7 @@ paths: type: integer secrets: type: array - items: &541 + items: &539 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -76946,7 +76973,7 @@ paths: - created_at - updated_at examples: - default: *538 + default: *536 headers: Link: *41 x-github: @@ -76969,16 +76996,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *539 + schema: *537 examples: - default: *540 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -76998,17 +77025,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *541 + schema: *539 examples: - default: *542 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77028,8 +77055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -77082,8 +77109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -77112,8 +77139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *430 - - *431 + - *428 + - *429 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -77151,7 +77178,7 @@ paths: application/json: schema: type: array - items: &543 + items: &541 title: Collaborator description: Collaborator type: object @@ -77344,8 +77371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '204': @@ -77392,8 +77419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 requestBody: required: false @@ -77420,7 +77447,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &616 + schema: &614 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77648,8 +77675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '204': @@ -77681,8 +77708,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *430 - - *431 + - *428 + - *429 - *178 responses: '200': @@ -77703,7 +77730,7 @@ paths: user: anyOf: - type: 'null' - - *543 + - *541 required: - permission - role_name @@ -77757,8 +77784,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -77768,7 +77795,7 @@ paths: application/json: schema: type: array - items: &544 + items: &542 title: Commit Comment description: Commit Comment type: object @@ -77826,7 +77853,7 @@ paths: - created_at - updated_at examples: - default: &547 + default: &545 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77885,17 +77912,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *544 + schema: *542 examples: - default: &548 + default: &546 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77952,8 +77979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -77976,7 +78003,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *542 examples: default: value: @@ -78027,8 +78054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -78050,8 +78077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -78078,9 +78105,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -78101,8 +78128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -78135,16 +78162,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -78166,10 +78193,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -78218,8 +78245,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *430 - - *431 + - *428 + - *429 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -78275,9 +78302,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: &662 + default: &660 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78371,9 +78398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *430 - - *431 - - &546 + - *428 + - *429 + - &544 name: commit_sha description: The SHA of the commit. in: path @@ -78445,9 +78472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 - *17 - *19 responses: @@ -78457,9 +78484,9 @@ paths: application/json: schema: type: array - items: *544 + items: *542 examples: - default: *547 + default: *545 headers: Link: *41 x-github: @@ -78487,9 +78514,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 requestBody: required: true content: @@ -78524,9 +78551,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *542 examples: - default: *548 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78554,9 +78581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 - *17 - *19 responses: @@ -78566,9 +78593,9 @@ paths: application/json: schema: type: array - items: *549 + items: *547 examples: - default: &654 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79105,11 +79132,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 - - &550 + - &548 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -79124,9 +79151,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *543 examples: - default: &642 + default: &640 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79239,11 +79266,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *430 - - *431 + - *428 + - *429 + - *548 + - *549 - *550 - - *551 - - *552 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -79277,9 +79304,9 @@ paths: type: integer check_runs: type: array - items: *500 + items: *498 examples: - default: *553 + default: *551 headers: Link: *41 x-github: @@ -79304,9 +79331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -79314,7 +79341,7 @@ paths: schema: type: integer example: 1 - - *551 + - *549 - *17 - *19 responses: @@ -79332,7 +79359,7 @@ paths: type: integer check_suites: type: array - items: *504 + items: *502 examples: default: value: @@ -79532,9 +79559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - *17 - *19 responses: @@ -79736,9 +79763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *430 - - *431 - - *550 + - *428 + - *429 + - *548 - *17 - *19 responses: @@ -79748,7 +79775,7 @@ paths: application/json: schema: type: array - items: &716 + items: &714 title: Status description: The status of a commit. type: object @@ -79829,7 +79856,7 @@ paths: site_admin: false headers: Link: *41 - '301': *444 + '301': *442 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79857,8 +79884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -79891,11 +79918,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *554 + - *552 code_of_conduct_file: anyOf: - type: 'null' - - &555 + - &553 title: Community Health File type: object properties: @@ -79915,19 +79942,19 @@ paths: contributing: anyOf: - type: 'null' - - *555 + - *553 readme: anyOf: - type: 'null' - - *555 + - *553 issue_template: anyOf: - type: 'null' - - *555 + - *553 pull_request_template: anyOf: - type: 'null' - - *555 + - *553 required: - code_of_conduct - code_of_conduct_file @@ -80056,8 +80083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 - name: basehead @@ -80105,8 +80132,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *545 - merge_base_commit: *545 + base_commit: *543 + merge_base_commit: *543 status: type: string enum: @@ -80130,10 +80157,10 @@ paths: - 6 commits: type: array - items: *545 + items: *543 files: type: array - items: *556 + items: *554 required: - url - html_url @@ -80419,8 +80446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -80573,7 +80600,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &557 + response-if-content-is-a-file: &555 summary: Response if content is a file value: type: file @@ -80710,7 +80737,7 @@ paths: - size - type - url - - &667 + - &665 title: Content File description: Content File type: object @@ -80928,7 +80955,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *557 + response-if-content-is-a-file: *555 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -80997,7 +81024,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *558 + '302': *556 '304': *35 x-github: githubCloudOnly: false @@ -81020,8 +81047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -81116,7 +81143,7 @@ paths: description: Response content: application/json: - schema: &559 + schema: &557 title: File Commit description: File Commit type: object @@ -81272,7 +81299,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: example-for-creating-a-file: value: @@ -81326,7 +81353,7 @@ paths: schema: oneOf: - *3 - - &598 + - &596 description: Repository rule violation was detected type: object properties: @@ -81347,7 +81374,7 @@ paths: items: type: object properties: - placeholder_id: &708 + placeholder_id: &706 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -81379,8 +81406,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *430 - - *431 + - *428 + - *429 - name: path description: path parameter in: path @@ -81441,7 +81468,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *557 examples: default: value: @@ -81496,8 +81523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *430 - - *431 + - *428 + - *429 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81621,8 +81648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *294 - *295 - *296 @@ -81634,18 +81661,10 @@ paths: schema: type: string - *298 - - *560 + - *558 - *299 - *300 - *99 - - name: page - description: "**Closing down notice**. Page number of the results to fetch. - Use cursor-based pagination with `before` or `after` instead." - deprecated: true - in: query - schema: - type: integer - default: 1 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -81656,8 +81675,6 @@ paths: default: 30 - *97 - *98 - - *301 - - *302 responses: '200': description: Response @@ -81665,7 +81682,7 @@ paths: application/json: schema: type: array - items: &563 + items: &561 type: object description: A Dependabot alert. properties: @@ -81715,7 +81732,7 @@ paths: - direct - transitive - - security_advisory: *561 + security_advisory: *559 security_vulnerability: *113 url: *114 html_url: *115 @@ -81746,7 +81763,7 @@ paths: dismissal. maxLength: 280 fixed_at: *119 - auto_dismissed_at: *562 + auto_dismissed_at: *560 required: - number - state @@ -81976,9 +81993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *430 - - *431 - - &564 + - *428 + - *429 + - &562 name: alert_number in: path description: |- @@ -81993,7 +82010,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *561 examples: default: value: @@ -82106,9 +82123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *430 - - *431 - - *564 + - *428 + - *429 + - *562 requestBody: required: true content: @@ -82153,7 +82170,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *561 examples: default: value: @@ -82282,8 +82299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -82301,7 +82318,7 @@ paths: type: integer secrets: type: array - items: &567 + items: &565 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82355,16 +82372,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *565 + schema: *563 examples: - default: *566 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82384,15 +82401,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '200': description: Response content: application/json: - schema: *567 + schema: *565 examples: default: value: @@ -82418,8 +82435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 requestBody: required: true @@ -82472,8 +82489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *430 - - *431 + - *428 + - *429 - *256 responses: '204': @@ -82496,8 +82513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *430 - - *431 + - *428 + - *429 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -82671,8 +82688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -82932,8 +82949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -83016,7 +83033,7 @@ paths: - version - url additionalProperties: false - metadata: &568 + metadata: &566 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83055,7 +83072,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *568 + metadata: *566 resolved: type: object description: A collection of resolved package dependencies. @@ -83069,7 +83086,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *568 + metadata: *566 relationship: type: string description: A notation of whether a dependency is requested @@ -83202,8 +83219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *430 - - *431 + - *428 + - *429 - name: sha description: The SHA recorded at creation time. in: query @@ -83244,9 +83261,9 @@ paths: application/json: schema: type: array - items: *569 + items: *567 examples: - default: *570 + default: *568 headers: Link: *41 x-github: @@ -83312,8 +83329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -83395,7 +83412,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *567 examples: simple-example: summary: Simple example @@ -83468,9 +83485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *430 - - *431 - - &571 + - *428 + - *429 + - &569 name: deployment_id description: deployment_id parameter in: path @@ -83482,7 +83499,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *567 examples: default: value: @@ -83547,9 +83564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 responses: '204': description: Response @@ -83571,9 +83588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 - *17 - *19 responses: @@ -83583,7 +83600,7 @@ paths: application/json: schema: type: array - items: &572 + items: &570 title: Deployment Status description: The status of a deployment. type: object @@ -83747,9 +83764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 requestBody: required: true content: @@ -83824,9 +83841,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *570 examples: - default: &573 + default: &571 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83882,9 +83899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *430 - - *431 - - *571 + - *428 + - *429 + - *569 - name: status_id in: path required: true @@ -83895,9 +83912,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *570 examples: - default: *573 + default: *571 '404': *6 x-github: githubCloudOnly: false @@ -83924,12 +83941,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 + - *572 + - *573 - *574 - *575 - - *576 - - *577 - *17 - *19 responses: @@ -83939,9 +83956,9 @@ paths: application/json: schema: type: array - items: *578 + items: *576 examples: - default: *579 + default: *577 '404': *6 '403': *27 '500': *38 @@ -83965,8 +83982,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -83978,7 +83995,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -84034,8 +84051,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84094,12 +84111,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - *92 - *93 - *94 - - *580 + - *578 - *17 - *19 responses: @@ -84109,9 +84126,9 @@ paths: application/json: schema: type: array - items: *581 + items: *579 examples: - default: *582 + default: *580 '404': *6 '403': *27 '500': *38 @@ -84136,8 +84153,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84149,7 +84166,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *581 + schema: *579 examples: default: value: @@ -84207,8 +84224,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: alert_number in: path required: true @@ -84277,8 +84294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -84335,8 +84352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -84354,7 +84371,7 @@ paths: - 5 environments: type: array - items: &584 + items: &582 title: Environment description: Details of a deployment environment type: object @@ -84416,7 +84433,7 @@ paths: type: string examples: - wait_timer - wait_timer: &586 + wait_timer: &584 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -84458,7 +84475,7 @@ paths: items: type: object properties: - type: *583 + type: *581 reviewer: anyOf: - *4 @@ -84485,7 +84502,7 @@ paths: - id - node_id - type - deployment_branch_policy: &587 + deployment_branch_policy: &585 type: - object - 'null' @@ -84602,9 +84619,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *430 - - *431 - - &585 + - *428 + - *429 + - &583 name: environment_name in: path required: true @@ -84617,9 +84634,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: &588 + default: &586 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84703,9 +84720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: false content: @@ -84715,7 +84732,7 @@ paths: - object - 'null' properties: - wait_timer: *586 + wait_timer: *584 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -84734,14 +84751,14 @@ paths: items: type: object properties: - type: *583 + type: *581 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *587 + deployment_branch_policy: *585 additionalProperties: false examples: default: @@ -84761,9 +84778,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84787,9 +84804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 responses: '204': description: Default response @@ -84814,9 +84831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *17 - *19 responses: @@ -84835,7 +84852,7 @@ paths: - 2 branch_policies: type: array - items: &589 + items: &587 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -84896,9 +84913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: true content: @@ -84946,9 +84963,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - example-wildcard: &590 + example-wildcard: &588 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -84990,10 +85007,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - &591 + - *428 + - *429 + - *583 + - &589 name: branch_policy_id in: path required: true @@ -85005,9 +85022,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - default: *590 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85026,10 +85043,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - *591 + - *428 + - *429 + - *583 + - *589 requestBody: required: true content: @@ -85058,9 +85075,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *587 examples: - default: *590 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85079,10 +85096,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *430 - - *431 - - *585 - - *591 + - *428 + - *429 + - *583 + - *589 responses: '204': description: Response @@ -85107,9 +85124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 responses: '200': description: List of deployment protection rules @@ -85126,7 +85143,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &592 + items: &590 title: Deployment protection rule description: Deployment protection rule type: object @@ -85148,7 +85165,7 @@ paths: for the environment. examples: - true - app: &593 + app: &591 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -85251,9 +85268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 requestBody: content: application/json: @@ -85274,9 +85291,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *592 + schema: *590 examples: - default: &594 + default: &592 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -85311,9 +85328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *585 - - *431 - - *430 + - *583 + - *429 + - *428 - *19 - *17 responses: @@ -85333,7 +85350,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *593 + items: *591 examples: default: value: @@ -85368,10 +85385,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *430 - - *431 - - *585 - - &595 + - *428 + - *429 + - *583 + - &593 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -85383,9 +85400,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *590 examples: - default: *594 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85406,10 +85423,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *585 - - *431 - - *430 - - *595 + - *583 + - *429 + - *428 + - *593 responses: '204': description: Response @@ -85435,9 +85452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *17 - *19 responses: @@ -85455,9 +85472,9 @@ paths: type: integer secrets: type: array - items: *467 + items: *465 examples: - default: *468 + default: *466 headers: Link: *41 x-github: @@ -85482,17 +85499,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 responses: '200': description: Response content: application/json: - schema: *469 + schema: *467 examples: - default: *470 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85514,18 +85531,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 responses: '200': description: Response content: application/json: - schema: *467 + schema: *465 examples: - default: *596 + default: *594 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85547,9 +85564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 requestBody: required: true @@ -85607,9 +85624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *256 responses: '204': @@ -85635,10 +85652,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *430 - - *431 - - *585 - - *454 + - *428 + - *429 + - *583 + - *452 - *19 responses: '200': @@ -85655,9 +85672,9 @@ paths: type: integer variables: type: array - items: *471 + items: *469 examples: - default: *472 + default: *470 headers: Link: *41 x-github: @@ -85680,9 +85697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 requestBody: required: true content: @@ -85734,18 +85751,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *430 - - *431 - - *585 + - *428 + - *429 + - *583 - *259 responses: '200': description: Response content: application/json: - schema: *471 + schema: *469 examples: - default: *597 + default: *595 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85766,10 +85783,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 - - *585 + - *583 requestBody: required: true content: @@ -85811,10 +85828,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *430 - - *431 + - *428 + - *429 - *259 - - *585 + - *583 responses: '204': description: Response @@ -85836,8 +85853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -85905,8 +85922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *430 - - *431 + - *428 + - *429 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -86065,8 +86082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -86099,9 +86116,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 '400': *14 '422': *15 '403': *27 @@ -86122,8 +86139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86183,7 +86200,7 @@ paths: schema: oneOf: - *223 - - *598 + - *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86208,8 +86225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *430 - - *431 + - *428 + - *429 - name: file_sha in: path required: true @@ -86309,8 +86326,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86419,7 +86436,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &597 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86646,15 +86663,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *430 - - *431 - - *546 + - *428 + - *429 + - *544 responses: '200': description: Response content: application/json: - schema: *599 + schema: *597 examples: default: value: @@ -86710,9 +86727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *430 - - *431 - - &600 + - *428 + - *429 + - &598 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -86729,7 +86746,7 @@ paths: application/json: schema: type: array - items: &601 + items: &599 title: Git Reference description: Git references within a repository type: object @@ -86805,17 +86822,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 responses: '200': description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: &602 + default: &600 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -86844,8 +86861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -86874,9 +86891,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -86902,9 +86919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 requestBody: required: true content: @@ -86933,9 +86950,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 '422': *15 '409': *107 x-github: @@ -86953,9 +86970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *430 - - *431 - - *600 + - *428 + - *429 + - *598 responses: '204': description: Response @@ -87010,8 +87027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -87078,7 +87095,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &602 title: Git Tag description: Metadata for a Git tag type: object @@ -87134,7 +87151,7 @@ paths: - sha - type - url - verification: *603 + verification: *601 required: - sha - url @@ -87144,7 +87161,7 @@ paths: - tag - message examples: - default: &605 + default: &603 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -87217,8 +87234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *430 - - *431 + - *428 + - *429 - name: tag_sha in: path required: true @@ -87229,9 +87246,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *602 examples: - default: *605 + default: *603 '404': *6 '409': *107 x-github: @@ -87255,8 +87272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -87330,7 +87347,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &604 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -87432,8 +87449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *430 - - *431 + - *428 + - *429 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -87456,7 +87473,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *604 examples: default-response: summary: Default response @@ -87515,8 +87532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -87526,7 +87543,7 @@ paths: application/json: schema: type: array - items: &607 + items: &605 title: Webhook description: Webhooks for repositories. type: object @@ -87589,7 +87606,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &849 + last_response: &847 title: Hook Response type: object properties: @@ -87666,8 +87683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -87720,9 +87737,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: &608 + default: &606 value: type: Repository id: 12345678 @@ -87770,17 +87787,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '200': description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: *608 + default: *606 '404': *6 x-github: githubCloudOnly: false @@ -87800,9 +87817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 requestBody: required: true content: @@ -87847,9 +87864,9 @@ paths: description: Response content: application/json: - schema: *607 + schema: *605 examples: - default: *608 + default: *606 '422': *15 '404': *6 x-github: @@ -87870,9 +87887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -87896,9 +87913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '200': description: Response @@ -87925,9 +87942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 requestBody: required: false content: @@ -87971,11 +87988,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *17 - - *309 + - *307 responses: '200': description: Response @@ -87983,9 +88000,9 @@ paths: application/json: schema: type: array - items: *310 + items: *308 examples: - default: *311 + default: *309 '400': *14 '422': *15 x-github: @@ -88004,18 +88021,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *16 responses: '200': description: Response content: application/json: - schema: *312 + schema: *310 examples: - default: *313 + default: *311 '400': *14 '422': *15 x-github: @@ -88034,9 +88051,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 - *16 responses: '202': *37 @@ -88059,9 +88076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -88086,9 +88103,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *430 - - *431 - - *308 + - *428 + - *429 + - *306 responses: '204': description: Response @@ -88111,8 +88128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response if immutable releases are enabled @@ -88160,8 +88177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '409': *107 @@ -88181,8 +88198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '409': *107 @@ -88239,14 +88256,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &609 + schema: &607 title: Import description: A repository import from an external source. type: object @@ -88353,7 +88370,7 @@ paths: - html_url - authors_url examples: - default: &612 + default: &610 value: vcs: subversion use_lfs: true @@ -88369,7 +88386,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &610 + '503': &608 description: Unavailable due to service under maintenance. content: application/json: @@ -88398,8 +88415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -88447,7 +88464,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: default: value: @@ -88472,7 +88489,7 @@ paths: type: string '422': *15 '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88500,8 +88517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -88553,7 +88570,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: example-1: summary: Example 1 @@ -88601,7 +88618,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88624,12 +88641,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88655,9 +88672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *430 - - *431 - - &793 + - *428 + - *429 + - &791 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88671,7 +88688,7 @@ paths: application/json: schema: type: array - items: &611 + items: &609 title: Porter Author description: Porter Author type: object @@ -88725,7 +88742,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88750,8 +88767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *430 - - *431 + - *428 + - *429 - name: author_id in: path required: true @@ -88781,7 +88798,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *609 examples: default: value: @@ -88794,7 +88811,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88818,8 +88835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88860,7 +88877,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88888,8 +88905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -88916,11 +88933,11 @@ paths: description: Response content: application/json: - schema: *609 + schema: *607 examples: - default: *612 + default: *610 '422': *15 - '503': *610 + '503': *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88943,8 +88960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88952,8 +88969,8 @@ paths: application/json: schema: *20 examples: - default: *613 - '301': *444 + default: *611 + '301': *442 '404': *6 x-github: githubCloudOnly: false @@ -88973,8 +88990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -88982,12 +88999,12 @@ paths: application/json: schema: anyOf: - - *326 + - *324 - type: object properties: {} additionalProperties: false examples: - default: &615 + default: &613 value: limit: collaborators_only origin: repository @@ -89012,13 +89029,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: application/json: - schema: *614 + schema: *612 examples: default: summary: Example request body @@ -89030,9 +89047,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: - default: *615 + default: *613 '409': description: Response x-github: @@ -89054,8 +89071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -89078,8 +89095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -89089,9 +89106,9 @@ paths: application/json: schema: type: array - items: *616 + items: *614 examples: - default: &786 + default: &784 value: - id: 1 repository: @@ -89222,9 +89239,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *430 - - *431 - - *330 + - *428 + - *429 + - *328 requestBody: required: false content: @@ -89253,7 +89270,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *614 examples: default: value: @@ -89384,9 +89401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *430 - - *431 - - *330 + - *428 + - *429 + - *328 responses: '204': description: Response @@ -89417,8 +89434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *430 - - *431 + - *428 + - *429 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -89466,7 +89483,7 @@ paths: required: false schema: type: string - - *334 + - *332 - name: sort description: What to sort results by. in: query @@ -89491,7 +89508,7 @@ paths: type: array items: *183 examples: - default: &623 + default: &621 value: - id: 1 node_id: MDU6SXNzdWUx @@ -89639,7 +89656,7 @@ paths: state_reason: completed headers: Link: *41 - '301': *444 + '301': *442 '422': *15 '404': *6 x-github: @@ -89668,8 +89685,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -89761,7 +89778,7 @@ paths: application/json: schema: *183 examples: - default: &620 + default: &618 value: id: 1 node_id: MDU6SXNzdWUx @@ -89917,7 +89934,7 @@ paths: '422': *15 '503': *163 '404': *6 - '410': *441 + '410': *439 x-github: triggersNotification: true githubCloudOnly: false @@ -89945,8 +89962,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *206 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -89967,9 +89984,9 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: - default: &622 + default: &620 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90027,17 +90044,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: &618 + default: &616 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90091,8 +90108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -90115,9 +90132,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: *618 + default: *616 '422': *15 x-github: githubCloudOnly: false @@ -90135,8 +90152,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -90157,8 +90174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -90185,9 +90202,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -90208,8 +90225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -90242,16 +90259,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -90273,10 +90290,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -90296,8 +90313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -90307,7 +90324,7 @@ paths: application/json: schema: type: array - items: &619 + items: &617 title: Issue Event description: Issue Event type: object @@ -90646,8 +90663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *430 - - *431 + - *428 + - *429 - name: event_id in: path required: true @@ -90658,7 +90675,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *617 examples: default: value: @@ -90851,7 +90868,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *441 + '410': *439 '403': *27 x-github: githubCloudOnly: false @@ -90885,9 +90902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *430 - - *431 - - &621 + - *428 + - *429 + - &619 name: issue_number description: The number that identifies the issue. in: path @@ -90901,10 +90918,10 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '404': *6 - '410': *441 + '410': *439 '304': *35 x-github: githubCloudOnly: false @@ -90929,9 +90946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -91052,13 +91069,13 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 '422': *15 '503': *163 '403': *27 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91076,9 +91093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -91106,7 +91123,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91122,9 +91139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: content: application/json: @@ -91151,7 +91168,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91173,9 +91190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: assignee in: path required: true @@ -91215,9 +91232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *189 - *17 - *19 @@ -91228,13 +91245,13 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: - default: *622 + default: *620 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91263,9 +91280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -91287,16 +91304,16 @@ paths: description: Response content: application/json: - schema: *617 + schema: *615 examples: - default: *618 + default: *616 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -91324,9 +91341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91338,12 +91355,12 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91371,9 +91388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -91397,15 +91414,15 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *444 + '301': *442 '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -91436,9 +91453,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -91452,13 +91469,13 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 x-github: triggersNotification: true githubCloudOnly: false @@ -91484,9 +91501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91498,12 +91515,12 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91520,9 +91537,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -91536,7 +91553,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &625 + - &623 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -91585,7 +91602,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &626 + - &624 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -91713,7 +91730,7 @@ paths: - performed_via_github_app - assignee - assigner - - &627 + - &625 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91759,7 +91776,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &628 + - &626 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91805,7 +91822,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &629 + - &627 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91854,7 +91871,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &630 + - &628 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91896,7 +91913,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &631 + - &629 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91938,7 +91955,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &632 + - &630 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91994,7 +92011,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &633 + - &631 title: Locked Issue Event description: Locked Issue Event type: object @@ -92039,7 +92056,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &634 + - &632 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -92100,7 +92117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &635 + - &633 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92161,7 +92178,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &636 + - &634 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -92222,7 +92239,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &637 + - &635 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -92315,7 +92332,7 @@ paths: color: red headers: Link: *41 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92332,9 +92349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -92346,7 +92363,7 @@ paths: type: array items: *182 examples: - default: &624 + default: &622 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92364,9 +92381,9 @@ paths: default: false headers: Link: *41 - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92383,9 +92400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92446,10 +92463,10 @@ paths: type: array items: *182 examples: - default: *624 - '301': *444 + default: *622 + '301': *442 '404': *6 - '410': *441 + '410': *439 '422': *15 x-github: githubCloudOnly: false @@ -92466,9 +92483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92530,10 +92547,10 @@ paths: type: array items: *182 examples: - default: *624 - '301': *444 + default: *622 + '301': *442 '404': *6 - '410': *441 + '410': *439 '422': *15 x-github: githubCloudOnly: false @@ -92550,15 +92567,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '204': description: Response - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92577,9 +92594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - name: name in: path required: true @@ -92603,9 +92620,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *444 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92625,9 +92642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: false content: @@ -92656,7 +92673,7 @@ paths: '204': description: Response '403': *27 - '410': *441 + '410': *439 '404': *6 '422': *15 x-github: @@ -92674,9 +92691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '204': description: Response @@ -92706,9 +92723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 responses: '200': description: Response @@ -92716,10 +92733,10 @@ paths: application/json: schema: *183 examples: - default: *620 - '301': *444 + default: *618 + '301': *442 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92736,9 +92753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - 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. @@ -92764,13 +92781,13 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92788,9 +92805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -92822,16 +92839,16 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -92853,10 +92870,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *430 - - *431 - - *621 - - *422 + - *428 + - *429 + - *619 + - *420 responses: '204': description: Response @@ -92885,9 +92902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -92911,7 +92928,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -92944,9 +92961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -92958,11 +92975,11 @@ paths: type: array items: *183 examples: - default: *623 + default: *621 headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92990,9 +93007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -93021,14 +93038,14 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *441 + '410': *439 '422': *15 '404': *6 x-github: @@ -93048,9 +93065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 requestBody: required: true content: @@ -93083,7 +93100,7 @@ paths: application/json: schema: *183 examples: - default: *620 + default: *618 '403': *27 '404': *6 '422': *7 @@ -93105,9 +93122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *430 - - *431 - - *621 + - *428 + - *429 + - *619 - *17 - *19 responses: @@ -93122,6 +93139,8 @@ paths: description: Timeline Event type: object anyOf: + - *623 + - *624 - *625 - *626 - *627 @@ -93133,8 +93152,6 @@ paths: - *633 - *634 - *635 - - *636 - - *637 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93463,7 +93480,7 @@ paths: type: string comments: type: array - items: &656 + items: &654 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93701,7 +93718,7 @@ paths: type: string comments: type: array - items: *544 + items: *542 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -93976,7 +93993,7 @@ paths: headers: Link: *41 '404': *6 - '410': *441 + '410': *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93993,8 +94010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -94004,7 +94021,7 @@ paths: application/json: schema: type: array - items: &638 + items: &636 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94072,8 +94089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94109,9 +94126,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *636 examples: - default: &639 + default: &637 value: id: 1 key: ssh-rsa AAA... @@ -94145,9 +94162,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *430 - - *431 - - &640 + - *428 + - *429 + - &638 name: key_id description: The unique identifier of the key. in: path @@ -94159,9 +94176,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *636 examples: - default: *639 + default: *637 '404': *6 x-github: githubCloudOnly: false @@ -94179,9 +94196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *430 - - *431 - - *640 + - *428 + - *429 + - *638 responses: '204': description: Response @@ -94201,8 +94218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -94214,7 +94231,7 @@ paths: type: array items: *182 examples: - default: *624 + default: *622 headers: Link: *41 '404': *6 @@ -94235,8 +94252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94274,7 +94291,7 @@ paths: application/json: schema: *182 examples: - default: &641 + default: &639 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94306,8 +94323,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94320,7 +94337,7 @@ paths: application/json: schema: *182 examples: - default: *641 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -94337,8 +94354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94403,8 +94420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *430 - - *431 + - *428 + - *429 - name: name in: path required: true @@ -94430,8 +94447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -94467,8 +94484,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '202': *37 '403': @@ -94496,8 +94513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -94523,9 +94540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *430 - - *431 - - *522 + - *428 + - *429 + - *520 responses: '200': description: Response @@ -94672,8 +94689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94738,8 +94755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94773,9 +94790,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *545 + schema: *543 examples: - default: *642 + default: *640 '204': description: Response when already merged '404': @@ -94800,8 +94817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94842,7 +94859,7 @@ paths: application/json: schema: type: array - items: *368 + items: *366 examples: default: value: @@ -94898,8 +94915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -94939,9 +94956,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: &643 + default: &641 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -95000,9 +95017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *430 - - *431 - - &644 + - *428 + - *429 + - &642 name: milestone_number description: The number that identifies the milestone. in: path @@ -95014,9 +95031,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: *643 + default: *641 '404': *6 x-github: githubCloudOnly: false @@ -95033,9 +95050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 requestBody: required: false content: @@ -95073,9 +95090,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *366 examples: - default: *643 + default: *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95091,9 +95108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 responses: '204': description: Response @@ -95114,9 +95131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *430 - - *431 - - *644 + - *428 + - *429 + - *642 - *17 - *19 responses: @@ -95128,7 +95145,7 @@ paths: type: array items: *182 examples: - default: *624 + default: *622 headers: Link: *41 x-github: @@ -95147,12 +95164,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *430 - - *431 - - *645 - - *646 + - *428 + - *429 + - *643 + - *644 - *189 - - *647 + - *645 - *17 - *19 responses: @@ -95164,7 +95181,7 @@ paths: type: array items: *209 examples: - default: *648 + default: *646 headers: Link: *41 x-github: @@ -95188,8 +95205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -95247,14 +95264,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: &649 + schema: &647 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95398,7 +95415,7 @@ paths: - custom_404 - public examples: - default: &650 + default: &648 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95439,8 +95456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -95495,9 +95512,9 @@ paths: description: Response content: application/json: - schema: *649 + schema: *647 examples: - default: *650 + default: *648 '422': *15 '409': *107 x-github: @@ -95520,8 +95537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -95629,8 +95646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -95656,8 +95673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -95667,7 +95684,7 @@ paths: application/json: schema: type: array - items: &651 + items: &649 title: Page Build description: Page Build type: object @@ -95759,8 +95776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *430 - - *431 + - *428 + - *429 responses: '201': description: Response @@ -95807,16 +95824,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *651 + schema: *649 examples: - default: &652 + default: &650 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95864,8 +95881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *430 - - *431 + - *428 + - *429 - name: build_id in: path required: true @@ -95876,9 +95893,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *649 examples: - default: *652 + default: *650 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95898,8 +95915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96007,9 +96024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *430 - - *431 - - &653 + - *428 + - *429 + - &651 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96067,9 +96084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *430 - - *431 - - *653 + - *428 + - *429 + - *651 responses: '204': *129 '404': *6 @@ -96096,8 +96113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -96392,8 +96409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Private vulnerability reporting status @@ -96430,8 +96447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '422': *14 @@ -96452,8 +96469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': *129 '422': *14 @@ -96476,8 +96493,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#list-repository-projects parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: Indicates the state of the projects to return. in: query @@ -96498,7 +96515,7 @@ paths: application/json: schema: type: array - items: *362 + items: *360 examples: default: value: @@ -96538,7 +96555,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -96561,8 +96578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/projects#create-a-repository-project parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96588,13 +96605,13 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: - default: *440 + default: *438 '401': *23 '403': *27 '404': *6 - '410': *441 + '410': *439 '422': *7 x-github: githubCloudOnly: false @@ -96617,8 +96634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -96626,7 +96643,7 @@ paths: application/json: schema: type: array - items: *376 + items: *374 examples: default: value: @@ -96657,8 +96674,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96670,7 +96687,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *376 + items: *374 required: - properties examples: @@ -96720,8 +96737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *430 - - *431 + - *428 + - *429 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96781,9 +96798,9 @@ paths: application/json: schema: type: array - items: *549 + items: *547 examples: - default: *654 + default: *652 headers: Link: *41 '304': *35 @@ -96815,8 +96832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -96883,7 +96900,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &656 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -97012,7 +97029,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 active_lock_reason: type: - string @@ -97067,7 +97084,7 @@ paths: type: - array - 'null' - items: *344 + items: *342 head: type: object properties: @@ -97105,14 +97122,14 @@ paths: _links: type: object properties: - comments: *369 - commits: *369 - statuses: *369 - html: *369 - issue: *369 - review_comments: *369 - review_comment: *369 - self: *369 + comments: *367 + commits: *367 + statuses: *367 + html: *367 + issue: *367 + review_comments: *367 + review_comment: *367 + self: *367 required: - comments - commits @@ -97123,7 +97140,7 @@ paths: - review_comment - self author_association: *184 - auto_merge: *655 + auto_merge: *653 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -97225,7 +97242,7 @@ paths: - merged_by - review_comments examples: - default: &659 + default: &657 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97752,8 +97769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: sort in: query required: false @@ -97782,9 +97799,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: &661 + default: &659 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97861,17 +97878,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '200': description: Response content: application/json: - schema: *656 + schema: *654 examples: - default: &657 + default: &655 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97946,8 +97963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -97970,9 +97987,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: - default: *657 + default: *655 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97988,8 +98005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 + - *428 + - *429 - *198 responses: '204': @@ -98011,8 +98028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -98039,9 +98056,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -98062,8 +98079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *430 - - *431 + - *428 + - *429 - *198 requestBody: required: true @@ -98096,16 +98113,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -98127,10 +98144,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *430 - - *431 + - *428 + - *429 - *198 - - *422 + - *420 responses: '204': description: Response @@ -98173,9 +98190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *430 - - *431 - - &660 + - *428 + - *429 + - &658 name: pull_number description: The number that identifies the pull request. in: path @@ -98188,9 +98205,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '304': *35 '404': *6 '406': @@ -98225,9 +98242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -98269,9 +98286,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '422': *15 '403': *27 x-github: @@ -98293,9 +98310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -98356,17 +98373,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -98396,9 +98413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *206 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98419,9 +98436,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *661 + default: *659 headers: Link: *41 x-github: @@ -98454,9 +98471,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -98562,7 +98579,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: example-for-a-multi-line-comment: value: @@ -98650,9 +98667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *198 requestBody: required: true @@ -98675,7 +98692,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *654 examples: default: value: @@ -98761,9 +98778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -98773,9 +98790,9 @@ paths: application/json: schema: type: array - items: *545 + items: *543 examples: - default: *662 + default: *660 headers: Link: *41 x-github: @@ -98805,9 +98822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -98817,7 +98834,7 @@ paths: application/json: schema: type: array - items: *556 + items: *554 examples: default: value: @@ -98855,9 +98872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 responses: '204': description: Response if pull request has been merged @@ -98880,9 +98897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -98994,9 +99011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 responses: '200': description: Response @@ -99071,9 +99088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -99110,7 +99127,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: default: value: @@ -99646,9 +99663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: true content: @@ -99682,7 +99699,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: default: value: @@ -100187,9 +100204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 - *17 - *19 responses: @@ -100199,7 +100216,7 @@ paths: application/json: schema: type: array - items: &663 + items: &661 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100355,9 +100372,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -100447,9 +100464,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: &665 + default: &663 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100512,10 +100529,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - &664 + - *428 + - *429 + - *658 + - &662 name: review_id description: The unique identifier of the review. in: path @@ -100527,9 +100544,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: &666 + default: &664 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100588,10 +100605,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -100614,7 +100631,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: default: value: @@ -100676,18 +100693,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 responses: '200': description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *665 + default: *663 '422': *7 '404': *6 x-github: @@ -100714,10 +100731,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 - *17 - *19 responses: @@ -100815,9 +100832,9 @@ paths: _links: type: object properties: - self: *369 - html: *369 - pull_request: *369 + self: *367 + html: *367 + pull_request: *367 required: - self - html @@ -100975,10 +100992,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -101007,7 +101024,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: default: value: @@ -101070,10 +101087,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *430 - - *431 - - *660 - - *664 + - *428 + - *429 + - *658 + - *662 requestBody: required: true content: @@ -101108,9 +101125,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *666 + default: *664 '404': *6 '422': *7 '403': *27 @@ -101132,9 +101149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *430 - - *431 - - *660 + - *428 + - *429 + - *658 requestBody: required: false content: @@ -101198,8 +101215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *430 - - *431 + - *428 + - *429 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -101212,9 +101229,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *665 examples: - default: &668 + default: &666 value: type: file encoding: base64 @@ -101256,8 +101273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *430 - - *431 + - *428 + - *429 - name: dir description: The alternate path to look for a README file in: path @@ -101277,9 +101294,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *665 examples: - default: *668 + default: *666 '404': *6 '422': *15 x-github: @@ -101301,8 +101318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -101312,7 +101329,7 @@ paths: application/json: schema: type: array - items: *669 + items: *667 examples: default: value: @@ -101406,8 +101423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -101483,9 +101500,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: &673 + default: &671 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -101590,9 +101607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *430 - - *431 - - &671 + - *428 + - *429 + - &669 name: asset_id description: The unique identifier of the asset. in: path @@ -101604,9 +101621,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *668 examples: - default: &672 + default: &670 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 @@ -101641,7 +101658,7 @@ paths: type: User site_admin: false '404': *6 - '302': *558 + '302': *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101657,9 +101674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *430 - - *431 - - *671 + - *428 + - *429 + - *669 requestBody: required: false content: @@ -101688,9 +101705,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *668 examples: - default: *672 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101706,9 +101723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *430 - - *431 - - *671 + - *428 + - *429 + - *669 responses: '204': description: Response @@ -101732,8 +101749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -101819,16 +101836,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101845,8 +101862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *430 - - *431 + - *428 + - *429 - name: tag description: tag parameter in: path @@ -101859,9 +101876,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 '404': *6 x-github: githubCloudOnly: false @@ -101883,9 +101900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *430 - - *431 - - &674 + - *428 + - *429 + - &672 name: release_id description: The unique identifier of the release. in: path @@ -101899,9 +101916,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: *669 + schema: *667 examples: - default: *673 + default: *671 '401': description: Unauthorized x-github: @@ -101919,9 +101936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 requestBody: required: false content: @@ -101985,9 +102002,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *667 examples: - default: *673 + default: *671 '404': description: Not Found if the discussion category name is invalid content: @@ -102008,9 +102025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 responses: '204': description: Response @@ -102030,9 +102047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - *17 - *19 responses: @@ -102042,7 +102059,7 @@ paths: application/json: schema: type: array - items: *670 + items: *668 examples: default: value: @@ -102124,9 +102141,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - name: name in: query required: true @@ -102152,7 +102169,7 @@ paths: description: Response for successful upload content: application/json: - schema: *670 + schema: *668 examples: response-for-successful-upload: value: @@ -102207,9 +102224,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 - 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. @@ -102233,9 +102250,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 '404': *6 @@ -102256,9 +102273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *430 - - *431 - - *674 + - *428 + - *429 + - *672 requestBody: required: true content: @@ -102288,16 +102305,16 @@ paths: description: Reaction exists content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '201': description: Reaction created content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -102319,10 +102336,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *430 - - *431 - - *674 - - *422 + - *428 + - *429 + - *672 + - *420 responses: '204': description: Response @@ -102346,9 +102363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *430 - - *431 - - *489 + - *428 + - *429 + - *487 - *17 - *19 responses: @@ -102365,7 +102382,7 @@ paths: oneOf: - allOf: - *138 - - &675 + - &673 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102386,67 +102403,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *139 - - *675 + - *673 - allOf: - *140 - - *675 + - *673 - allOf: - *141 - - *675 + - *673 - allOf: - - *676 - - *675 + - *674 + - *673 - allOf: - *142 - - *675 + - *673 - allOf: - *143 - - *675 + - *673 - allOf: - *144 - - *675 + - *673 - allOf: - *145 - - *675 + - *673 - allOf: - *146 - - *675 + - *673 - allOf: - *147 - - *675 + - *673 - allOf: - *148 - - *675 + - *673 - allOf: - *149 - - *675 + - *673 - allOf: - *150 - - *675 + - *673 - allOf: - *151 - - *675 + - *673 - allOf: - *152 - - *675 + - *673 - allOf: - *153 - - *675 + - *673 - allOf: - *154 - - *675 + - *673 - allOf: - *155 - - *675 + - *673 - allOf: - *156 - - *675 + - *673 - allOf: - *157 - - *675 + - *673 - allOf: - - *677 - *675 + - *673 examples: default: value: @@ -102485,8 +102502,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - name: includes_parents @@ -102497,7 +102514,7 @@ paths: schema: type: boolean default: true - - *678 + - *676 responses: '200': description: Response @@ -102552,8 +102569,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 requestBody: description: Request body required: true @@ -102582,7 +102599,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *679 + items: *677 required: - name - enforcement @@ -102615,7 +102632,7 @@ paths: application/json: schema: *158 examples: - default: &688 + default: &686 value: id: 42 name: super cool ruleset @@ -102662,12 +102679,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *430 - - *431 - - *680 + - *428 + - *429 + - *678 - *94 - - *681 - - *682 + - *679 + - *680 - *17 - *19 responses: @@ -102675,9 +102692,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: *684 + default: *682 '404': *6 '500': *38 x-github: @@ -102698,17 +102715,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *430 - - *431 - - *685 + - *428 + - *429 + - *683 responses: '200': description: Response content: application/json: - schema: *686 + schema: *684 examples: - default: *687 + default: *685 '404': *6 '500': *38 x-github: @@ -102736,8 +102753,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102759,7 +102776,7 @@ paths: application/json: schema: *158 examples: - default: *688 + default: *686 '404': *6 '500': *38 put: @@ -102777,8 +102794,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102812,7 +102829,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *679 + items: *677 examples: default: value: @@ -102842,7 +102859,7 @@ paths: application/json: schema: *158 examples: - default: *688 + default: *686 '404': *6 '500': *38 delete: @@ -102860,8 +102877,8 @@ paths: category: repos subcategory: rules parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102884,8 +102901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 - name: ruleset_id @@ -102903,7 +102920,7 @@ paths: type: array items: *162 examples: - default: *383 + default: *381 '404': *6 '500': *38 x-github: @@ -102922,8 +102939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *430 - - *431 + - *428 + - *429 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102941,7 +102958,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *382 examples: default: value: @@ -102996,21 +103013,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 + - *383 + - *384 - *385 - *386 - - *387 - - *388 - *99 - *19 - *17 - - *689 - - *690 + - *687 + - *688 + - *387 + - *388 - *389 - *390 - - *391 - - *392 responses: '200': description: Response @@ -103018,7 +103035,7 @@ paths: application/json: schema: type: array - items: &694 + items: &692 type: object properties: number: *109 @@ -103034,8 +103051,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *691 - resolution: *692 + state: *689 + resolution: *690 resolved_at: type: - string @@ -103129,7 +103146,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *693 + - *691 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -103274,16 +103291,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 - - *392 + - *428 + - *429 + - *514 + - *390 responses: '200': description: Response content: application/json: - schema: *694 + schema: *692 examples: default: value: @@ -103335,9 +103352,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 requestBody: required: true content: @@ -103345,8 +103362,8 @@ paths: schema: type: object properties: - state: *691 - resolution: *692 + state: *689 + resolution: *690 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103365,7 +103382,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *692 examples: default: value: @@ -103440,9 +103457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *430 - - *431 - - *516 + - *428 + - *429 + - *514 - *19 - *17 responses: @@ -103453,7 +103470,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &869 + items: &867 type: object properties: type: @@ -103480,6 +103497,8 @@ paths: - commit details: oneOf: + - *693 + - *694 - *695 - *696 - *697 @@ -103491,8 +103510,6 @@ paths: - *703 - *704 - *705 - - *706 - - *707 examples: default: value: @@ -103578,8 +103595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -103587,14 +103604,14 @@ paths: schema: type: object properties: - reason: &709 + reason: &707 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *708 + placeholder_id: *706 required: - reason - placeholder_id @@ -103611,7 +103628,7 @@ paths: schema: type: object properties: - reason: *709 + reason: *707 expire_at: type: - string @@ -103655,8 +103672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -103671,7 +103688,7 @@ paths: properties: incremental_scans: type: array - items: &710 + items: &708 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103699,15 +103716,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *710 + items: *708 backfill_scans: type: array - items: *710 + items: *708 custom_pattern_backfill_scans: type: array items: allOf: - - *710 + - *708 - type: object properties: pattern_name: @@ -103777,8 +103794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *430 - - *431 + - *428 + - *429 - *99 - name: sort description: The property to sort the results by. @@ -103822,9 +103839,9 @@ paths: application/json: schema: type: array - items: *711 + items: *709 examples: - default: *712 + default: *710 '400': *14 '404': *6 x-github: @@ -103847,8 +103864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -103928,7 +103945,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 required: - login - type @@ -104018,9 +104035,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: &714 + default: &712 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104253,8 +104270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -104367,7 +104384,7 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: default: value: @@ -104514,17 +104531,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '200': description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: *714 + default: *712 '403': *27 '404': *6 x-github: @@ -104548,9 +104565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 requestBody: required: true content: @@ -104630,7 +104647,7 @@ paths: login: type: string description: The username of the user credited. - type: *397 + type: *395 required: - login - type @@ -104721,10 +104738,10 @@ paths: description: Response content: application/json: - schema: *711 + schema: *709 examples: - default: *714 - add_credit: *714 + default: *712 + add_credit: *712 '403': *27 '404': *6 '422': @@ -104762,9 +104779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '202': *37 '400': *14 @@ -104791,17 +104808,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *430 - - *431 - - *713 + - *428 + - *429 + - *711 responses: '202': description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 '400': *14 '422': *15 '403': *27 @@ -104827,8 +104844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -104924,8 +104941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -104934,7 +104951,7 @@ paths: application/json: schema: type: array - items: &715 + items: &713 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104967,8 +104984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105046,8 +105063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105141,8 +105158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -105296,8 +105313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -105307,7 +105324,7 @@ paths: application/json: schema: type: array - items: *715 + items: *713 examples: default: value: @@ -105340,8 +105357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *430 - - *431 + - *428 + - *429 - name: sha in: path required: true @@ -105397,7 +105414,7 @@ paths: description: Response content: application/json: - schema: *716 + schema: *714 examples: default: value: @@ -105451,8 +105468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105484,14 +105501,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &717 + schema: &715 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -105564,8 +105581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: false content: @@ -105591,7 +105608,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *715 examples: default: value: @@ -105618,8 +105635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -105639,8 +105656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105722,8 +105739,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -105731,7 +105748,7 @@ paths: application/json: schema: type: array - items: &718 + items: &716 title: Tag protection description: Tag protection type: object @@ -105788,8 +105805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -105812,7 +105829,7 @@ paths: description: Response content: application/json: - schema: *718 + schema: *716 examples: default: value: @@ -105843,8 +105860,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -105881,8 +105898,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *430 - - *431 + - *428 + - *429 - name: ref in: path required: true @@ -105918,8 +105935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *430 - - *431 + - *428 + - *429 - *17 - *19 responses: @@ -105931,7 +105948,7 @@ paths: type: array items: *273 examples: - default: *345 + default: *343 headers: Link: *41 '404': *6 @@ -105951,8 +105968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *430 - - *431 + - *428 + - *429 - *19 - *17 responses: @@ -105960,7 +105977,7 @@ paths: description: Response content: application/json: - schema: &719 + schema: &717 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -105972,7 +105989,7 @@ paths: required: - names examples: - default: &720 + default: &718 value: names: - octocat @@ -105995,8 +106012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -106027,9 +106044,9 @@ paths: description: Response content: application/json: - schema: *719 + schema: *717 examples: - default: *720 + default: *718 '404': *6 '422': *7 x-github: @@ -106050,9 +106067,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *430 - - *431 - - &721 + - *428 + - *429 + - &719 name: per description: The time frame to display results for. in: query @@ -106083,7 +106100,7 @@ paths: - 128 clones: type: array - items: &722 + items: &720 title: Traffic type: object properties: @@ -106170,8 +106187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -106265,8 +106282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *430 - - *431 + - *428 + - *429 responses: '200': description: Response @@ -106329,9 +106346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *430 - - *431 - - *721 + - *428 + - *429 + - *719 responses: '200': description: Response @@ -106352,7 +106369,7 @@ paths: - 3782 views: type: array - items: *722 + items: *720 required: - uniques - count @@ -106429,8 +106446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *430 - - *431 + - *428 + - *429 requestBody: required: true content: @@ -106704,8 +106721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -106728,8 +106745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -106751,8 +106768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -106778,8 +106795,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *430 - - *431 + - *428 + - *429 - name: ref in: path required: true @@ -106871,9 +106888,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107024,7 +107041,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &730 + - &728 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -107034,7 +107051,7 @@ paths: type: string examples: - members - - &735 + - &733 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -107046,7 +107063,7 @@ paths: format: int32 examples: - 1 - - &736 + - &734 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -107090,7 +107107,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &725 + items: &723 allOf: - type: object required: @@ -107172,7 +107189,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: &737 + meta: &735 type: object description: The metadata associated with the creation/updates to the user. @@ -107237,30 +107254,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &726 + '400': &724 description: Bad request content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '401': *724 - '403': &727 + schema: *721 + '401': *722 + '403': &725 description: Permission denied - '429': &728 + '429': &726 description: Too many requests content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '500': &729 + schema: *721 + '500': &727 description: Internal server error content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 + schema: *721 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107284,7 +107301,7 @@ paths: required: true content: application/json: - schema: &733 + schema: &731 type: object required: - schemas @@ -107348,9 +107365,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *725 + schema: *723 examples: - group: &731 + group: &729 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -107369,13 +107386,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': *726 - '401': *724 - '403': *727 - '409': &734 + '400': *724 + '401': *722 + '403': *725 + '409': &732 description: Duplicate record detected - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107392,7 +107409,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: - - &732 + - &730 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -107401,22 +107418,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *730 + - *728 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *725 + schema: *723 examples: - default: *731 - '400': *726 - '401': *724 - '403': *727 + default: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107435,13 +107452,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: - - *732 + - *730 - *39 requestBody: required: true content: application/json: - schema: *733 + schema: *731 examples: group: summary: Group @@ -107467,17 +107484,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *725 + schema: *723 examples: - group: *731 - groupWithMembers: *731 - '400': *726 - '401': *724 - '403': *727 + group: *729 + groupWithMembers: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107501,13 +107518,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: - - *732 + - *730 - *39 requestBody: required: true content: application/json: - schema: &744 + schema: &742 type: object required: - Operations @@ -107567,17 +107584,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *725 + schema: *723 examples: - updateGroup: *731 - addMembers: *731 - '400': *726 - '401': *724 - '403': *727 + updateGroup: *729 + addMembers: *729 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107593,17 +107610,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: - - *732 + - *730 - *39 responses: '204': description: Group was deleted, no content - '400': *726 - '401': *724 - '403': *727 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107637,8 +107654,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *735 - - *736 + - *733 + - *734 - *39 responses: '200': @@ -107672,7 +107689,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &739 + items: &737 allOf: - type: object required: @@ -107764,7 +107781,7 @@ paths: address. examples: - true - roles: &738 + roles: &736 type: array description: The roles assigned to the user. items: @@ -107823,7 +107840,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *737 + meta: *735 startIndex: type: integer description: A starting index for the returned page @@ -107862,11 +107879,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *726 - '401': *724 - '403': *727 - '429': *728 - '500': *729 + '400': *724 + '401': *722 + '403': *725 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107890,7 +107907,7 @@ paths: required: true content: application/json: - schema: &742 + schema: &740 type: object required: - schemas @@ -107983,9 +108000,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *738 + roles: *736 examples: - user: &743 + user: &741 summary: User value: schemas: @@ -108032,9 +108049,9 @@ paths: description: User has been created content: application/scim+json: - schema: *739 + schema: *737 examples: - user: &740 + user: &738 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108060,13 +108077,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: *740 - '400': *726 - '401': *724 - '403': *727 - '409': *734 - '429': *728 - '500': *729 + enterpriseOwner: *738 + '400': *724 + '401': *722 + '403': *725 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108083,7 +108100,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: - - &741 + - &739 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -108096,15 +108113,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *739 + schema: *737 examples: - default: *740 - '400': *726 - '401': *724 - '403': *727 + default: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108126,30 +108143,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: - - *741 + - *739 - *39 requestBody: required: true content: application/json: - schema: *742 + schema: *740 examples: - user: *743 + user: *741 responses: '200': description: User was updated content: application/scim+json: - schema: *739 + schema: *737 examples: - user: *740 - '400': *726 - '401': *724 - '403': *727 + user: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108184,13 +108201,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: - - *741 + - *739 - *39 requestBody: required: true content: application/json: - schema: *744 + schema: *742 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -108230,18 +108247,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *739 + schema: *737 examples: - userMultiValuedProperties: *740 - userSingleValuedProperties: *740 - disableUser: *740 - '400': *726 - '401': *724 - '403': *727 + userMultiValuedProperties: *738 + userSingleValuedProperties: *738 + disableUser: *738 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '409': *734 - '429': *728 - '500': *729 + '409': *732 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108261,17 +108278,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: - - *741 + - *739 - *39 responses: '204': description: User was deleted, no content - '400': *726 - '401': *724 - '403': *727 + '400': *724 + '401': *722 + '403': *725 '404': *6 - '429': *728 - '500': *729 + '429': *726 + '500': *727 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108362,7 +108379,7 @@ paths: - 1 Resources: type: array - items: &745 + items: &743 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -108609,22 +108626,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &746 + '404': &744 description: Resource not found content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '403': &747 + schema: *721 + '403': &745 description: Forbidden content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '400': *726 - '429': *728 + schema: *721 + '400': *724 + '429': *726 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -108650,9 +108667,9 @@ paths: description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: &748 + default: &746 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108675,17 +108692,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *746 - '403': *747 - '500': *729 + '404': *744 + '403': *745 + '500': *727 '409': description: Conflict content: application/json: - schema: *723 + schema: *721 application/scim+json: - schema: *723 - '400': *726 + schema: *721 + '400': *724 requestBody: required: true content: @@ -108785,17 +108802,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 - '404': *746 - '403': *747 + default: *746 + '404': *744 + '403': *745 '304': *35 x-github: githubCloudOnly: true @@ -108819,18 +108836,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 + default: *746 '304': *35 - '404': *746 - '403': *747 + '404': *744 + '403': *745 requestBody: required: true content: @@ -108945,19 +108962,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *76 - - *741 + - *739 responses: '200': description: Response content: application/scim+json: - schema: *745 + schema: *743 examples: - default: *748 + default: *746 '304': *35 - '404': *746 - '403': *747 - '400': *726 + '404': *744 + '403': *745 + '400': *724 '429': description: Response content: @@ -109053,12 +109070,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *76 - - *741 + - *739 responses: '204': description: Response - '404': *746 - '403': *747 + '404': *744 + '403': *745 '304': *35 x-github: githubCloudOnly: true @@ -109192,7 +109209,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &749 + text_matches: &747 title: Search Result Text Matches type: array items: @@ -109356,7 +109373,7 @@ paths: enum: - author-date - committer-date - - &750 + - &748 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 @@ -109425,7 +109442,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 comment_count: type: integer message: @@ -109444,7 +109461,7 @@ paths: url: type: string format: uri - verification: *603 + verification: *601 required: - author - committer @@ -109459,7 +109476,7 @@ paths: committer: anyOf: - type: 'null' - - *487 + - *485 parents: type: array items: @@ -109476,7 +109493,7 @@ paths: type: number node_id: type: string - text_matches: *749 + text_matches: *747 required: - sha - node_id @@ -109669,7 +109686,7 @@ paths: - interactions - created - updated - - *750 + - *748 - *17 - *19 - name: advanced_search @@ -109766,11 +109783,11 @@ paths: type: - string - 'null' - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: type: string state_reason: @@ -109784,7 +109801,7 @@ paths: milestone: anyOf: - type: 'null' - - *368 + - *366 comments: type: integer created_at: @@ -109798,7 +109815,7 @@ paths: - string - 'null' format: date-time - text_matches: *749 + text_matches: *747 pull_request: type: object properties: @@ -109847,7 +109864,7 @@ paths: timeline_url: type: string format: uri - type: *331 + type: *329 performed_via_github_app: anyOf: - type: 'null' @@ -110021,7 +110038,7 @@ paths: enum: - created - updated - - *750 + - *748 - *17 - *19 responses: @@ -110066,7 +110083,7 @@ paths: - 'null' score: type: number - text_matches: *749 + text_matches: *747 required: - id - node_id @@ -110152,7 +110169,7 @@ paths: - forks - help-wanted-issues - updated - - *750 + - *748 - *17 - *19 responses: @@ -110389,7 +110406,7 @@ paths: - admin - pull - push - text_matches: *749 + text_matches: *747 temp_clone_token: type: string allow_merge_commit: @@ -110698,7 +110715,7 @@ paths: - string - 'null' format: uri - text_matches: *749 + text_matches: *747 related: type: - array @@ -110893,7 +110910,7 @@ paths: - followers - repositories - joined - - *750 + - *748 - *17 - *19 responses: @@ -111003,7 +111020,7 @@ paths: type: - boolean - 'null' - text_matches: *749 + text_matches: *747 blog: type: - string @@ -111085,7 +111102,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &754 + - &752 name: team_id description: The unique identifier of the team. in: path @@ -111097,9 +111114,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 x-github: githubCloudOnly: false @@ -111126,7 +111143,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *754 + - *752 requestBody: required: true content: @@ -111190,16 +111207,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '201': description: Response content: application/json: - schema: *411 + schema: *409 examples: - default: *412 + default: *410 '404': *6 '422': *15 '403': *27 @@ -111227,7 +111244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *754 + - *752 responses: '204': description: Response @@ -111258,7 +111275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *754 + - *752 - *99 - *17 - *19 @@ -111269,9 +111286,9 @@ paths: application/json: schema: type: array - items: *413 + items: *411 examples: - default: *755 + default: *753 headers: Link: *41 x-github: @@ -111300,7 +111317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *754 + - *752 requestBody: required: true content: @@ -111334,9 +111351,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: triggersNotification: true githubCloudOnly: false @@ -111363,16 +111380,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 responses: '200': description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *414 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111397,8 +111414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: false content: @@ -111421,9 +111438,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *411 examples: - default: *756 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111448,8 +111465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 responses: '204': description: Response @@ -111478,8 +111495,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *754 - - *415 + - *752 + - *413 - *99 - *17 - *19 @@ -111490,9 +111507,9 @@ paths: application/json: schema: type: array - items: *416 + items: *414 examples: - default: *757 + default: *755 headers: Link: *41 x-github: @@ -111521,8 +111538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: true content: @@ -111544,9 +111561,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: triggersNotification: true githubCloudOnly: false @@ -111573,17 +111590,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 responses: '200': description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *417 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111608,9 +111625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 requestBody: required: true content: @@ -111632,9 +111649,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *414 examples: - default: *758 + default: *756 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111659,9 +111676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 responses: '204': description: Response @@ -111690,9 +111707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -111718,9 +111735,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -111749,9 +111766,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *754 - - *415 - - *418 + - *752 + - *413 + - *416 requestBody: required: true content: @@ -111783,9 +111800,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111811,8 +111828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -111838,9 +111855,9 @@ paths: application/json: schema: type: array - items: *419 + items: *417 examples: - default: *421 + default: *419 headers: Link: *41 x-github: @@ -111869,8 +111886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *754 - - *415 + - *752 + - *413 requestBody: required: true content: @@ -111902,9 +111919,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *417 examples: - default: *420 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111928,7 +111945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -111938,9 +111955,9 @@ paths: application/json: schema: type: array - items: *328 + items: *326 examples: - default: *329 + default: *327 headers: Link: *41 x-github: @@ -111966,7 +111983,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *754 + - *752 - name: role description: Filters members returned by their role in the team. in: query @@ -112017,7 +112034,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112054,7 +112071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112094,7 +112111,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *754 + - *752 - *178 responses: '204': @@ -112131,16 +112148,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *754 + - *752 - *178 responses: '200': description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-user-is-a-team-maintainer: *759 + response-if-user-is-a-team-maintainer: *757 '404': *6 x-github: githubCloudOnly: false @@ -112173,7 +112190,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: - - *754 + - *752 - *178 requestBody: required: false @@ -112199,9 +112216,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *425 examples: - response-if-users-membership-with-team-is-now-pending: *760 + response-if-users-membership-with-team-is-now-pending: *758 '403': description: Forbidden if team synchronization is set up '422': @@ -112235,7 +112252,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: - - *754 + - *752 - *178 responses: '204': @@ -112264,7 +112281,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112274,9 +112291,9 @@ paths: application/json: schema: type: array - items: *428 + items: *426 examples: - default: *761 + default: *759 headers: Link: *41 '404': *6 @@ -112302,16 +112319,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *754 - - *429 + - *752 + - *427 responses: '200': description: Response content: application/json: - schema: *428 + schema: *426 examples: - default: *762 + default: *760 '404': description: Not Found if project is not managed by this team x-github: @@ -112335,8 +112352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *754 - - *429 + - *752 + - *427 requestBody: required: false content: @@ -112403,8 +112420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *754 - - *429 + - *752 + - *427 responses: '204': description: Response @@ -112431,7 +112448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112443,7 +112460,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '404': *6 @@ -112473,15 +112490,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *763 + schema: *761 examples: alternative-response-with-extra-repository-information: value: @@ -112632,9 +112649,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 requestBody: required: false content: @@ -112684,9 +112701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *754 - - *430 - - *431 + - *752 + - *428 + - *429 responses: '204': description: Response @@ -112715,15 +112732,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *754 + - *752 responses: '200': description: Response content: application/json: - schema: *432 + schema: *430 examples: - default: *433 + default: *431 '403': *27 '404': *6 x-github: @@ -112750,7 +112767,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: - - *754 + - *752 requestBody: required: true content: @@ -112811,7 +112828,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *430 examples: default: value: @@ -112842,7 +112859,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *754 + - *752 - *17 - *19 responses: @@ -112854,7 +112871,7 @@ paths: type: array items: *273 examples: - response-if-child-teams-exist: *764 + response-if-child-teams-exist: *762 headers: Link: *41 '404': *6 @@ -112887,7 +112904,7 @@ paths: application/json: schema: oneOf: - - &766 + - &764 title: Private User description: Private User type: object @@ -113137,7 +113154,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *765 + - *763 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -113297,7 +113314,7 @@ paths: description: Response content: application/json: - schema: *766 + schema: *764 examples: default: value: @@ -113500,9 +113517,9 @@ paths: type: integer codespaces: type: array - items: *336 + items: *334 examples: - default: *337 + default: *335 '304': *35 '500': *38 '401': *23 @@ -113641,17 +113658,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -113695,7 +113712,7 @@ paths: type: integer secrets: type: array - items: &767 + items: &765 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113737,7 +113754,7 @@ paths: - visibility - selected_repositories_url examples: - default: *538 + default: *536 headers: Link: *41 x-github: @@ -113815,7 +113832,7 @@ paths: description: Response content: application/json: - schema: *767 + schema: *765 examples: default: value: @@ -113961,7 +113978,7 @@ paths: type: array items: *246 examples: - default: *768 + default: *766 '401': *23 '403': *27 '404': *6 @@ -114105,15 +114122,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '304': *35 '500': *38 '401': *23 @@ -114139,7 +114156,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 requestBody: required: false content: @@ -114169,9 +114186,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '401': *23 '403': *27 '404': *6 @@ -114193,7 +114210,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '202': *37 '304': *35 @@ -114222,13 +114239,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '202': description: Response content: application/json: - schema: &769 + schema: &767 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -114281,7 +114298,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &770 + default: &768 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -114313,7 +114330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *338 + - *336 - name: export_id in: path required: true @@ -114326,9 +114343,9 @@ paths: description: Response content: application/json: - schema: *769 + schema: *767 examples: - default: *770 + default: *768 '404': *6 x-github: githubCloudOnly: false @@ -114349,7 +114366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *338 + - *336 responses: '200': description: Response @@ -114365,9 +114382,9 @@ paths: type: integer machines: type: array - items: *537 + items: *535 examples: - default: *771 + default: *769 '304': *35 '500': *38 '401': *23 @@ -114396,7 +114413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *338 + - *336 requestBody: required: true content: @@ -114452,11 +114469,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *443 + repository: *441 machine: anyOf: - type: 'null' - - *537 + - *535 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -115253,15 +115270,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '304': *35 '500': *38 '400': *14 @@ -115293,15 +115310,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *338 + - *336 responses: '200': description: Response content: application/json: - schema: *336 + schema: *334 examples: - default: *536 + default: *534 '500': *38 '401': *23 '403': *27 @@ -115331,9 +115348,9 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: &783 + default: &781 value: - id: 197 name: hello_docker @@ -115434,7 +115451,7 @@ paths: application/json: schema: type: array - items: &772 + items: &770 title: Email description: Email type: object @@ -115504,9 +115521,9 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: - default: &785 + default: &783 value: - email: octocat@github.com verified: true @@ -115583,7 +115600,7 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: default: value: @@ -115841,7 +115858,7 @@ paths: application/json: schema: type: array - items: &773 + items: &771 title: GPG Key description: A unique encryption key type: object @@ -115986,7 +116003,7 @@ paths: - subkeys - revoked examples: - default: &799 + default: &797 value: - id: 3 name: Octocat's GPG Key @@ -116071,9 +116088,9 @@ paths: description: Response content: application/json: - schema: *773 + schema: *771 examples: - default: &774 + default: &772 value: id: 3 name: Octocat's GPG Key @@ -116130,7 +116147,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: - - &775 + - &773 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -116142,9 +116159,9 @@ paths: description: Response content: application/json: - schema: *773 + schema: *771 examples: - default: *774 + default: *772 '404': *6 '304': *35 '403': *27 @@ -116167,7 +116184,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: - - *775 + - *773 responses: '204': description: Response @@ -116443,12 +116460,12 @@ paths: application/json: schema: anyOf: - - *326 + - *324 - type: object properties: {} additionalProperties: false examples: - default: *327 + default: *325 '204': description: Response when there are no restrictions x-github: @@ -116472,7 +116489,7 @@ paths: required: true content: application/json: - schema: *614 + schema: *612 examples: default: value: @@ -116483,7 +116500,7 @@ paths: description: Response content: application/json: - schema: *326 + schema: *324 examples: default: value: @@ -116564,7 +116581,7 @@ paths: - closed - all default: open - - *334 + - *332 - name: sort description: What to sort results by. in: query @@ -116589,7 +116606,7 @@ paths: type: array items: *183 examples: - default: *335 + default: *333 headers: Link: *41 '404': *6 @@ -116622,7 +116639,7 @@ paths: application/json: schema: type: array - items: &776 + items: &774 title: Key description: Key type: object @@ -116725,9 +116742,9 @@ paths: description: Response content: application/json: - schema: *776 + schema: *774 examples: - default: &777 + default: &775 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116760,15 +116777,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: - - *640 + - *638 responses: '200': description: Response content: application/json: - schema: *776 + schema: *774 examples: - default: *777 + default: *775 '404': *6 '304': *35 '403': *27 @@ -116791,7 +116808,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: - - *640 + - *638 responses: '204': description: Response @@ -116824,7 +116841,7 @@ paths: application/json: schema: type: array - items: &778 + items: &776 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116903,7 +116920,7 @@ paths: - account - plan examples: - default: &779 + default: &777 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116965,9 +116982,9 @@ paths: application/json: schema: type: array - items: *778 + items: *776 examples: - default: *779 + default: *777 headers: Link: *41 '304': *35 @@ -117007,7 +117024,7 @@ paths: application/json: schema: type: array - items: *339 + items: *337 examples: default: value: @@ -117115,7 +117132,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: default: value: @@ -117198,7 +117215,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *337 examples: default: value: @@ -117266,7 +117283,7 @@ paths: application/json: schema: type: array - items: *341 + items: *339 examples: default: value: @@ -117528,7 +117545,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -117708,7 +117725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *342 + - *340 - name: exclude in: query required: false @@ -117721,7 +117738,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *339 examples: default: value: @@ -117915,7 +117932,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *342 + - *340 responses: '302': description: Response @@ -117941,7 +117958,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *342 + - *340 responses: '204': description: Response @@ -117970,8 +117987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *342 - - *780 + - *340 + - *778 responses: '204': description: Response @@ -117995,7 +118012,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *342 + - *340 - *17 - *19 responses: @@ -118007,7 +118024,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '404': *6 @@ -118044,7 +118061,7 @@ paths: type: array items: *62 examples: - default: *781 + default: *779 headers: Link: *41 '304': *35 @@ -118086,7 +118103,7 @@ paths: - docker - nuget - container - - *782 + - *780 - *19 - *17 responses: @@ -118096,10 +118113,10 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 - '400': *784 + default: *781 + '400': *782 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118119,16 +118136,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *344 examples: - default: &800 + default: &798 value: id: 40201 name: octo-name @@ -118241,8 +118258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 responses: '204': description: Response @@ -118272,8 +118289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 - name: token description: package token schema: @@ -118305,8 +118322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *348 - - *349 + - *346 + - *347 - *19 - *17 - name: state @@ -118326,7 +118343,7 @@ paths: application/json: schema: type: array - items: *350 + items: *348 examples: default: value: @@ -118375,15 +118392,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '200': description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -118419,9 +118436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '204': description: Response @@ -118451,9 +118468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 responses: '204': description: Response @@ -118511,7 +118528,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *360 examples: default: value: @@ -118583,9 +118600,9 @@ paths: application/json: schema: type: array - items: *772 + items: *770 examples: - default: *785 + default: *783 headers: Link: *41 '304': *35 @@ -118698,7 +118715,7 @@ paths: type: array items: *67 examples: - default: &792 + default: &790 summary: Default response value: - id: 1296269 @@ -119016,9 +119033,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *441 examples: - default: *445 + default: *443 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119056,9 +119073,9 @@ paths: application/json: schema: type: array - items: *616 + items: *614 examples: - default: *786 + default: *784 headers: Link: *41 '304': *35 @@ -119081,7 +119098,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *330 + - *328 responses: '204': description: Response @@ -119104,7 +119121,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *330 + - *328 responses: '204': description: Response @@ -119137,7 +119154,7 @@ paths: application/json: schema: type: array - items: &787 + items: &785 title: Social account description: Social media account type: object @@ -119154,7 +119171,7 @@ paths: - provider - url examples: - default: &788 + default: &786 value: - provider: twitter url: https://twitter.com/github @@ -119217,9 +119234,9 @@ paths: application/json: schema: type: array - items: *787 + items: *785 examples: - default: *788 + default: *786 '422': *15 '304': *35 '404': *6 @@ -119307,7 +119324,7 @@ paths: application/json: schema: type: array - items: &789 + items: &787 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -119327,7 +119344,7 @@ paths: - title - created_at examples: - default: &803 + default: &801 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119394,9 +119411,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *787 examples: - default: &790 + default: &788 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119427,7 +119444,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: - - &791 + - &789 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -119439,9 +119456,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *787 examples: - default: *790 + default: *788 '404': *6 '304': *35 '403': *27 @@ -119464,7 +119481,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: - - *791 + - *789 responses: '204': description: Response @@ -119493,7 +119510,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: - - &804 + - &802 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 @@ -119518,11 +119535,11 @@ paths: type: array items: *67 examples: - default-response: *792 + default-response: *790 application/vnd.github.v3.star+json: schema: type: array - items: &805 + items: &803 title: Starred Repository description: Starred Repository type: object @@ -119678,8 +119695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response if this repository is starred by you @@ -119707,8 +119724,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -119732,8 +119749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *430 - - *431 + - *428 + - *429 responses: '204': description: Response @@ -119768,7 +119785,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 '304': *35 @@ -119805,7 +119822,7 @@ paths: application/json: schema: type: array - items: *411 + items: *409 examples: default: value: @@ -119891,10 +119908,10 @@ paths: application/json: schema: oneOf: - - *766 - - *765 + - *764 + - *763 examples: - default-response: &794 + default-response: &792 summary: Default response value: login: octocat @@ -119929,7 +119946,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &795 + response-with-git-hub-plan-information: &793 summary: Response with GitHub plan information value: login: octocat @@ -119989,7 +120006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *793 + - *791 - *17 responses: '200': @@ -120038,11 +120055,11 @@ paths: application/json: schema: oneOf: - - *766 - - *765 + - *764 + - *763 examples: - default-response: *794 - response-with-git-hub-plan-information: *795 + default-response: *792 + response-with-git-hub-plan-information: *793 '404': *6 x-github: githubCloudOnly: false @@ -120091,8 +120108,8 @@ paths: required: - subject_digests examples: - default: *796 - withPredicateType: *797 + default: *794 + withPredicateType: *795 responses: '200': description: Response @@ -120146,7 +120163,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *798 + default: *796 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -120350,7 +120367,7 @@ paths: initiator: type: string examples: - default: *483 + default: *481 '201': description: Response content: @@ -120389,9 +120406,9 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 + default: *781 '403': *27 '401': *23 x-github: @@ -120775,9 +120792,9 @@ paths: application/json: schema: type: array - items: *773 + items: *771 examples: - default: *799 + default: *797 headers: Link: *41 x-github: @@ -120881,7 +120898,7 @@ paths: application/json: schema: *20 examples: - default: *613 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120967,7 +120984,7 @@ paths: type: array items: *62 examples: - default: *781 + default: *779 headers: Link: *41 x-github: @@ -121006,7 +121023,7 @@ paths: - docker - nuget - container - - *782 + - *780 - *178 - *19 - *17 @@ -121017,12 +121034,12 @@ paths: application/json: schema: type: array - items: *346 + items: *344 examples: - default: *783 + default: *781 '403': *27 '401': *23 - '400': *784 + '400': *782 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121042,17 +121059,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '200': description: Response content: application/json: - schema: *346 + schema: *344 examples: - default: *800 + default: *798 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121073,8 +121090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '204': @@ -121107,8 +121124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - name: token description: package token @@ -121141,8 +121158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 responses: '200': @@ -121151,7 +121168,7 @@ paths: application/json: schema: type: array - items: *350 + items: *348 examples: default: value: @@ -121209,16 +121226,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *348 + - *346 + - *347 - *349 - - *351 - *178 responses: '200': description: Response content: application/json: - schema: *350 + schema: *348 examples: default: value: @@ -121253,10 +121270,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - - *351 + - *349 responses: '204': description: Response @@ -121288,10 +121305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *348 - - *349 + - *346 + - *347 - *178 - - *351 + - *349 responses: '204': description: Response @@ -121338,7 +121355,7 @@ paths: application/json: schema: type: array - items: *362 + items: *360 examples: default: value: @@ -121413,9 +121430,9 @@ paths: application/json: schema: type: array - items: *363 + items: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -121437,16 +121454,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *365 + - *363 - *178 responses: '200': description: Response content: application/json: - schema: *363 + schema: *361 examples: - default: *364 + default: *362 headers: Link: *41 '304': *35 @@ -121468,7 +121485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *365 + - *363 - *178 - *17 - *97 @@ -121480,9 +121497,9 @@ paths: application/json: schema: type: array - items: *366 + items: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -121504,17 +121521,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *365 - - *801 + - *363 + - *799 - *178 responses: '200': description: Response content: application/json: - schema: *366 + schema: *364 examples: - default: *367 + default: *365 headers: Link: *41 '304': *35 @@ -121537,7 +121554,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *365 + - *363 - *178 - *97 - *98 @@ -121550,8 +121567,10 @@ paths: schema: type: string - name: fields - description: Limit results to specific fields, by their IDs. If not specified, - the title field will be returned. + description: |- + Limit results to specific fields, by their IDs. If not specified, the title field will be returned. + + Example: `fields[]=123&fields[]=456&fields[]=789` in: query required: false schema: @@ -121559,8 +121578,6 @@ paths: maxItems: 50 items: type: string - examples: - - fields[]=123,fields[]=456,fields[]=789 responses: '200': description: Response @@ -121568,9 +121585,9 @@ paths: application/json: schema: type: array - items: *372 + items: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -121592,7 +121609,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *178 - - *365 + - *363 requestBody: required: true description: Details of the item to add to the project. @@ -121629,10 +121646,10 @@ paths: description: Response content: application/json: - schema: *802 + schema: *800 examples: - issue: *371 - pull_request: *371 + issue: *369 + pull_request: *369 '304': *35 '403': *27 '401': *23 @@ -121652,9 +121669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *365 + - *363 - *178 - - *374 + - *372 - name: fields description: Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -121672,9 +121689,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - default: *373 + default: *371 headers: Link: *41 '304': *35 @@ -121695,9 +121712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *365 + - *363 - *178 - - *374 + - *372 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -121770,13 +121787,13 @@ paths: description: Response content: application/json: - schema: *372 + schema: *370 examples: - text_field: *373 - number_field: *373 - date_field: *373 - single_select_field: *373 - iteration_field: *373 + text_field: *371 + number_field: *371 + date_field: *371 + single_select_field: *371 + iteration_field: *371 '401': *23 '403': *27 '404': *6 @@ -121796,9 +121813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *365 + - *363 - *178 - - *374 + - *372 responses: '204': description: Response @@ -122018,7 +122035,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -122048,9 +122065,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *396 examples: - default: *399 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122078,9 +122095,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *401 examples: - default: *404 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122089,7 +122106,10 @@ paths: "/users/{username}/settings/billing/premium_request/usage": get: summary: Get billing premium request usage report for a user - description: Gets a report of premium request usage for a user. + description: |- + Gets a report of premium request usage for a user. + + **Note:** Only data from the past 24 months is accessible via this endpoint. tags: - billing operationId: billing/get-github-billing-premium-request-usage-report-user @@ -122238,9 +122258,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *403 examples: - default: *406 + default: *404 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122363,9 +122383,9 @@ paths: application/json: schema: type: array - items: *787 + items: *785 examples: - default: *788 + default: *786 headers: Link: *41 x-github: @@ -122395,9 +122415,9 @@ paths: application/json: schema: type: array - items: *789 + items: *787 examples: - default: *803 + default: *801 headers: Link: *41 x-github: @@ -122422,7 +122442,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *178 - - *804 + - *802 - *99 - *17 - *19 @@ -122434,11 +122454,11 @@ paths: schema: anyOf: - type: array - items: *805 + items: *803 - type: array items: *67 examples: - default-response: *792 + default-response: *790 headers: Link: *41 x-github: @@ -122469,7 +122489,7 @@ paths: type: array items: *246 examples: - default: *352 + default: *350 headers: Link: *41 x-github: @@ -122598,7 +122618,7 @@ webhooks: type: string enum: - disabled - enterprise: &806 + enterprise: &804 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122667,7 +122687,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &807 + installation: &805 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122688,7 +122708,7 @@ webhooks: required: - id - node_id - organization: &808 + organization: &806 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122761,7 +122781,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &809 + repository: &807 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -123674,10 +123694,10 @@ webhooks: type: string enum: - enabled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -123753,11 +123773,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: &810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: &808 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) @@ -123980,11 +124000,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: *810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: *808 sender: *4 required: - action @@ -124172,11 +124192,11 @@ webhooks: - everyone required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - rule: *810 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + rule: *808 sender: *4 required: - action @@ -124247,7 +124267,7 @@ webhooks: required: true content: application/json: - schema: &813 + schema: &811 title: Exemption request cancellation event type: object properties: @@ -124255,11 +124275,11 @@ webhooks: type: string enum: - cancelled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: &811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: &809 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -124497,7 +124517,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &812 + items: &810 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -124607,7 +124627,7 @@ webhooks: required: true content: application/json: - schema: &814 + schema: &812 title: Exemption request completed event type: object properties: @@ -124615,11 +124635,11 @@ webhooks: type: string enum: - completed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 sender: *4 required: - action @@ -124689,7 +124709,7 @@ webhooks: required: true content: application/json: - schema: &815 + schema: &813 title: Exemption request created event type: object properties: @@ -124697,11 +124717,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 sender: *4 required: - action @@ -124771,7 +124791,7 @@ webhooks: required: true content: application/json: - schema: &816 + schema: &814 title: Exemption response dismissed event type: object properties: @@ -124779,12 +124799,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 - exemption_response: *812 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 + exemption_response: *810 sender: *4 required: - action @@ -124856,7 +124876,7 @@ webhooks: required: true content: application/json: - schema: &817 + schema: &815 title: Exemption response submitted event type: object properties: @@ -124864,12 +124884,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - exemption_request: *811 - exemption_response: *812 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + exemption_request: *809 + exemption_response: *810 sender: *4 required: - action @@ -124942,7 +124962,7 @@ webhooks: required: true content: application/json: - schema: *813 + schema: *811 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125009,7 +125029,7 @@ webhooks: required: true content: application/json: - schema: *814 + schema: *812 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125076,7 +125096,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125143,7 +125163,7 @@ webhooks: required: true content: application/json: - schema: *816 + schema: *814 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125211,7 +125231,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -125289,7 +125309,7 @@ webhooks: type: string enum: - completed - check_run: &819 + check_run: &817 title: CheckRun description: A check performed on the code of a given code change type: object @@ -125399,7 +125419,7 @@ webhooks: - examples: - neutral - deployment: *818 + deployment: *816 details_url: type: string examples: @@ -125497,10 +125517,10 @@ webhooks: - output - app - pull_requests - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -125893,11 +125913,11 @@ webhooks: type: string enum: - created - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -126293,11 +126313,11 @@ webhooks: type: string enum: - requested_action - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 requested_action: description: The action requested by the user. type: object @@ -126702,11 +126722,11 @@ webhooks: type: string enum: - rerequested - check_run: *819 - installation: *807 - enterprise: *806 - organization: *808 - repository: *809 + check_run: *817 + installation: *805 + enterprise: *804 + organization: *806 + repository: *807 sender: *4 required: - check_run @@ -127698,10 +127718,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -128386,10 +128406,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -129068,10 +129088,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -129240,7 +129260,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -129392,20 +129412,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &820 + commit_oid: &818 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: *806 - installation: *807 - organization: *808 - ref: &821 + enterprise: *804 + installation: *805 + organization: *806 + ref: &819 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: *809 + repository: *807 sender: *4 required: - action @@ -129572,7 +129592,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -129813,12 +129833,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -129916,7 +129936,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130101,12 +130121,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -130275,7 +130295,7 @@ webhooks: required: - login - id - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -130452,12 +130472,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -130560,7 +130580,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130740,9 +130760,9 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -130750,7 +130770,7 @@ webhooks: type: - string - 'null' - repository: *809 + repository: *807 sender: *4 required: - action @@ -130849,7 +130869,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *511 + dismissed_comment: *509 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130996,12 +131016,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *820 - enterprise: *806 - installation: *807 - organization: *808 - ref: *821 - repository: *809 + commit_oid: *818 + enterprise: *804 + installation: *805 + organization: *806 + ref: *819 + repository: *807 sender: *4 required: - action @@ -131263,10 +131283,10 @@ webhooks: - updated_at - author_association - body - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -131347,18 +131367,18 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *808 - pusher_type: &822 + organization: *806 + pusher_type: &820 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &823 + ref: &821 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -131368,7 +131388,7 @@ webhooks: enum: - tag - branch - repository: *809 + repository: *807 sender: *4 required: - ref @@ -131451,9 +131471,9 @@ webhooks: enum: - created definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131538,9 +131558,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131618,9 +131638,9 @@ webhooks: enum: - promote_to_enterprise definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131698,9 +131718,9 @@ webhooks: enum: - updated definition: *125 - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -131777,19 +131797,19 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - repository: *809 - organization: *808 + enterprise: *804 + installation: *805 + repository: *807 + organization: *806 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *376 + items: *374 old_property_values: type: array description: The old custom property values for the repository. - items: *376 + items: *374 required: - action - repository @@ -131865,18 +131885,18 @@ webhooks: title: delete event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - pusher_type: *822 - ref: *823 + enterprise: *804 + installation: *805 + organization: *806 + pusher_type: *820 + ref: *821 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *809 + repository: *807 sender: *4 required: - ref @@ -131960,11 +131980,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132048,11 +132068,11 @@ webhooks: type: string enum: - auto_reopened - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132136,11 +132156,11 @@ webhooks: type: string enum: - created - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132222,11 +132242,11 @@ webhooks: type: string enum: - dismissed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132308,11 +132328,11 @@ webhooks: type: string enum: - fixed - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132395,11 +132415,11 @@ webhooks: type: string enum: - reintroduced - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132481,11 +132501,11 @@ webhooks: type: string enum: - reopened - alert: *563 - installation: *807 - organization: *808 - enterprise: *806 - repository: *809 + alert: *561 + installation: *805 + organization: *806 + enterprise: *804 + repository: *807 sender: *4 required: - action @@ -132562,9 +132582,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - key: &824 + enterprise: *804 + installation: *805 + key: &822 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -132602,8 +132622,8 @@ webhooks: - verified - created_at - read_only - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -132680,11 +132700,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - key: *824 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + key: *822 + organization: *806 + repository: *807 sender: *4 required: - action @@ -133256,12 +133276,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: &828 + workflow: &826 title: Workflow type: - object @@ -133999,13 +134019,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *569 + deployment: *567 pull_requests: type: array - items: *658 - repository: *809 - organization: *808 - installation: *807 + items: *656 + repository: *807 + organization: *806 + installation: *805 sender: *4 responses: '200': @@ -134076,7 +134096,7 @@ webhooks: type: string enum: - approved - approver: &825 + approver: &823 type: object properties: avatar_url: @@ -134119,11 +134139,11 @@ webhooks: type: string comment: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - reviewers: &826 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + reviewers: &824 type: array items: type: object @@ -134204,7 +134224,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &827 + workflow_job_run: &825 type: object properties: conclusion: @@ -134950,18 +134970,18 @@ webhooks: type: string enum: - rejected - approver: *825 + approver: *823 comment: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - reviewers: *826 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + reviewers: *824 sender: *4 since: type: string - workflow_job_run: *827 + workflow_job_run: *825 workflow_job_runs: type: array items: @@ -135678,13 +135698,13 @@ webhooks: type: string enum: - requested - enterprise: *806 + enterprise: *804 environment: type: string - installation: *807 - organization: *808 - repository: *809 - requestor: &833 + installation: *805 + organization: *806 + repository: *807 + requestor: &831 title: User type: - object @@ -137627,12 +137647,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - workflow: *828 + workflow: *826 workflow_run: title: Deployment Workflow Run type: @@ -138323,7 +138343,7 @@ webhooks: type: string enum: - answered - answer: &831 + answer: &829 type: object properties: author_association: @@ -138483,11 +138503,11 @@ webhooks: - created_at - updated_at - body - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138614,11 +138634,11 @@ webhooks: - from required: - category - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138701,11 +138721,11 @@ webhooks: type: string enum: - closed - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -138787,7 +138807,7 @@ webhooks: type: string enum: - created - comment: &830 + comment: &828 type: object properties: author_association: @@ -138947,11 +138967,11 @@ webhooks: - updated_at - body - reactions - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139034,12 +139054,12 @@ webhooks: type: string enum: - deleted - comment: *830 - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + comment: *828 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139134,12 +139154,12 @@ webhooks: - from required: - body - comment: *830 - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + comment: *828 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139223,11 +139243,11 @@ webhooks: type: string enum: - created - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139309,11 +139329,11 @@ webhooks: type: string enum: - deleted - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139413,11 +139433,11 @@ webhooks: type: string required: - from - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139499,10 +139519,10 @@ webhooks: type: string enum: - labeled - discussion: *829 - enterprise: *806 - installation: *807 - label: &832 + discussion: *827 + enterprise: *804 + installation: *805 + label: &830 title: Label type: object properties: @@ -139535,8 +139555,8 @@ webhooks: - color - default - description - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139619,11 +139639,11 @@ webhooks: type: string enum: - locked - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139705,11 +139725,11 @@ webhooks: type: string enum: - pinned - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139791,11 +139811,11 @@ webhooks: type: string enum: - reopened - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139880,16 +139900,16 @@ webhooks: changes: type: object properties: - new_discussion: *829 - new_repository: *809 + new_discussion: *827 + new_repository: *807 required: - new_discussion - new_repository - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -139972,10 +139992,10 @@ webhooks: type: string enum: - unanswered - discussion: *829 - old_answer: *831 - organization: *808 - repository: *809 + discussion: *827 + old_answer: *829 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140057,12 +140077,12 @@ webhooks: type: string enum: - unlabeled - discussion: *829 - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140145,11 +140165,11 @@ webhooks: type: string enum: - unlocked - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140231,11 +140251,11 @@ webhooks: type: string enum: - unpinned - discussion: *829 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + discussion: *827 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -140304,7 +140324,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140367,7 +140387,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140433,7 +140453,7 @@ webhooks: required: true content: application/json: - schema: *813 + schema: *811 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140499,7 +140519,7 @@ webhooks: required: true content: application/json: - schema: *814 + schema: *812 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140565,7 +140585,7 @@ webhooks: required: true content: application/json: - schema: *815 + schema: *813 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140631,7 +140651,7 @@ webhooks: required: true content: application/json: - schema: *816 + schema: *814 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140697,7 +140717,7 @@ webhooks: required: true content: application/json: - schema: *817 + schema: *815 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140764,7 +140784,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *806 + enterprise: *804 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -141442,9 +141462,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - forkee @@ -141590,9 +141610,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pages: description: The pages that were updated. type: array @@ -141630,7 +141650,7 @@ webhooks: - action - sha - html_url - repository: *809 + repository: *807 sender: *4 required: - pages @@ -141706,10 +141726,10 @@ webhooks: type: string enum: - created - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: &834 + organization: *806 + repositories: &832 description: An array of repository objects that the installation can access. type: array @@ -141735,8 +141755,8 @@ webhooks: - name - full_name - private - repository: *809 - requester: *833 + repository: *807 + requester: *831 sender: *4 required: - action @@ -141811,11 +141831,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -141892,11 +141912,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -141973,10 +141993,10 @@ webhooks: type: string enum: - added - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories_added: &835 + organization: *806 + repositories_added: &833 description: An array of repository objects, which were added to the installation. type: array @@ -142022,15 +142042,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *809 - repository_selection: &836 + repository: *807 + repository_selection: &834 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *833 + requester: *831 sender: *4 required: - action @@ -142109,10 +142129,10 @@ webhooks: type: string enum: - removed - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories_added: *835 + organization: *806 + repositories_added: *833 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -142139,9 +142159,9 @@ webhooks: - name - full_name - private - repository: *809 - repository_selection: *836 - requester: *833 + repository: *807 + repository_selection: *834 + requester: *831 sender: *4 required: - action @@ -142220,11 +142240,11 @@ webhooks: type: string enum: - suspend - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -142407,10 +142427,10 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 target_type: type: string @@ -142489,11 +142509,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *806 + enterprise: *804 installation: *20 - organization: *808 - repositories: *834 - repository: *809 + organization: *806 + repositories: *832 + repository: *807 requester: type: - 'null' @@ -142741,8 +142761,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -143559,8 +143579,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143577,7 +143597,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -143921,8 +143941,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -144002,7 +144022,7 @@ webhooks: type: string enum: - deleted - comment: &837 + comment: &835 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -144169,8 +144189,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144983,8 +145003,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145001,7 +145021,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -145347,8 +145367,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -145428,7 +145448,7 @@ webhooks: type: string enum: - edited - changes: &861 + changes: &859 description: The changes to the comment. type: object properties: @@ -145440,9 +145460,9 @@ webhooks: type: string required: - from - comment: *837 - enterprise: *806 - installation: *807 + comment: *835 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146258,8 +146278,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146276,7 +146296,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -146620,8 +146640,8 @@ webhooks: - state - locked - assignee - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146711,9 +146731,9 @@ webhooks: type: number blocking_issue: *183 blocking_issue_repo: *67 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146807,9 +146827,9 @@ webhooks: type: number blocking_issue: *183 blocking_issue_repo: *67 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146902,9 +146922,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -146998,9 +147018,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -147085,10 +147105,10 @@ webhooks: type: string enum: - assigned - assignee: *833 - enterprise: *806 - installation: *807 - issue: &840 + assignee: *831 + enterprise: *804 + installation: *805 + issue: &838 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -147900,11 +147920,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147921,7 +147941,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -148024,8 +148044,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -148105,8 +148125,8 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148923,11 +148943,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148944,7 +148964,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -149190,8 +149210,8 @@ webhooks: required: - state - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -149270,8 +149290,8 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -150079,11 +150099,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150100,7 +150120,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -150202,8 +150222,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -150282,8 +150302,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151114,11 +151134,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151135,7 +151155,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -151216,7 +151236,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &838 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151359,8 +151379,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -151459,8 +151479,8 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152272,11 +152292,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152290,7 +152310,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -152396,9 +152416,9 @@ webhooks: - active_lock_reason - body - reactions - label: *832 - organization: *808 - repository: *809 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -152478,8 +152498,8 @@ webhooks: type: string enum: - labeled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153290,11 +153310,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153308,7 +153328,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -153414,9 +153434,9 @@ webhooks: - active_lock_reason - body - reactions - label: *832 - organization: *808 - repository: *809 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -153496,8 +153516,8 @@ webhooks: type: string enum: - locked - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154333,11 +154353,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154351,7 +154371,7 @@ webhooks: timeline_url: type: string format: uri - type: *331 + type: *329 title: description: Title of the issue type: string @@ -154434,8 +154454,8 @@ webhooks: format: uri user_view_type: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -154514,8 +154534,8 @@ webhooks: type: string enum: - milestoned - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155345,11 +155365,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155366,7 +155386,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -155446,9 +155466,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *838 - organization: *808 - repository: *809 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -156340,11 +156360,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156440,7 +156460,7 @@ webhooks: required: - login - id - type: *331 + type: *329 required: - id - number @@ -156921,8 +156941,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157734,11 +157754,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157755,7 +157775,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -157857,8 +157877,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -157938,9 +157958,9 @@ webhooks: type: string enum: - pinned - enterprise: *806 - installation: *807 - issue: &839 + enterprise: *804 + installation: *805 + issue: &837 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -158746,11 +158766,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158767,7 +158787,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -158869,8 +158889,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -158949,8 +158969,8 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159784,11 +159804,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159885,9 +159905,9 @@ webhooks: format: uri user_view_type: type: string - type: *331 - organization: *808 - repository: *809 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -160776,11 +160796,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160797,7 +160817,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -161379,11 +161399,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *806 - installation: *807 - issue: *839 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *837 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161463,12 +161483,12 @@ webhooks: type: string enum: - typed - enterprise: *806 - installation: *807 - issue: *840 - type: *331 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161549,7 +161569,7 @@ webhooks: type: string enum: - unassigned - assignee: &864 + assignee: &862 title: User type: - object @@ -161621,11 +161641,11 @@ webhooks: required: - login - id - enterprise: *806 - installation: *807 - issue: *840 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161704,12 +161724,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *806 - installation: *807 - issue: *840 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -161789,8 +161809,8 @@ webhooks: type: string enum: - unlocked - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162624,11 +162644,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *751 - issue_dependencies_summary: *752 + sub_issues_summary: *749 + issue_dependencies_summary: *750 issue_field_values: type: array - items: *753 + items: *751 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162645,7 +162665,7 @@ webhooks: title: description: Title of the issue type: string - type: *331 + type: *329 updated_at: type: string format: date-time @@ -162725,8 +162745,8 @@ webhooks: format: uri user_view_type: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162806,11 +162826,11 @@ webhooks: type: string enum: - unpinned - enterprise: *806 - installation: *807 - issue: *839 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *837 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162889,12 +162909,12 @@ webhooks: type: string enum: - untyped - enterprise: *806 - installation: *807 - issue: *840 - type: *331 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + issue: *838 + type: *329 + organization: *806 + repository: *807 sender: *4 required: - action @@ -162974,11 +162994,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163056,11 +163076,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163170,11 +163190,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - label: *832 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + label: *830 + organization: *806 + repository: *807 sender: *4 required: - action @@ -163256,9 +163276,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: &841 + enterprise: *804 + installation: *805 + marketplace_purchase: &839 title: Marketplace Purchase type: object required: @@ -163346,8 +163366,8 @@ webhooks: type: integer unit_count: type: integer - organization: *808 - previous_marketplace_purchase: &842 + organization: *806 + previous_marketplace_purchase: &840 title: Marketplace Purchase type: object properties: @@ -163431,7 +163451,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163511,10 +163531,10 @@ webhooks: - changed effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163602,7 +163622,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163684,10 +163704,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163773,7 +163793,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *809 + repository: *807 sender: *4 required: - action @@ -163854,8 +163874,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 marketplace_purchase: title: Marketplace Purchase type: object @@ -163941,9 +163961,9 @@ webhooks: type: integer unit_count: type: integer - organization: *808 - previous_marketplace_purchase: *842 - repository: *809 + organization: *806 + previous_marketplace_purchase: *840 + repository: *807 sender: *4 required: - action @@ -164023,12 +164043,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *806 - installation: *807 - marketplace_purchase: *841 - organization: *808 - previous_marketplace_purchase: *842 - repository: *809 + enterprise: *804 + installation: *805 + marketplace_purchase: *839 + organization: *806 + previous_marketplace_purchase: *840 + repository: *807 sender: *4 required: - action @@ -164130,11 +164150,11 @@ webhooks: type: string required: - to - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164236,11 +164256,11 @@ webhooks: type: - string - 'null' - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164319,11 +164339,11 @@ webhooks: type: string enum: - removed - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164401,11 +164421,11 @@ webhooks: type: string enum: - added - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164483,7 +164503,7 @@ webhooks: required: - login - id - team: &843 + team: &841 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164713,11 +164733,11 @@ webhooks: type: string enum: - removed - enterprise: *806 - installation: *807 - member: *833 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + member: *831 + organization: *806 + repository: *807 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164796,7 +164816,7 @@ webhooks: required: - login - id - team: *843 + team: *841 required: - action - scope @@ -164878,8 +164898,8 @@ webhooks: type: string enum: - checks_requested - installation: *807 - merge_group: &844 + installation: *805 + merge_group: &842 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164898,15 +164918,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *503 + head_commit: *501 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -164992,10 +165012,10 @@ webhooks: - merged - invalidated - dequeued - installation: *807 - merge_group: *844 - organization: *808 - repository: *809 + installation: *805 + merge_group: *842 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165068,7 +165088,7 @@ webhooks: type: string enum: - deleted - enterprise: *806 + enterprise: *804 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165177,12 +165197,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *807 - organization: *808 + installation: *805 + organization: *806 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -165262,11 +165282,11 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165345,9 +165365,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - milestone: &845 + enterprise: *804 + installation: *805 + milestone: &843 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165489,8 +165509,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165569,11 +165589,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165683,11 +165703,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - milestone: *838 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *836 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165767,11 +165787,11 @@ webhooks: type: string enum: - opened - enterprise: *806 - installation: *807 - milestone: *845 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + milestone: *843 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165850,11 +165870,11 @@ webhooks: type: string enum: - blocked - blocked_user: *833 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + blocked_user: *831 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -165933,11 +165953,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *833 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + blocked_user: *831 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166016,9 +166036,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - membership: &846 + enterprise: *804 + installation: *805 + membership: &844 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166128,8 +166148,8 @@ webhooks: - role - organization_url - user - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166207,11 +166227,11 @@ webhooks: type: string enum: - member_added - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166290,8 +166310,8 @@ webhooks: type: string enum: - member_invited - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166413,10 +166433,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 - user: *833 + user: *831 required: - action - invitation @@ -166494,11 +166514,11 @@ webhooks: type: string enum: - member_removed - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166585,11 +166605,11 @@ webhooks: properties: from: type: string - enterprise: *806 - installation: *807 - membership: *846 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + membership: *844 + organization: *806 + repository: *807 sender: *4 required: - action @@ -166665,9 +166685,9 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 package: description: Information about the package. type: object @@ -167190,7 +167210,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &847 + items: &845 title: Ruby Gems metadata type: object properties: @@ -167287,7 +167307,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -167363,9 +167383,9 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 package: description: Information about the package. type: object @@ -167727,7 +167747,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *847 + items: *845 source_url: type: string format: uri @@ -167798,7 +167818,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -167979,12 +167999,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *806 + enterprise: *804 id: type: integer - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - id @@ -168061,7 +168081,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &848 + personal_access_token_request: &846 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168211,10 +168231,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *806 - organization: *808 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168291,11 +168311,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *848 - enterprise: *806 - organization: *808 + personal_access_token_request: *846 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168371,11 +168391,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *848 - enterprise: *806 - organization: *808 + personal_access_token_request: *846 + enterprise: *804 + organization: *806 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168450,11 +168470,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *848 - organization: *808 - enterprise: *806 + personal_access_token_request: *846 + organization: *806 + enterprise: *804 sender: *4 - installation: *807 + installation: *805 required: - action - personal_access_token_request @@ -168559,7 +168579,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *849 + last_response: *847 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -168591,8 +168611,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 zen: description: Random string of GitHub zen. @@ -168837,10 +168857,10 @@ webhooks: - from required: - note - enterprise: *806 - installation: *807 - organization: *808 - project_card: &850 + enterprise: *804 + installation: *805 + organization: *806 + project_card: &848 title: Project Card type: object properties: @@ -168963,7 +168983,7 @@ webhooks: - creator - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -169044,11 +169064,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project_card: *850 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_card: *848 + repository: *807 sender: *4 required: - action @@ -169128,9 +169148,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 project_card: title: Project Card type: object @@ -169260,7 +169280,7 @@ webhooks: repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -169354,11 +169374,11 @@ webhooks: - from required: - note - enterprise: *806 - installation: *807 - organization: *808 - project_card: *850 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_card: *848 + repository: *807 sender: *4 required: - action @@ -169452,9 +169472,9 @@ webhooks: - from required: - column_id - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 project_card: allOf: - title: Project Card @@ -169651,7 +169671,7 @@ webhooks: type: string required: - after_id - repository: *809 + repository: *807 sender: *4 required: - action @@ -169731,10 +169751,10 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - organization: *808 - project: &852 + enterprise: *804 + installation: *805 + organization: *806 + project: &850 title: Project type: object properties: @@ -169861,7 +169881,7 @@ webhooks: - creator - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -169941,10 +169961,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project_column: &851 + enterprise: *804 + installation: *805 + organization: *806 + project_column: &849 title: Project Column type: object properties: @@ -169984,7 +170004,7 @@ webhooks: - name - created_at - updated_at - repository: *809 + repository: *807 sender: *4 required: - action @@ -170063,14 +170083,14 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -170159,11 +170179,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 + repository: *807 sender: *4 required: - action @@ -170243,11 +170263,11 @@ webhooks: type: string enum: - moved - enterprise: *806 - installation: *807 - organization: *808 - project_column: *851 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project_column: *849 + repository: *807 sender: *4 required: - action @@ -170327,11 +170347,11 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170411,14 +170431,14 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - project: *852 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 repository: anyOf: - type: 'null' - - *809 + - *807 sender: *4 required: - action @@ -170519,11 +170539,11 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170602,11 +170622,11 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 - organization: *808 - project: *852 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + project: *850 + repository: *807 sender: *4 required: - action @@ -170687,9 +170707,9 @@ webhooks: type: string enum: - closed - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170770,9 +170790,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170853,9 +170873,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -170976,9 +170996,9 @@ webhooks: type: string to: type: string - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -171061,7 +171081,7 @@ webhooks: type: string enum: - archived - changes: &856 + changes: &854 type: object properties: archived_at: @@ -171077,9 +171097,9 @@ webhooks: - string - 'null' format: date-time - installation: *807 - organization: *808 - projects_v2_item: &853 + installation: *805 + organization: *806 + projects_v2_item: &851 title: Projects v2 Item description: An item belonging to a project type: object @@ -171097,7 +171117,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *370 + content_type: *368 creator: *4 created_at: type: string @@ -171219,9 +171239,9 @@ webhooks: - 'null' to: type: string - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171303,9 +171323,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171386,9 +171406,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171493,7 +171513,7 @@ webhooks: oneOf: - type: string - type: integer - - &854 + - &852 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -171517,7 +171537,7 @@ webhooks: required: - id - name - - &855 + - &853 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171557,8 +171577,8 @@ webhooks: oneOf: - type: string - type: integer - - *854 - - *855 + - *852 + - *853 type: - 'null' - string @@ -171581,9 +171601,9 @@ webhooks: - 'null' required: - body - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171680,9 +171700,9 @@ webhooks: type: - string - 'null' - installation: *807 - organization: *808 - projects_v2_item: *853 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171765,10 +171785,10 @@ webhooks: type: string enum: - restored - changes: *856 - installation: *807 - organization: *808 - projects_v2_item: *853 + changes: *854 + installation: *805 + organization: *806 + projects_v2_item: *851 sender: *4 required: - action @@ -171850,9 +171870,9 @@ webhooks: type: string enum: - reopened - installation: *807 - organization: *808 - projects_v2: *363 + installation: *805 + organization: *806 + projects_v2: *361 sender: *4 required: - action @@ -171933,9 +171953,9 @@ webhooks: type: string enum: - created - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172016,9 +172036,9 @@ webhooks: type: string enum: - deleted - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172164,9 +172184,9 @@ webhooks: - string - 'null' format: date - installation: *807 - organization: *808 - projects_v2_status_update: *857 + installation: *805 + organization: *806 + projects_v2_status_update: *855 sender: *4 required: - action @@ -172237,10 +172257,10 @@ webhooks: title: public event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - repository @@ -172317,13 +172337,13 @@ webhooks: type: string enum: - assigned - assignee: *833 - enterprise: *806 - installation: *807 - number: &858 + assignee: *831 + enterprise: *804 + installation: *805 + number: &856 description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -174672,7 +174692,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -174754,11 +174774,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -177100,7 +177120,7 @@ webhooks: - draft reason: type: string - repository: *809 + repository: *807 sender: *4 required: - action @@ -177182,11 +177202,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -179528,7 +179548,7 @@ webhooks: - draft reason: type: string - repository: *809 + repository: *807 sender: *4 required: - action @@ -179610,13 +179630,13 @@ webhooks: type: string enum: - closed - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: &859 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: &857 allOf: - - *658 + - *656 - type: object properties: allow_auto_merge: @@ -179678,7 +179698,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *809 + repository: *807 sender: *4 required: - action @@ -179759,12 +179779,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -179844,11 +179864,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *806 - milestone: *368 - number: *858 - organization: *808 - pull_request: &860 + enterprise: *804 + milestone: *366 + number: *856 + organization: *806 + pull_request: &858 title: Pull Request type: object properties: @@ -182175,7 +182195,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -182254,11 +182274,11 @@ webhooks: type: string enum: - dequeued - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -184604,7 +184624,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *809 + repository: *807 sender: *4 required: - action @@ -184728,12 +184748,12 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -184813,11 +184833,11 @@ webhooks: type: string enum: - enqueued - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -187148,7 +187168,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -187228,11 +187248,11 @@ webhooks: type: string enum: - labeled - enterprise: *806 - installation: *807 - label: *832 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + label: *830 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -189580,7 +189600,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -189661,10 +189681,10 @@ webhooks: type: string enum: - locked - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -192010,7 +192030,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -192090,12 +192110,12 @@ webhooks: type: string enum: - milestoned - enterprise: *806 - milestone: *368 - number: *858 - organization: *808 - pull_request: *860 - repository: *809 + enterprise: *804 + milestone: *366 + number: *856 + organization: *806 + pull_request: *858 + repository: *807 sender: *4 required: - action @@ -192174,12 +192194,12 @@ webhooks: type: string enum: - opened - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192260,12 +192280,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192345,12 +192365,12 @@ webhooks: type: string enum: - reopened - enterprise: *806 - installation: *807 - number: *858 - organization: *808 - pull_request: *859 - repository: *809 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 + pull_request: *857 + repository: *807 sender: *4 required: - action @@ -192725,9 +192745,9 @@ webhooks: - start_side - side - reactions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -194957,7 +194977,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -195037,7 +195057,7 @@ webhooks: type: string enum: - deleted - comment: &862 + comment: &860 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. @@ -195330,9 +195350,9 @@ webhooks: - start_side - side - reactions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -197550,7 +197570,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -197630,11 +197650,11 @@ webhooks: type: string enum: - edited - changes: *861 - comment: *862 - enterprise: *806 - installation: *807 - organization: *808 + changes: *859 + comment: *860 + enterprise: *804 + installation: *805 + organization: *806 pull_request: type: object properties: @@ -199855,7 +199875,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *809 + repository: *807 sender: *4 required: - action @@ -199936,9 +199956,9 @@ webhooks: type: string enum: - dismissed - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -202171,7 +202191,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 review: description: The review that was affected. type: object @@ -202422,9 +202442,9 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -204538,8 +204558,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 - review: &863 + repository: *807 + review: &861 description: The review that was affected. type: object properties: @@ -204777,12 +204797,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -207129,7 +207149,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_reviewer: title: User type: @@ -207215,12 +207235,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -209574,7 +209594,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209769,12 +209789,12 @@ webhooks: type: string enum: - review_requested - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -212123,7 +212143,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_reviewer: title: User type: @@ -212210,12 +212230,12 @@ webhooks: type: string enum: - review_requested - enterprise: *806 - installation: *807 + enterprise: *804 + installation: *805 number: description: The pull request number. type: integer - organization: *808 + organization: *806 pull_request: title: Pull Request type: object @@ -214555,7 +214575,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214739,9 +214759,9 @@ webhooks: type: string enum: - submitted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -216977,8 +216997,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 - review: *863 + repository: *807 + review: *861 sender: *4 required: - action @@ -217058,9 +217078,9 @@ webhooks: type: string enum: - resolved - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -219191,7 +219211,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 sender: *4 thread: type: object @@ -219588,9 +219608,9 @@ webhooks: type: string enum: - unresolved - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 pull_request: title: Simple Pull Request type: object @@ -221704,7 +221724,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *809 + repository: *807 sender: *4 thread: type: object @@ -222103,10 +222123,10 @@ webhooks: type: string before: type: string - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -224441,7 +224461,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -224523,11 +224543,11 @@ webhooks: type: string enum: - unassigned - assignee: *864 - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + assignee: *862 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -226877,7 +226897,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -226956,11 +226976,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *806 - installation: *807 - label: *832 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + label: *830 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -229299,7 +229319,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -229380,10 +229400,10 @@ webhooks: type: string enum: - unlocked - enterprise: *806 - installation: *807 - number: *858 - organization: *808 + enterprise: *804 + installation: *805 + number: *856 + organization: *806 pull_request: title: Pull Request type: object @@ -231712,7 +231732,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *809 + repository: *807 sender: *4 required: - action @@ -231915,7 +231935,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *806 + enterprise: *804 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232010,8 +232030,8 @@ webhooks: - url - author - committer - installation: *807 - organization: *808 + installation: *805 + organization: *806 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232599,9 +232619,9 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 registry_package: type: object properties: @@ -233078,7 +233098,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *847 + items: *845 summary: type: string tag_name: @@ -233134,7 +233154,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -233212,9 +233232,9 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 registry_package: type: object properties: @@ -233526,7 +233546,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *847 + items: *845 summary: type: string tag_name: @@ -233576,7 +233596,7 @@ webhooks: - owner - package_version - registry - repository: *809 + repository: *807 sender: *4 required: - action @@ -233653,10 +233673,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - release: &865 + enterprise: *804 + installation: *805 + organization: *806 + release: &863 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -233987,7 +234007,7 @@ webhooks: - updated_at - zipball_url - body - repository: *809 + repository: *807 sender: *4 required: - action @@ -234064,11 +234084,11 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -234185,11 +234205,11 @@ webhooks: type: boolean required: - to - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -234267,9 +234287,9 @@ webhooks: type: string enum: - prereleased - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -234605,7 +234625,7 @@ webhooks: - string - 'null' format: uri - repository: *809 + repository: *807 sender: *4 required: - action @@ -234681,10 +234701,10 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - release: &866 + enterprise: *804 + installation: *805 + organization: *806 + release: &864 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -235017,7 +235037,7 @@ webhooks: - string - 'null' format: uri - repository: *809 + repository: *807 sender: *4 required: - action @@ -235093,11 +235113,11 @@ webhooks: type: string enum: - released - enterprise: *806 - installation: *807 - organization: *808 - release: *865 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *863 + repository: *807 sender: *4 required: - action @@ -235173,11 +235193,11 @@ webhooks: type: string enum: - unpublished - enterprise: *806 - installation: *807 - organization: *808 - release: *866 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + release: *864 + repository: *807 sender: *4 required: - action @@ -235253,11 +235273,11 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - repository_advisory: *711 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + repository_advisory: *709 sender: *4 required: - action @@ -235333,11 +235353,11 @@ webhooks: type: string enum: - reported - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - repository_advisory: *711 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + repository_advisory: *709 sender: *4 required: - action @@ -235413,10 +235433,10 @@ webhooks: type: string enum: - archived - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235493,10 +235513,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235574,10 +235594,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235662,10 +235682,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235780,10 +235800,10 @@ webhooks: - 'null' items: type: string - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -235855,10 +235875,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 status: type: string @@ -235939,10 +235959,10 @@ webhooks: type: string enum: - privatized - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236019,10 +236039,10 @@ webhooks: type: string enum: - publicized - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236116,10 +236136,10 @@ webhooks: - name required: - repository - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236199,10 +236219,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 sender: *4 required: @@ -236281,10 +236301,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 sender: *4 required: @@ -236363,10 +236383,10 @@ webhooks: type: string enum: - edited - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 repository_ruleset: *158 changes: type: object @@ -236428,16 +236448,16 @@ webhooks: properties: added: type: array - items: *679 + items: *677 deleted: type: array - items: *679 + items: *677 updated: type: array items: type: object properties: - rule: *679 + rule: *677 changes: type: object properties: @@ -236674,10 +236694,10 @@ webhooks: - from required: - owner - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236755,10 +236775,10 @@ webhooks: type: string enum: - unarchived - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -236836,7 +236856,7 @@ webhooks: type: string enum: - create - alert: &867 + alert: &865 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -236960,10 +236980,10 @@ webhooks: type: string enum: - open - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237173,10 +237193,10 @@ webhooks: type: string enum: - dismissed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237254,11 +237274,11 @@ webhooks: type: string enum: - reopen - alert: *867 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *865 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237460,10 +237480,10 @@ webhooks: enum: - fixed - open - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237541,7 +237561,7 @@ webhooks: type: string enum: - created - alert: &868 + alert: &866 type: object properties: number: *109 @@ -237655,10 +237675,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -237739,11 +237759,11 @@ webhooks: type: string enum: - created - alert: *868 - installation: *807 - location: *869 - organization: *808 - repository: *809 + alert: *866 + installation: *805 + location: *867 + organization: *806 + repository: *807 sender: *4 required: - location @@ -237981,11 +238001,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238063,11 +238083,11 @@ webhooks: type: string enum: - reopened - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238145,11 +238165,11 @@ webhooks: type: string enum: - resolved - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238227,11 +238247,11 @@ webhooks: type: string enum: - validated - alert: *868 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + alert: *866 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -238361,10 +238381,10 @@ webhooks: - organization - enterprise - - repository: *809 - enterprise: *806 - installation: *807 - organization: *808 + repository: *807 + enterprise: *804 + installation: *805 + organization: *806 sender: *4 required: - action @@ -238442,11 +238462,11 @@ webhooks: type: string enum: - published - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - security_advisory: &870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + security_advisory: &868 description: The details of the security advisory, including summary, description, and severity. type: object @@ -238632,11 +238652,11 @@ webhooks: type: string enum: - updated - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 - security_advisory: *870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 + security_advisory: *868 sender: *4 required: - action @@ -238709,10 +238729,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -238898,11 +238918,11 @@ webhooks: from: type: object properties: - security_and_analysis: *377 - enterprise: *806 - installation: *807 - organization: *808 - repository: *443 + security_and_analysis: *375 + enterprise: *804 + installation: *805 + organization: *806 + repository: *441 sender: *4 required: - changes @@ -238980,12 +239000,12 @@ webhooks: type: string enum: - cancelled - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: &871 + sponsorship: &869 type: object properties: created_at: @@ -239290,12 +239310,12 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - sponsorship @@ -239383,12 +239403,12 @@ webhooks: type: string required: - from - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239465,17 +239485,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &872 + effective_date: &870 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: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - sponsorship @@ -239549,7 +239569,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &873 + changes: &871 type: object properties: tier: @@ -239593,13 +239613,13 @@ webhooks: - from required: - tier - effective_date: *872 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + effective_date: *870 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239676,13 +239696,13 @@ webhooks: type: string enum: - tier_changed - changes: *873 - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + changes: *871 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - sponsorship: *871 + sponsorship: *869 required: - action - changes @@ -239756,10 +239776,10 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239843,10 +239863,10 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240280,15 +240300,15 @@ webhooks: type: - string - 'null' - enterprise: *806 + enterprise: *804 id: description: The unique identifier of the status. type: integer - installation: *807 + installation: *805 name: type: string - organization: *808 - repository: *809 + organization: *806 + repository: *807 sender: *4 sha: description: The Commit SHA. @@ -240404,9 +240424,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240496,9 +240516,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240588,9 +240608,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240680,9 +240700,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *183 - installation: *807 - organization: *808 - repository: *809 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -240759,12 +240779,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 - team: &874 + team: &872 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -240994,9 +241014,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -241466,7 +241486,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -241542,9 +241562,9 @@ webhooks: type: string enum: - created - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -242014,7 +242034,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -242091,9 +242111,9 @@ webhooks: type: string enum: - deleted - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -242563,7 +242583,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -242707,9 +242727,9 @@ webhooks: - from required: - permissions - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -243179,7 +243199,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - changes @@ -243257,9 +243277,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *806 - installation: *807 - organization: *808 + enterprise: *804 + installation: *805 + organization: *806 repository: title: Repository description: A git repository @@ -243729,7 +243749,7 @@ webhooks: - topics - visibility sender: *4 - team: *874 + team: *872 required: - action - team @@ -243805,10 +243825,10 @@ webhooks: type: string enum: - started - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 required: - action @@ -243881,17 +243901,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *806 + enterprise: *804 inputs: type: - object - 'null' additionalProperties: true - installation: *807 - organization: *808 + installation: *805 + organization: *806 ref: type: string - repository: *809 + repository: *807 sender: *4 workflow: type: string @@ -243973,10 +243993,10 @@ webhooks: type: string enum: - completed - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: allOf: @@ -244232,7 +244252,7 @@ webhooks: type: string required: - conclusion - deployment: *569 + deployment: *567 required: - action - repository @@ -244311,10 +244331,10 @@ webhooks: type: string enum: - in_progress - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: allOf: @@ -244596,7 +244616,7 @@ webhooks: required: - status - steps - deployment: *569 + deployment: *567 required: - action - repository @@ -244675,10 +244695,10 @@ webhooks: type: string enum: - queued - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: type: object @@ -244824,7 +244844,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *569 + deployment: *567 required: - action - repository @@ -244903,10 +244923,10 @@ webhooks: type: string enum: - waiting - enterprise: *806 - installation: *807 - organization: *808 - repository: *809 + enterprise: *804 + installation: *805 + organization: *806 + repository: *807 sender: *4 workflow_job: type: object @@ -245053,7 +245073,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *569 + deployment: *567 {"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}